自动获取磁链接并自动离线下载

As of 09/01/2016. See the latest version.

  1. // ==UserScript==
  2. // @name 挊
  3. // @namespace 撸
  4. // @description 自动获取磁链接并自动离线下载
  5. // @include http://www.javmoo.xyz/*
  6. // @include http://www.avless.com/*
  7. // @include http://www.avmemo.com/*
  8.  
  9. // @include http://look4lib.com*
  10. // @include http://javlib3.com/*
  11. // @include http://www.javlibrary.com/*
  12.  
  13. // @include http://www.libredmm.com/products/*
  14. // @include http://www.javbus.in/*
  15. // @include http://www.javbus.me/*
  16. // @include http://avdb.la/movie/*
  17. // @include http://www.141jav.com/view/*
  18. // @include http://www.av4you.net/work/*.htm
  19. // @include http://www.dmmy18.com/*
  20. // @include http://pan.baidu.com/disk/home*
  21. // @include http://115.com/?tab=offline&mode=wangpan
  22. // @include http://cloud.letv.com/webdisk/home/index
  23. // @include http://disk.yun.uc.cn/
  24. // @include https://www.furk.net/users/files/add
  25. // @include *.yunpan.360.cn/my/
  26.  
  27.  
  28. // @include http://www.dmm.co.jp/digital/videoa/*
  29.  
  30.  
  31. // @include http://www.btcherry.org/*
  32. // @include https://btdigg.org/search*
  33.  
  34.  
  35. // @version 1.28
  36. // @run-at document-end
  37. // @grant GM_xmlhttpRequest
  38. // @grant GM_setClipboard
  39. // @grant GM_setValue
  40. // @grant GM_getValue
  41. // @grant GM_addStyle
  42. // ==/UserScript==
  43. var debugging = false;
  44. /*
  45. // @include https://btdigg.org/search*
  46. // @include http://www.cilizhushou.com/search/*
  47. // @include http://www.btava.com/*
  48. // @include http://www.minnano-av.com/av*
  49. // @include http://www.oisinbosoft.com/dera/*
  50.  
  51. */
  52. var $ = function(selector, context) {
  53. if (context) {
  54. return context.querySelectorAll(selector);
  55. }
  56. return document.querySelectorAll(selector);
  57. };
  58. var offline_sites = {
  59. baidu: {
  60. url: 'http://pan.baidu.com/disk/home',
  61. name: '百度云',
  62. enable: true
  63. },
  64. 115: {
  65. name: '115离线',
  66. url: 'http://115.com/?tab=offline&mode=wangpan',
  67. enable: true,
  68. },
  69. letv: {
  70. name: '乐视云',
  71. url: 'http://cloud.letv.com/webdisk/home/index',
  72. enable: false
  73. },
  74. 360: {
  75. name: '360云',
  76. url: 'http://yunpan.360.cn/my/',
  77. enable: true
  78. },
  79. uc: {
  80. name: 'UC离线',
  81. url: 'http://disk.yun.uc.cn/',
  82. enable: true
  83. },
  84. furk: {
  85. name: 'Furk',
  86. url: 'https://www.furk.net/users/files/add',
  87. enable: true
  88. },
  89. };
  90. var common = {
  91. add_style: function(css) {
  92. if (css) {
  93. GM_addStyle(css);
  94. }
  95. else {
  96. GM_addStyle([
  97. '#nong-table{margin:10px auto;color:#666 !important;font-size:13px;text-align:center;background-color: #F2F2F2;}',
  98. '#nong-table>th,#nong-table>td{text-align: center;height:30px;background-color: #FFF;padding:0 1em 0;border: 1px solid #EFEFEF;}',
  99. '.nong-row{text-align: center;height:30px;background-color: #FFF;padding:0 1em 0;border: 1px solid #EFEFEF;}',
  100. '.nong-copy{color:#08c !important;}',
  101. '.nong-offline{text-align: center;}',
  102. '.nong-offline-download{color: rgb(0, 180, 30) !important;margin-right: 4px;}',
  103. '.nong-offline-download:hover{color:red !important;}',
  104. ].join(''));
  105. }
  106. },
  107. handle_event: function(event) {
  108. if (event.target.className == 'nong-copy') {
  109. event.target.innerHTML = '成功';
  110. GM_setClipboard(event.target.href);
  111. setTimeout(function() {
  112. event.target.innerHTML = '复制';
  113. }, 1000);
  114. event.preventDefault(); //阻止跳转
  115. }
  116. else if (event.target.className == 'nong-offline-download') {
  117.  
  118. var maglink = event.target.parentElement.parentElement.getAttribute('maglink') || event.target.parentElement.parentElement.parentElement.getAttribute('maglink')
  119.  
  120. GM_setValue('magnet', maglink);
  121. }
  122. else if (event.target.id == 'nong-search-select') {
  123. current_search_name = event.target.value;
  124. GM_setValue('search', current_search_name);
  125. search_engines[current_search_name](current_vid, function(src, data) {
  126. magnet_table.updata_table(src, data);
  127. });
  128. }
  129. },
  130. reg_event: function() { //TODO target 处理 更精准
  131. var list = [
  132. '.nong-copy',
  133. '.nong-offline-download'
  134. ];
  135. for (var i = 0; i < list.length; i++) {
  136. var a = document.querySelectorAll(list[i]);
  137. for (var u = 0; u < a.length; u++) {
  138. a[u].addEventListener('click', this.handle_event, false);
  139. }
  140. }
  141. // var b = document.querySelectorAll('#nong-search-select')[0];
  142. // b.addEventListener('change', this.handle_event, false);
  143.  
  144. },
  145. after: function(target, newnode) {
  146. target.parentElement.insertBefore(newnode, target.nextElementSibling);
  147. },
  148. parsetext: function(text) {
  149. var doc = null;
  150. try {
  151. doc = document.implementation.createHTMLDocument('');
  152. doc.documentElement.innerHTML = text;
  153. return doc;
  154. }
  155. catch (e) {
  156. alert('parse error');
  157. }
  158. },
  159. insert_js: function(js, maglink) {
  160. var script = document.createElement('script');
  161. script.setAttribute('type', 'text/javascript');
  162. script.innerHTML = '(' + js.toString() + ')(\'' + maglink + '\')';
  163. document.body.appendChild(script);
  164. },
  165. add_mini_table: function(sel, func) {
  166. var a = $(sel);
  167. for (var i = a.length - 1; i >= 0; i--) {
  168. a[i].parentElement.insertBefore(a[i], magnet_table.mini()); //TODO
  169. func(a[i]);
  170. }
  171. },
  172. };
  173. var magnet_table = {
  174. template: {
  175. create_head: function() {
  176. var a = document.createElement('tr');
  177. a.className = 'nong-row';
  178. a.id = 'nong-head';
  179. var list = [
  180. '标题',
  181. '大小',
  182. '操作',
  183. '离线下载'
  184. ];
  185. for (var i = 0; i < list.length; i++) {
  186. var b = this.head.cloneNode(true);
  187. b.firstChild.textContent = list[i];
  188. a.appendChild(b);
  189. }
  190. // var select_box = this.create_select_box();
  191. // a.firstChild.appendChild(select_box);
  192.  
  193. return a;
  194. },
  195. create_row: function(data) {
  196. var a = document.createElement('tr');
  197. a.className = 'nong-row';
  198. a.setAttribute('maglink', data.maglink);
  199. var b = document.createElement('td');
  200. var list = [
  201. this.create_info(data.title, data.maglink),
  202. this.create_size(data.size),
  203. this.create_operation(data.maglink),
  204. this.create_offline()
  205. ];
  206. for (var i = 0; i < list.length; i++) {
  207. var c = b.cloneNode(true);
  208. c.appendChild(list[i]);
  209. a.appendChild(c);
  210. }
  211. return a;
  212. },
  213. create_loading: function() {
  214. var a = document.createElement('tr');
  215. a.className = 'nong-row';
  216. var p = document.createElement('p');
  217. p.textContent = 'Loading';
  218. p.id = 'notice';
  219. a.appendChild(p);
  220. return a;
  221. },
  222. create_info: function(title, maglink) {
  223. var a = this.info.cloneNode(true);
  224. a.firstChild.textContent = title.length < 20 ? title : title.substr(0, 20) + '...';
  225. a.firstChild.href = maglink;
  226. a.title = title;
  227. return a;
  228. },
  229. create_size: function(size) {
  230. var a = this.size.cloneNode(true);
  231. a.textContent = size;
  232. return a;
  233. },
  234. create_operation: function(maglink) {
  235. var a = this.operation.cloneNode(true);
  236. a.firstChild.href = maglink;
  237. return a;
  238. },
  239. create_offline: function() {
  240. var a = this.offline.cloneNode(true);
  241. a.className = 'nong-offline';
  242. return a;
  243. },
  244. create_select_box: function() {
  245. var select_box = document.createElement('select');
  246. select_box.id = 'nong-search-select';
  247. select_box.setAttribute('title', '切换搜索结果');
  248. var search_name = GM_getValue('search', default_search_name);
  249. for (var k in search_engines) {
  250. var o = document.createElement('option');
  251. if (k == search_name) {
  252. o.setAttribute('selected', 'selected');
  253. }
  254. o.setAttribute('value', k);
  255. o.textContent = k;
  256. select_box.appendChild(o);
  257. }
  258. return select_box;
  259. },
  260. head: (function() {
  261. var a = document.createElement('th');
  262. var b = document.createElement('a');
  263. a.appendChild(b);
  264. return a;
  265. })(),
  266. info: (function() {
  267. var a = document.createElement('div');
  268. var b = document.createElement('a');
  269. b.textContent = 'name';
  270. b.href = 'src';
  271. a.appendChild(b);
  272. return a;
  273. })(),
  274. size: function() {
  275. var p = document.createElement('p');
  276. p.textContent = 'size';
  277. return p;
  278. }(),
  279. operation: (function() {
  280. var a = document.createElement('div');
  281. var copy = document.createElement('a');
  282. copy.className = 'nong-copy';
  283. copy.textContent = '复制';
  284. a.appendChild(copy);
  285. return a;
  286. })(),
  287. offline: (function() {
  288. var a = document.createElement('div');
  289. var b = document.createElement('a');
  290. b.className = 'nong-offline-download';
  291. b.target = '_blank';
  292. for (var k in offline_sites) {
  293. if (offline_sites[k].enable) {
  294. var c = b.cloneNode(true);
  295. c.href = offline_sites[k].url;
  296. c.textContent = offline_sites[k].name;
  297. a.appendChild(c);
  298. }
  299. }
  300. return a;
  301. })(),
  302. },
  303. create_empty_table: function() {
  304. var a = document.createElement('table');
  305. a.id = 'nong-table';
  306. return a;
  307. },
  308. updata_table: function(src, data, type) {
  309. // console.log(data);
  310. if (type == 'full') {
  311. var tab = $('#nong-table')[0];
  312. var a = tab.querySelectorAll('.nong-row');
  313. for (var i = 0; i < a.length; i++) {
  314. if (a[i].id == 'nong-head') {
  315. continue;
  316. }
  317. tab.removeChild(a[i]);
  318. }
  319. for (var i = 0; i < data.length; i++) {
  320. tab.appendChild(this.template.create_row(data[i]));
  321. }
  322.  
  323. }
  324. // else if(type =='mini'){
  325. // }
  326. common.reg_event();
  327. },
  328. full: function(src, data) {
  329. var tab = this.create_empty_table();
  330. tab.appendChild(this.template.create_head());
  331. // for (var i = 0; i < data.length; i++) {
  332. // tab.appendChild(this.template.create_row(data[i]))
  333. // }
  334. var loading = this.template.create_loading();
  335. tab.appendChild(loading);
  336. return tab;
  337. },
  338. mini: function(data) {
  339. var tab = this.create_empty_table();
  340. tab.appendChild(this.template.create_offline());
  341. return tab;
  342. }
  343. };
  344. var extend_tab = function(target) {
  345. this.target = target
  346. };
  347. extend_tab.prototype.after = function(selector) {
  348. var a = null
  349. if (typeof selector === 'string') {
  350. var a = $(selector)[0]
  351. }
  352. else {
  353. a = selector;
  354. }
  355. console.log(a, selector)
  356. var parent = a.parentElement;
  357. if (parent.lastChild === a) {
  358. parent.appendChild(this.target);
  359. }
  360. else {
  361. parent.insertBefore(this.target, a.nextSibling);
  362. }
  363. };
  364. extend_tab.prototype.setmaglink = function(maglink) {
  365. this.target.setAttribute('maglink', maglink)
  366. };
  367. extend_tab.prototype.appendTo = function(selector) {
  368. selector.appendChild(this.target)
  369. }
  370. var matched_sites = {
  371. //av信息查询 类
  372. jav: {
  373. re: /(javmoo|avless|avmemo).*movie.*/,
  374. vid: function() {
  375. return $('.header')[0].nextElementSibling.innerHTML;
  376. },
  377. proc: function(tab) {
  378. tab.after('#movie-share');
  379. }
  380. },
  381. javlibrary: {
  382. re: /(javlibrary|javlib3|look4lib).*\?v=.*/,
  383. vid: function() {
  384. return $('#video_id')[0].getElementsByClassName('text')[0].innerHTML;
  385. },
  386. proc: function(tab) {
  387. tab.after('#video_favorite_edit');
  388. }
  389. },
  390. libredmm: {
  391. re: /libredmm/,
  392. vid: function() {
  393. return location.href.match(/products\/(.*)/)[1];
  394. },
  395. proc: function(tab) {
  396. tab.after('.container');
  397. }
  398. },
  399. dmm: {
  400. re: /dmm\.co\.jp/,
  401. vid: function() {
  402. var result = location.href.replace(/.*cid=/, '').replace(/\/\??.*/, '').match(/[^h_0-9].*/);
  403. return result[0] ? result[0].replace('00', '') : '';
  404. },
  405. proc: function(tab) {
  406. tab.after('.lh4')
  407. },
  408. },
  409. minnano: {
  410. re: /minnano-av/,
  411. vid: function() {
  412. var elems = $('.t11');
  413. var r = '';
  414. for (var i = 0; i < elems.length; i++) {
  415. if (elems[i].textContent == '品番') {
  416. r = elems[i].nextElementSibling.textContent;
  417. break;
  418. }
  419. }
  420. return r;
  421. },
  422. proc: function(tab) {
  423. var tmp = (function() {
  424. var a = $('table');
  425. for (var i = 0; i < a.length; i++) {
  426. if (a[i].bgColor == '#EEEEEE') {
  427. return a[i];
  428. }
  429. }
  430. })();
  431. tab.after(tmp)
  432. }
  433. },
  434. oisinbosoft: {
  435. re: /oisinbosoft/,
  436. vid: function() {
  437. var r = location.pathname.replace(/.*\/+/, '').replace('.html', '');
  438. return r.indexOf('-') == r.lastIndexOf('-') ? r : r.replace(/\w*-?/, '');
  439. },
  440. proc: function(tab) {
  441. // add_style('#magnet-tab table{clear:both;}');
  442. tab.after('#detail_info');
  443. }
  444. },
  445. javbus: {
  446. re: /javbus/,
  447. vid: function() {
  448. var a = $('.header')[0].nextElementSibling;
  449. return a ? a.textContent : '';
  450. },
  451. proc: function(tab) {
  452. tab.after('.movie')
  453. }
  454. },
  455. avdb: {
  456. re: /avdb\.la/,
  457. vid: function() {
  458. return $('.info')[0].firstElementChild.innerHTML.replace(/<.*>/, '').trim();
  459. },
  460. proc: function(tab) {
  461. tab.after($('#downs')[0].previousElementSibling)
  462. }
  463. },
  464. jav141: {
  465. re: /141jav/,
  466. vid: function() {
  467. return location.href.match(/view\/(.*)\//)[1];
  468. },
  469. proc: function(tab) {
  470. tab.after($('.dlbtn')[0].previousElementSibling)
  471. },
  472. },
  473. av4you: {
  474. re: /av4you/,
  475. vid: function() {
  476. return $('.star-detail-name')[0].textContent.trim();
  477. },
  478. proc: function(tab) {
  479. tab.after('.star-detail')
  480. }
  481. },
  482. dmmy18_sin: {
  483. re: /dmmy18\.com\/details\.aspx\?id=.*/,
  484. vid: function() {
  485. return $('.info li')[0].textContent.replace('番号:', '');
  486. },
  487. proc: function(tab) {
  488. tab.after('.head_coverbanner')
  489. },
  490. },
  491. //网盘下载 类
  492. //这些 $ 是真正的 jquery
  493. baidu: {
  494. re: /pan\.baidu\.com/,
  495. fill_form: function(magnet) {
  496. document.querySelector('.g-button[data-button-id=b13]').click();
  497. setTimeout(function() {
  498. document.querySelector('#_disk_id_2').click();
  499. setTimeout(function() {
  500. document.querySelector('#share-offline-link').value = magnet;
  501. document.querySelector('.g-button[data-button-id=b63]').click();
  502. }, 500)
  503. }, 1500);
  504. }
  505. },
  506. 115: {
  507. re: /115\.com/,
  508. fill_form: function(link) {
  509. var rsc = setInterval(function() {
  510. if (document.readyState == 'complete') {
  511. clearInterval(rsc);
  512. setTimeout(function() {
  513. Core['OFFL5Plug'].OpenLink();
  514. setTimeout(function() {
  515. $('#js_offline_new_add').val(link);
  516. }, 300);
  517. }, 1000);
  518. }
  519. }, 400);
  520. }
  521. },
  522. letv: {
  523. re: /cloud\.letv\.com/,
  524. fill_form: function(link) {
  525. setTimeout(function() {
  526. $('#offline-btn').click();
  527. setTimeout(function() {
  528. $('#offline_clear_complete').prev().click();
  529. setTimeout(function() {
  530. $('#offline-add-link').val(link);
  531. }, 500);
  532. }, 1000);
  533. }, 2000);
  534. }
  535. },
  536. furk: {
  537. re: /www\.furk\.net/,
  538. fill_form: function(link) {
  539. setTimeout(function() {
  540. $('#url').val(link.replace('magnet:?xt=urn:btih:', ''));
  541. }, 1500);
  542. }
  543. },
  544. 360: {
  545. re: /yunpan\.360\.cn\/my/,
  546. fill_form: function(link) {
  547. yunpan.cmdCenter.showOfflineDia();
  548. setTimeout(function() {
  549. $('.offdl-btn-create').click();
  550. setTimeout(function() {
  551. $('#offdlUrl').val(link);
  552. }, 500);
  553. }, 1000);
  554. }
  555. },
  556. uc: {
  557. re: /disk\.yun\.uc\.cn\//,
  558. fill_form: function(link) {
  559. setTimeout(function() {
  560. $('#newuclxbtn_index').click();
  561. setTimeout(function() {
  562. $('#uclxurl').val(link);
  563. }, 1000);
  564. }, 1200);
  565. }
  566. },
  567. //磁链接搜索 类
  568. btcherry_a: {
  569. re: /btcherry\.org\/search\?keyword=.*/,
  570. func: function(tab) {
  571. var selector = '.r div a';
  572. var a = $(selector);
  573. for (var i = 0; i < a.length; i++) {
  574. var b = tab.cloneNode(true);
  575. b.setAttribute('maglink', a[i].href)
  576. //console.log(a[i].href)
  577. a[i].parentElement.appendChild(b)
  578. }
  579. },
  580. },
  581. btcherry_b: {
  582. re: /btcherry\.org\/hash\/.*/,
  583. func: function(tab) {
  584. var selector = '#content div ul';
  585. var a = $(selector)[0];
  586. tab.setAttribute('maglink', $('li a', a)[0])
  587. a.parentElement.insertBefore(tab, a)
  588. },
  589. },
  590. btdigg: {
  591. re: /btdigg\.org\/search/,
  592. func: function(tab) {
  593. console.log($('#search_res'))
  594. if ($('#search_res').length!=0) {//搜索页面
  595. console.log(3)
  596. var selector = '.snippet';
  597. var a = $(selector);
  598. for (var i = 0; i < a.length; i++) {
  599. var b = tab.cloneNode(true);
  600. //console.log($('.ttth a',a[i].previousElementSibling)[0]))
  601. b.setAttribute('maglink', $('.ttth a', a[i].previousElementSibling)[0].href);
  602. a[i].parentElement.appendChild(b);
  603. };
  604. }
  605. else if ($('.torrent_info_tbl').length!=0) {//详情页面
  606. console.log(1)
  607. var selector = '.torrent_info_tbl';
  608. var a = $(selector)[0];
  609. tab.setAttribute('maglink', $('a', a)[1].href);
  610. a.parentElement.insertBefore(tab, a);
  611. }
  612.  
  613. },
  614. },
  615. // cilizhushou_a: {
  616. // re: /cilizhushou/,
  617. // func: function(div) {
  618. // $xafter('.tail', div, function(elem) {
  619. // return elem.getElementsByTagName('a')[0].href;
  620. // });
  621. // },
  622. // },
  623. // // shousibaocai_single: {
  624. // // re: '',
  625. // // func: '',
  626. // // },
  627. // btava_a: {
  628. // re: /search\//,
  629. // func: function(div) {
  630. // $xafter('.data-list .date', div, function(elem) {
  631. // return 'magnet:?xt=urn:btih:' + elem.parentElement.getElementsByTagName('a')[0].href.match(/hash\/(.*)/)[1];
  632. // });
  633. // },
  634. // },
  635. // btava_single: {
  636. // re: /magnet\/detail\/hash\//,
  637. // func: function(div) {
  638. // div.setAttribute('data', $('#magnetLink')[0].value);
  639. // common.after($('#magnetLink')[0], div);
  640. // },
  641. // },
  642. // // instsee_a:{
  643. // // re: /^http:\/\/www\.instsee.com\/$|instsee\.com\/default.aspx.*/,
  644. // // func: function(div){
  645. // // }
  646. // // },
  647. // demo: {
  648. // re: /.*/,
  649. // vid: function() {
  650. // return 'demo'
  651. // },
  652. // proc: function(table) {
  653. // common.after(document.body, table);
  654. // }
  655. // },
  656. };
  657. var search_engines = {
  658. bt2mag: function(kw, cb) {
  659. GM_xmlhttpRequest({
  660. method: 'GET',
  661. url: 'http://www.bt2mag.com/search/' + kw,
  662. onload: function(result) {
  663. var doc = common.parsetext(result.responseText)
  664. if (!doc) {
  665. //TODO
  666. }
  667. var data = [];
  668. var t = doc.getElementsByClassName('data-list')[0];
  669. if (t) {
  670. var a = t.getElementsByTagName('a');
  671. for (var i = 0; i < a.length; i++) {
  672. if (!a[i].className.match('btn')) {
  673. data.push({
  674. 'title': a[i].title,
  675. 'maglink': 'magnet:?xt=urn:btih:' + a[i].href.replace(/.*hash\//, ''),
  676. 'size': a[i].nextElementSibling.textContent
  677. //'src':'' TODO
  678. });
  679. }
  680. }
  681. }
  682. cb(result.finalUrl, data);
  683. },
  684. onerror: function(e) {
  685. console.log(e);
  686. }
  687. })
  688. },
  689. diggbt: function(kw, cb) {
  690. GM_xmlhttpRequest({
  691. method: 'POST',
  692. url: this.url,
  693. data: 's=' + kw,
  694. headers: {
  695. 'Content-Type': 'application/x-www-form-urlencoded'
  696. },
  697. onload: function(result) {
  698. var trick = function(str) {
  699. var t = document.createElement('a');
  700. t.outerHTML = str.match(/document.write\(\'(.*)\'\)/)[1].split('\'+\'').join('');
  701. return t.href;
  702. }
  703. var doc = document.implementation.createHTMLDocument('');
  704. doc.documentElement.innerHTML = result.responseText;
  705. var data = [];
  706. var t = doc.getElementsByClassName('list-con')[0];
  707. if (t) {
  708. var elems = t.getElementsByClassName('item-title');
  709. for (var i = 0; i < elems.length; i++) {
  710. data.push({
  711. 'title': elems[i].getElementsByTagName('a')[0].textContent,
  712. 'magnet': trick(elems[i].nextElementSibling.getElementsByTagName('script')[0].innerHTML),
  713. 'size': elems[i].nextElementSibling.getElementsByTagName('b')[1].textContent
  714. });
  715. }
  716. cb(result.finalUrl, data);
  717. }
  718. },
  719. onerror: function(e) {
  720. console.log(e);
  721. }
  722. });
  723. },
  724. btlibrary: function(kw, cb) {
  725. GM_xmlhttpRequest({
  726. method: 'POST',
  727. url: this.url,
  728. data: 's=' + kw,
  729. headers: {
  730. 'Content-Type': 'application/x-www-form-urlencoded'
  731. },
  732. onload: function(result) {
  733. var doc = document.implementation.createHTMLDocument('');
  734. doc.documentElement.innerHTML = result.responseText;
  735. var data = [];
  736. var t = doc.getElementsByClassName('list-content')[0];
  737. if (t) {
  738. var elems = t.getElementsByClassName('item-title');
  739. for (var i = 0; i < elems.length; i++) {
  740. data.push({
  741. 'title': elems[i].getElementsByTagName('a')[0].textContent,
  742. 'magnet': elems[i].nextElementSibling.getElementsByTagName('a')[0].href,
  743. 'size': elems[i].nextElementSibling.getElementsByTagName('b')[1].textContent
  744. });
  745. }
  746. cb(result.finalUrl, data);
  747. }
  748. },
  749. onerror: function(e) {
  750. console.log(e);
  751. }
  752. });
  753. },
  754. demo: function(kw, cb) {
  755. var data = [];
  756. var r = 0;
  757. for (var i = 0; i < 10; i++) {
  758. r = Math.round(Math.random() * 100)
  759. data.push({
  760. title: r + 'title',
  761. maglink: r + 'maglink',
  762. size: r + 'size'
  763. })
  764. }
  765. cb(data);
  766. },
  767. };
  768. var test = {
  769. cb_search: function(src, data) {
  770. // body...
  771. },
  772. search: function() {
  773. var vid = '';
  774. for (var k in search_engines) {
  775. search_engines[k](vid, function() {
  776. console.log(k, src, data); //?????作用域
  777. });
  778. }
  779. },
  780. };
  781. var current_vid = ''
  782. var current_search_name = 'bt2mag'; //GM_getValue('search', default_search_name);
  783. var run = function() {
  784. common.add_style();
  785. if (!debugging) {
  786. for (var key in matched_sites) {
  787. if (matched_sites[key].re.test(location.href)) {
  788. if (matched_sites[key].proc) {
  789.  
  790. var newtab = new extend_tab(magnet_table.full())
  791. matched_sites[key].proc(newtab);
  792. current_vid = matched_sites[key].vid();
  793. if (!current_vid) {
  794. $('#notice').textContent = 'Can\'t match vid';
  795. }
  796. search_engines[current_search_name](current_vid, function(src, data) {
  797. if (data.length == 0) {
  798. $('#nong-table')[0].querySelectorAll('#notice')[0].textContent = 'No search result';
  799. }
  800. else {
  801. magnet_table.updata_table(src, data, 'full');
  802. }
  803. });
  804. }
  805. else if (matched_sites[key].fill_form) {
  806. var js = matched_sites[key].fill_form;
  807. var maglink = GM_getValue('magnet');
  808. if (maglink) {
  809. common.insert_js(js, maglink);
  810. GM_setValue('magnet', '')
  811. }
  812. }
  813. else if (matched_sites[key].func) {
  814. //var newtab = new extend_tab(magnet_table.mini())
  815. console.log(matched_sites[key]);
  816. matched_sites[key].func(magnet_table.mini());
  817. magnet_table.updata_table('', '', 'mini');
  818. }
  819. break;
  820. }
  821. }
  822. }
  823. else {
  824. var key = 'demo';
  825. // current_key = key;
  826. search_engines.demo(matched_sites[key].vid(), function(data) {
  827. var table = magnet_table.full(data);
  828. matched_sites[key].proc(table);
  829. common.reg_event();
  830. })
  831. };
  832. };
  833. run();