超星学习通-讨论自动复读

进入到讨论区,填写大佬名字,点击页面上的“开始复读”按钮,自动将大佬的20道最新讨论题答案抄过来提交。如果大佬还没回答就抄第一个回答的人,如果还没人回答就下一题

  1. // ==UserScript==
  2. // @name 超星学习通-讨论自动复读
  3. // @version 0.32
  4. // @description 进入到讨论区,填写大佬名字,点击页面上的“开始复读”按钮,自动将大佬的20道最新讨论题答案抄过来提交。如果大佬还没回答就抄第一个回答的人,如果还没人回答就下一题
  5. // @match *://*.chaoxing.com/bbscircle/grouptopic?*
  6. // @match *://*.chaoxing.com/bbscircle/gettopicdetail?*
  7. // @author duya12345
  8. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js
  9. // @grant GM_setValue
  10. // @grant GM_getValue
  11. // @namespace https://gf.qytechs.cn/users/517463
  12. // ==/UserScript==
  13.  
  14. //本代码测试环境为谷歌浏览器,有同学反映qq浏览器上无法看到按钮,作者表示暂时找不到原因,建议更换浏览器
  15.  
  16. var $ = unsafeWindow.jQuery;
  17. var done_times = GM_getValue("done_times");
  18. var your_name = GM_getValue("your_name");//不用填了,自动获取
  19. var list_length = GM_getValue("list_length");
  20. var dalao_name = GM_getValue("dalao_name");//大佬的名字,此项可以留空,即所有答案都抄第一个回答的
  21.  
  22. function if_referred_other(url)//判断是不是刚进讨论页面
  23. {
  24. var re = /bbscircle\/grouptopic/m;
  25. if(url.match(re) != null){
  26. return true;
  27. }
  28. return false;
  29. }
  30.  
  31. function if_done(){//判断下有没有回答过
  32. var namelist = document.getElementsByClassName("name");
  33. console.log("有"+namelist.length+"人回答过此问题");
  34. for(var i = 0; i < namelist.length; i++){
  35. if(your_name == namelist[i].innerText){
  36. return true;
  37. }
  38. }
  39. return false;
  40. }
  41.  
  42. function GetBigGodsAnswer() { //抓一个大佬的答案
  43. var req = GetRequest();
  44. var contentid = "topic_replys_"+req.topicid;
  45. var search_str = document.getElementById(contentid).innerHTML;
  46. var re1 = new RegExp(dalao_name + "([\\s\\S]+?)</h3>", 'm');//锁定大佬
  47. var re2 = /(?<=<h3([\s\S]+?)>)([\s\S]+?)(?=<\/h3>)/m;//未锁定大佬时:任意回答;锁定大佬时:大佬的回答
  48.  
  49. var match1 = search_str.match(re2);
  50. var match2 = search_str.match(re1);
  51. if(match1 == null){//还没人回答
  52. return "uwfigawuyhaofi3r983yhr89f[3h892ryrjq89rff";
  53. }
  54. if(if_done(search_str) == true){//找到自己名字了
  55. return "fuhqwaifuhuwaqfbgcuaosjfcdopwtfgn23333333";//瞎打一串不可能出现的content,交给下级判断去
  56. }
  57. if(match2 == null){//大佬还没回答
  58. console.log("找到大佬没有回答的题了");
  59. return match1[0];//那就返回第一个回答的
  60. }
  61. var match3 = match2[0].match(re2)[0];
  62. var replace_out1 = match3.replace(/<br>/g, "\n");
  63. var replace_out2 = replace_out1.replace(/&nbsp;/g, " ");
  64. return replace_out2;
  65. }
  66.  
  67. function GetRequest() {//获取url参数
  68. var url = location.search;
  69. var theRequest = new Object();
  70. if (url.indexOf("?") != -1) {
  71. var str = url.substr(1);
  72. var strs = str.split("&");
  73. for(var i = 0; i < strs.length; i ++) {
  74. theRequest[strs[i].split("=")[0]]=unescape(strs[i].split("=")[1]);
  75. }
  76. }
  77. return theRequest;
  78. }
  79.  
  80. function getAllNoticeAttachment(){//拿上传文件的,用不到,但改了怕出问题先放着
  81. var attachment = "";
  82. var attachmentsByName = document.getElementsByName("attachment");
  83. if (attachmentsByName != null && attachmentsByName.length > 0) {
  84. for (var i = 0; i < attachmentsByName.length; i++) {
  85. var attachmentA = attachmentsByName[i];
  86. if (attachmentA == null) {
  87. continue;
  88. }
  89. attachment += attachmentA.getAttribute('value') + ",";
  90. }
  91. }
  92. return attachment;
  93. }
  94.  
  95. function form_rep_submit(content){//提交函数,直接抄官方的改一改
  96. var req = GetRequest();
  97. var img=$("#images_img_"+req.topicid).find("img");
  98. var str="";
  99. for(var i=0;i<img.size();i++){
  100. var imgsrc=img[i];
  101. if(i==img.size()){
  102. str=str+imgsrc.src.replace("100_100","origin");
  103. }else{
  104. str=str+imgsrc.src.replace("100_100","origin")+",";
  105. }
  106. }
  107. if(content=="fuhqwaifuhuwaqfbgcuaosjfcdopwtfgn23333333"){
  108. console.log("系统检测到此问题已回答");
  109. return false;
  110. }
  111. else if(content=="uwfigawuyhaofi3r983yhr89f[3h892ryrjq89rff"){
  112. console.log("还没人回答,再等等吧");
  113. return false;
  114. }
  115. var allAttachment = getAllNoticeAttachment();
  116. $.ajax({
  117. type: "post",
  118. url : "/bbscircle/addreply",
  119. dataType:'html',
  120. data: {
  121. clazzid : req.clazzid,
  122. topicId : req.topicid,
  123. content : content,
  124. files : str,
  125. cpi : req.cpi,
  126. ut : req.ut,
  127. attachmentFile:allAttachment,
  128. openc : req.openc
  129. },
  130. success: function(data){
  131. if (data.indexOf('error') == 0) {
  132. alert(data.replace('error;',''));
  133. return false;
  134. }
  135. var div=$("#more_reply_"+req.topicId);
  136. data = data.replace(/(^\s*)|(\s*$)/g,"");
  137. if(document.getElementById("lastInfo")){
  138. $("#lastInfo").before(data);
  139. }else{
  140. var doc = document.getElementById("topic_replys_"+req.topicId);
  141. doc.innerHTML += data;
  142. }
  143. $("#"+req.topicId).val("");
  144. console.log('成功复读');
  145. return true;
  146. },
  147. error: function(data){
  148. console.log('???');
  149. return false;
  150. }
  151. });
  152. }
  153.  
  154. function content_list(i){
  155. var see_all = document.getElementsByClassName("lookall")[parseInt(i/2)];
  156. if(see_all != null){
  157. see_all.click();
  158. }
  159. else{
  160. console.log("找不到按钮1");
  161. }
  162. }
  163.  
  164. function content_detail(){
  165. var more_button = document.getElementById("more_reply");
  166. if(more_button != null){
  167. console.log("pressed");
  168. more_button.click();//点一下加载更多
  169. }
  170. else{
  171. console.log("找不到按钮2");
  172. }
  173. window.onload = function(){
  174. var flag = form_rep_submit(GetBigGodsAnswer());
  175. setTimeout(function(){
  176. window.history.back();
  177. if(flag == true){
  178. window.history.back();
  179. }
  180. }, 1000);
  181. }
  182. }
  183.  
  184. function main(i){
  185. var url = window.location.pathname;
  186. if(url == "/bbscircle/grouptopic"){
  187. content_list(i);
  188. }
  189. else{
  190. content_detail();
  191. }
  192. }
  193.  
  194. function create_input(){
  195. var my_div = document.createElement("div");
  196. my_div.setAttribute("id", "my_div");
  197. my_div.innerText = "填入大佬名字(如果有的话):";
  198. var inner_pos = document.getElementsByClassName("title1118")[0];
  199. inner_pos.after(my_div);
  200.  
  201. var name_text = document.createElement("input");
  202. name_text.setAttribute("type", "input")
  203. name_text.setAttribute("id", "name_text");
  204. my_div.append(name_text);
  205. }
  206.  
  207. function create_button(){
  208. var button = document.createElement("input");
  209. button.setAttribute("type", "button");
  210. button.setAttribute("value", "开始复读");
  211. button.setAttribute("id", "start_button");
  212. button.style.width = "80px";
  213. button.style.height = "30px";
  214. button.style.align = "center";
  215. button.style.marginLeft = "0px";
  216. button.style.marginBottom = "0px";
  217. button.style.background = "#b46300";
  218. button.style.border = "1px solid #b46300";
  219. button.style.color = "white";
  220. var inner_pos = document.getElementById("name_text");
  221. inner_pos.after(button);
  222. $("#start_button").click(function() {
  223. button_click();
  224. });
  225.  
  226. var button2 = document.createElement("input");
  227. button2.setAttribute("type", "button");
  228. button2.setAttribute("value", "结束复读");
  229. button2.setAttribute("id", "start_button2");
  230. button2.style.width = "80px";
  231. button2.style.height = "30px";
  232. button2.style.align = "center";
  233. button2.style.marginLeft = "0px";
  234. button2.style.marginBottom = "0px";
  235. button2.style.background = "#b00000";
  236. button2.style.border = "1px solid #b00000";
  237. button2.style.color = "white";
  238. var inner_pos2 = document.getElementById("start_button");
  239. inner_pos2.after(button2);
  240. $("#start_button2").click(function() {
  241. button_click2();
  242. });
  243. }
  244.  
  245. function button_click() {
  246. GM_setValue("done_times", 0);
  247. your_name = document.getElementsByClassName("zt_u_name")[0].innerText;
  248. GM_setValue("your_name", your_name);
  249. list_length = document.getElementsByClassName("lookall").length;
  250. GM_setValue("list_length", list_length);
  251. dalao_name = document.getElementById("name_text").value;
  252. GM_setValue("dalao_name", dalao_name);
  253. location.reload();
  254. }
  255.  
  256. function button_click2() {
  257. GM_setValue("done_times", list_length*2);
  258. location.reload();
  259. }
  260.  
  261. (function() {
  262. 'use strict';
  263. if(window.location.pathname == "/bbscircle/grouptopic"){//done_times == list_length*2
  264. create_input();
  265. create_button();
  266. }
  267. if(if_referred_other(document.referrer) == false && done_times > 0){//防止上次没跑完,导致下次进来的时候直接继续跑
  268. done_times = 2*list_length;
  269. }
  270. if(done_times < 2*list_length){
  271. setTimeout(function() {
  272. main(done_times);
  273. }, 800);
  274. GM_setValue("done_times", ++done_times);
  275. }
  276. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址