-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtorfilter.js
2451 lines (2269 loc) · 75.4 KB
/
torfilter.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// ==UserScript==
// @name 种子列表过滤
// @namespace https://greasyfork.org/zh-CN/scripts/451748
// @version 1.6.5
// @license GPL-3.0 License
// @description 在种子列表页中,过滤: 未作种,无国语,有中字,标题不含,描述不含,大小介于,IMDb/豆瓣大于输入值 的种子。配合dupapi可以实现Plex/Emby库查重。
// @author ccf2012
// @source https://github.com/ccf-2012/torfilter
// @icon https://pterclub.com/favicon.ico
// @grant GM_setClipboard
// @grant GM.xmlHttpRequest
// @connect 192.168.5.6
// @require https://code.jquery.com/jquery-3.6.0.min.js
// @match https://*pterclub.com/torrents.php*
// @match https://*pterclub.com/officialgroup*
// @match https://pterclub.com/details.php*
// @match https://*chddiy.xyz/torrents.php*
// @match https://*chddiy.xyz/details.php*
// @match https://chdbits.co/details.php*
// @match https://chdbits.co/torrents.php*
// @match https://ptchdbits.co/torrents.php*
// @match https://ptchdbits.co/details.php*
// @match https://audiences.me/torrents.php*
// @match https://audiences.me/details.php*
// @match https://sunnypt.top/torrents.php*
// @match https://sunnypt.top/details.php*
// @match https://ourbits.club/torrents.php*
// @match https://ourbits.club/details.php*
// @match https://springsunday.net/torrents.php*
// @match https://springsunday.net/details.php*
// @match https://www.beitai.pt/torrents.php*
// @match https://www.beitai.pt/details.php*
// @match https://totheglory.im/browse.php?*
// @match https://totheglory.im/t/*
// @match https://pt.keepfrds.com/torrents.php*
// @match https://pt.keepfrds.com/details.php*
// @match https://*hdchina.org/torrents.php*
// @match https://*hdchina.org/details.php*
// @match https://hdsky.me/torrents.php*
// @match https://hdsky.me/details.php*
// @match https://hhanclub.top/torrents.php*
// @match https://hhanclub.top/details.php*
// @match https://leaves.red/torrents*
// @match https://leaves.red/details*
// @match https://hdhome.org/torrents.php*
// @match https://hdhome.org/details.php*
// @match https://wintersakura.net/torrents.php*
// @match https://wintersakura.net/details.php*
// @match https://pt.soulvoice.club/torrents.php*
// @match https://pt.soulvoice.club/details.php*
// @match https://ptsbao.club/torrents.php*
// @match https://ptsbao.club/details.php*
// @match https://pt.eastgame.org/torrents.php*
// @match https://pt.eastgame.org/details.php*
// @match https://www.hddolby.com/torrents.php*
// @match https://www.hddolby.com/details.php*
// @match https://pt.hd4fans.org/torrents.php*
// @match https://pt.hd4fans.org/details.php*
// @match https://hdfans.org/torrents.php*
// @match https://hdfans.org/details.php*
// @match https://pthome.net/torrents.php*
// @match https://pthome.net/details.php*
// @match https://kp.m-team.cc/torrents*
// @match https://kp.m-team.cc/movie*
// @match https://kp.m-team.cc/details*
// @match https://piggo.me/torrents*
// @match https://piggo.me/special*
// @match https://piggo.me/details*
// @match https://discfan.net/torrents*
// @match https://discfan.net/details*
// @match https://www.tjupt.org/torrents*
// @match https://www.tjupt.org/details*
// @match https://lemonhd.club/torrents*
// @match https://lemonhd.club/details*
// ==/UserScript==
const API_SERVER = 'http://192.168.5.6:5006';
const API_AUTH_KEY = "some_api_key";
const API_CHECKDUP = API_SERVER + '/api/checkdupeonly';
const API_DUPDOWNLOAD = API_SERVER + '/api/dupedownload';
const not_supported = (element) => {
return "";
};
const skip_passkey = async () => {
return "";
};
// ====== pter
const pter_imdbval = (element) => {
var t = $(element).find( "a span[data-imdbid]" );
return t.text();
};
const pter_imdbid = (element) => {
var t = $(element).find("a span[data-imdbid]")
return (t && t.attr("data-imdbid")) ? 'tt'+t.attr("data-imdbid") : ''
};
const pter_douban = (element) => {
var d = $(element).find("a span[data-doubanid]"
);
return d.text();
};
const pter_seeding = (element) => {
// var d = $(element).find("img.progbargreen");
return ($(element).find("img.progbargreen").length > 0);
};
const pter_downed = (element) => {
// var d = $(element).find("img.progbargreen");
return ($(element).find("img.progbarred").length > 0);
};
// ====== chd
const chd_imdb = (element) => {
var t = $(element).find(
"td:nth-child(2) > table > tbody > tr > td:nth-child(2)"
);
return t.text();
};
const chd_seeding = (element) => {
var d = $(element).find("td:nth-child(10)");
return (d.length > 0 && d.css("color") === 'rgb(0, 128, 0)')
// return d.text() === "100%";
};
const chd_downed = (element) => {
var d = $(element).find("td:nth-child(10)");
// return (d.length > 0 && d.css("color") === 'rgb(0, 128, 0)')
return d.text() != "--";
};
const chd_passkey = async () => {
let html = await $.get("usercp.php");
let passkeyRow = $(html).find('tr:contains("密钥"):last');
if (passkeyRow.length > 0) {
var key = passkeyRow.find("td:last").text();
return "&passkey=" + key.trim();
}
return "";
};
// ====== ade
const ade_imdbval = (element) => {
var t = $(element).find(
"td.rowfollow.torrents-box > div.torrents-name > table > tbody > tr > td:nth-child(2) > table > tbody > tr > td:nth-child(1) > div > a:nth-child(3)"
);
return t.text();
};
const ade_imdbid = (element) => {
var t = $(element)
.find(
"td.rowfollow.torrents-box > div.torrents-name > table > tbody > tr > td:nth-child(2) > table > tbody > tr > td:nth-child(1) > div > a:nth-child(3)"
)
.attr("href");
if (t) {
var m = t.match(/title\/(tt\d+)/);
}
return m ? m[1] : "";
};
const ade_douban = (element) => {
var d = $(element).find(
"td.rowfollow.torrents-box > div.torrents-name > table > tbody > tr > td:nth-child(2) > table > tbody > tr > td:nth-child(1) > div > a:nth-child(1)"
);
return d.text();
};
const ade_seeding = (element) => {
var d = $(element).find("div.torrents-progress");
return d.length > 0 && d.css("width") != "0px";
// return d.text() === "100%";
};
const ade_downed = (element) => {
var d = $(element).find("div.torrents-progress2");
return d.length > 0 && d.css("width") != "0px";
};
const ade_passkey = async () => {
let html = await $.get("usercp.php")
// debugger;
// $(html).find("#passkey").css("display", "");
let passkeyRow = $(html).find("#passkey");
if (passkeyRow.length > 0){
let key = passkeyRow.text().replace('(妥善保管,请勿泄露)', '');
return "&passkey=" + key.trim() + "&https=1" ;
}
return "" ;
};
// ====== ob
const ob_imdbval = (element) => {
var t = $(element).find(
"td:nth-child(2) > table > tbody > tr > td:nth-child(4) > div:nth-child(1) > em > label"
);
return t.text();
};
const ob_imdbid = (element) => {
var t = $(element)
.find(
"td:nth-child(2) > table > tbody > tr > td:nth-child(4) > div:nth-child(1) > em > label"
)
.attr("data-imdbid");
return t ? "tt" + t : "";
};
const ob_douban = (element) => {
var d = $(element).find(
"td:nth-child(2) > table > tbody > tr > td:nth-child(4) > div:nth-child(2) > em > label"
);
return d.text();
};
const ob_seeding = (element) => {
var d = $(element).find("div.doing");
return d.length > 0 && d.attr("title").includes("100%");
};
const ob_downed = (element) => {
var d = $(element).find("div.out");
return d.length > 0 && d.attr("title").includes("100%");
};
const ob_passkey = async () => {
let html = await $.get("usercp.php");
let passkeyRow = $(html).find('tr:contains("密钥"):last');
if (passkeyRow.length <= 0) {
passkeyRow = $(html).find('tr:contains("密匙"):last');
}
if (passkeyRow.length <= 0) {
passkeyRow = $(html).find('tr:contains("Passkey"):last');
}
if (passkeyRow.length > 0) {
let key = passkeyRow.find("td:last").text();
return "&passkey=" + key.trim() + "&https=1";
}
return "";
};
// ====== redleaves
const rl_imdbval = (element) => {
var t = $(element).find("img[alt*='imdb']")
return t.parent().text();
};
const rl_douban = (element) => {
var d = $(element).find("img[alt*='douban']");
return d.parent().text();
};
const rl_seeding = (element) => {
var d = $(element).find("div[title]");
return d.length > 0 && d.attr("title").includes("100");
};
const rl_downed = (element) => {
var d = $(element).find("div[title]");
return d.length > 0 && d.attr("title").includes("100");
};
const rl_passkey = async () => {
let html = await $.get("usercp.php");
let passkeyRow = $(html).find('tr:contains("密钥"):last');
if (passkeyRow.length > 0) {
let key = passkeyRow.find("td:last").text();
return "&passkey=" + key.trim() + "&https=1";
}
return "";
};
// ====== ssd
const ssd_imdbval = (element) => {
var t = $(element).find("span.torrent-rating");
if (t.length > 1){
return $(t[0]).text()
}
var s = t.parent().attr("href");
if (s && s.match(/search=(\d+)\b.*search_area=4/)) {
return $(t[0]).text()
}
return ""
// let imdb = "";
// if (t.parent().attr("href") && t.parent().attr("href").includes("imdb")) {
// imdb = t.text();
// }
// return imdb;
};
const ssd_imdbid = (element) => {
var t = $(element)
.find("td:nth-child(2) > div:nth-child(2) > span > a:nth-child(1)")
.attr("href");
if (t) {
var m = t.match(/search=(\d+)\b.*search_area=4/);
if (m) {
return (m[1].length < 7) ? "tt" + m[1].padStart(7, '0') : "tt" + m[1];
}
}
return "";
};
const ssd_douban = (element) => {
var t = $(element).find("span.torrent-rating");
if (t.length > 1){
return $(t[1]).text()
}
var s = t.parent().attr("href");
if (s && s.match(/search=(\d+)\b.*search_area=5/)) {
return $(t[0]).text()
}
return ""
// var d = $(element).find("td:nth-child(3) > div:nth-child(2) > a > span");
// if (d.length <= 0) {
// d = $(element).find("td:nth-child(3) > div > a > span");
// }
// let douban = "";
// if (d.parent().attr("href") && d.parent().attr("href").includes("douban")) {
// douban = d.text();
// }
// return douban;
};
const ssd_seeding = (element) => {
var d = $(element).find("div.p_seeding");
return d.length > 0;
};
const ssd_downed = (element) => {
var d = $(element).find("div.p_inactive");
return d.length > 0;
};
const ssd_passkey = async () => {
// site changed 2022.12
// let html = await $.get("usercp.php");
// let passkeyRow = $(html).find('tr:contains("密钥"):last');
// if (passkeyRow.length > 0) {
// var key = passkeyRow.find("td:last").text();
// return "&passkey=" + key.trim() + "&https=1";
// }
return "";
};
const ssd_detailTable = (html) => {
let downTr = $(html).find('tr:contains("下载"):first');
if (downTr) {
return downTr.parent();
} else return null;
};
// ====== ttg
const ttg_imdbval = (element) => {
var t = $(element).find("td:nth-child(2) > div.name_right > span.imdb_rate > a");
return t.text();
};
const ttg_imdbid = (element) => {
var t = $(element).find("td:nth-child(2) > div.name_right > span.imdb_rate > a").attr("href");
if (t) {
var m = t.match(/title\/(tt\d+)/);
}
return m ? m[1] : "";
};
const ttg_seeding = (element) => {
var d = $(element).find("td:nth-child(2) > div.process.green > span");
return d.length > 0;
};
const ttg_passkey = async () => {
let html = await $.get("my.php");
let passkeyRow = $("td", $(html)).filter(function() {
return $(this).text() == "Passkey";
}).closest("tr");
if (passkeyRow.length > 0) {
var key = passkeyRow.find("td:last").text();
return key.trim();
}
return "";
};
// beitai
const beitai_seeding = (element) => {
var d = $(element).find("td:nth-child(9)");
return d.text().includes("100%");
};
const beitai_passkey = async () => {
let html = await $.get("usercp.php");
let passkeyRow = $(html).find('tr:contains("密钥"):last');
if (passkeyRow.length > 0) {
var key = passkeyRow.find("td:last").text();
return "&passkey=" + key.trim() + "&https=1";
}
return "";
};
// ====== frds
const frds_imdbval = (element) => {
var t = $(element).find("td:nth-child(2) > table > tbody > tr > td:nth-child(2) > div:nth-child(1) > img:nth-child(2)");
let imdb = "";
if (t.attr("src") && t.attr("src").includes("imdb")) {
imdb = t.parent().text();
imdb = imdb.replace(/(-+|\d+\.\d*)\s*$/, '').trim()
}
return imdb;
};
const frds_passkey = async () => {
let html = await $.get("usercp.php");
let passkeyRow = $(html).find('tr:contains("密钥"):last');
if (passkeyRow.length > 0) {
var key = passkeyRow.find("td:last").text();
return "&passkey=" + key.trim() + "&https=1";
}
return "";
};
const frds_seeding = (element) => {
// var d = $(element).find("td:nth-child(2) > table > tbody > tr > td:nth-child(1) > div > div:nth-child(1)");
var d = $("td:nth-child(2) > table > tbody > tr > td:nth-child(1)", element)
return d.length > 0 && (/2s_up.gif/.exec(d.html()))
};
const frds_downed = (element) => {
// var d = $(element).find("td:nth-child(2) > table > tbody > tr > td:nth-child(1) > div > div:nth-child(1)");
var d = $("td:nth-child(2) > table > tbody > tr > td:nth-child(1)", element)
return d.length > 0 && (/2s_dled.gif/.exec(d.html()))
};
// ====== hdc
const hdc_imdbval = (element) => {
var t = $(element).find(
"td.t_name > table > tbody > tr > td.act > a.imdb"
);
return t.text();
};
const hdc_seeding = (element) => {
var s = $(element).find("div.progress_seeding");
var d = $(element).find("div.progressarea");
return s.length > 0 || d.length > 0;
};
const hdc_downed = (element) => {
var d = $(element).find("div.progress_completed");
return d.length > 0;
};
// ====== hds
const sky_imdbval = (element) => {
var t = $(element).find(
"td > table > tbody > tr > td:nth-child(2) > table > tbody > tr > td:nth-child(1) > div > a:nth-child(2)"
);
return t.text();
};
const sky_imdbid = (element) => {
var t = $(element)
.find(
"td > table > tbody > tr > td:nth-child(2) > table > tbody > tr > td:nth-child(1) > div > a:nth-child(2)"
)
.attr("href");
if (t) {
var m = t.match(/title\/(tt\d+)/);
}
return m ? m[1] : "";
};
const sky_douban = (element) => {
var d = $(element).find(
"td > table > tbody > tr > td:nth-child(2) > table > tbody > tr > td:nth-child(1) > div > a:nth-child(1)"
);
return d.text();
};
const sky_seeding = (element) => {
var s = $(element).find("div.progressseeding");
var d = $(element).find("div.progressdownloading");
return s.length > 0 || d.length > 0;
};
const sky_downed = (element) => {
var d = $(element).find("div.progressfinished");
return d && d.length > 0 ;
};
const sky_passkey = async () => {
// let html = await $.get("usercp.php");
// let passkeyRow = $(html).find('tr:contains("密钥"):last');
// if (passkeyRow.length > 0) {
// var key = passkeyRow.find("td:last").text();
// return "&passkey=" + key.trim();
// }
return "";
};
// ====== hhclub
const hh_imdbval = (element) => {
var t = $(element).find("img[title='imdb']");
return t.parent().text();
};
const hh_douban = (element) => {
var d = $(element).find("img[title='douban']");
return d.parent().text();
};
const hh_seeding = (element) => {
var s = $(element).find("[title*='leeching']");
var d = $(element).find("[title*='seeding']");
return s.length > 0 || d.length > 0;
};
const hh_downed = (element) => {
var d = $(element).find("[title*='inactivity']");
return d && d.length > 0 ;
};
const hh_passkey = async () => {
let html = await $.get("usercp.php");
let passkeyRow = $(html).find('tr:contains("密钥"):last');
if (passkeyRow.length > 0) {
var key = passkeyRow.find("td:last").text();
return "&passkey=" + key.trim();
}
return "";
};
// ====== lemonhd
const lhd_imdbval = (element) => {
var t = $(element).find( "a[href*='imdb']" );
return t.text();
};
const lhd_imdbid = (element) => {
var t = $(element)
.find("a[href*='imdb']" )
.attr("href");
if (t) {
var m = t.match(/title\/(tt\d+)/);
}
return m ? m[1] : "";
};
const lhd_douban = (element) => {
var d = $(element).find("a[href*='douban']");
return d.text();
};
const lhd_seeding = (element) => {
var d = $(element).find("td.rowfollow.peer-active");
return d.length > 0 ;
};
const lhd_downed = (element) => {
var d = $(element).find("td:nth-child(10) > b");
return d.text() != "--";;
};
const lhd_passkey = async () => {
let html = await $.get("usercp.php");
let passkeyRow = $(html).find('tr:contains("密钥"):last');
if (passkeyRow.length > 0) {
var key = passkeyRow.find("td:last").text();
return "&passkey=" + key.trim();
}
return "";
};
// ====== hdh
const hdh_imdbval = (element) => {
var t = $(element).find(
"td:nth-child(2) > table > tbody > tr > td:nth-child(2) > table > tbody > tr > td:nth-child(1) > div > a:nth-child(3)"
);
return t.text();
};
const hdh_imdbid = (element) => {
var t = $(element)
.find(
"td:nth-child(2) > table > tbody > tr > td:nth-child(2) > table > tbody > tr > td:nth-child(1) > div > a:nth-child(3)"
)
.attr("href");
if (t) {
var m = t.match(/title\/(tt\d+)/);
}
return m ? m[1] : "";
};
const hdh_douban = (element) => {
var d = $(element).find(
"td:nth-child(2) > table > tbody > tr > td:nth-child(2) > table > tbody > tr > td:nth-child(1) > div > a:nth-child(1)"
);
return d.text();
};
const hdh_seeding = (element) => {
var d = $(element).find("td:nth-child(9)");
return d.text().includes("100%");
};
const hdh_downed = (element) => {
var d = $(element).find("td:nth-child(9)");
// return (d.length > 0 && d.css("color") === 'rgb(0, 128, 0)')
return d.text() != "--";
};
const hdh_passkey = async () => {
let html = await $.get("usercp.php")
// debugger;
// $(html).find("#passkey").css("display", "");
let passkeyRow = $(html).find("#passkey");
if (passkeyRow.length > 0){
let key = passkeyRow.text().replace('(妥善保管,请勿泄露)', '');
return "&passkey=" + key.trim() + "&https=1" ;
}
return "" ;
};
// ====== ptsbao
const ptsbao_imdbval = (element) => {
var t = $(element).find("img[title*='IMDb']")
return t.parent().text();
};
const ptsbao_seeding = (element) => {
var d = $(element).find("div[title]");
return d.length > 0 && d.attr("title").includes("100");
};
const ptsbao_downed = (element) => {
var d = $(element).find("div[title]");
return d.length > 0 && d.attr("title").includes("100");
};
// ====== hddolby
const hddolby_imdbval = (element) => {
var t = $(element).find("img[src*='imdb.png']")
return t.parent().text();
};
const hddolby_douban = (element) => {
var d = $(element).find("img[src='douban.png']");
return d.parent().text();
};
const hddolby_imdbid = (element) => {
var t = $(element)
.find(
"td:nth-child(2) > table > tbody > tr > td:nth-child(2) > table > tbody > tr > td:nth-child(1) > div > a:nth-child(3)"
)
.attr("href");
if (t) {
var m = t.match(/title\/(tt\d+)/);
}
return m ? m[1] : "";
};
const hddolby_seeding = (element) => {
var d = $(element).find("td:nth-child(9)");
return d.text().includes("100%");
};
const hddolby_downed = (element) => {
var d = $(element).find("td:nth-child(9)");
// return (d.length > 0 && d.css("color") === 'rgb(0, 128, 0)')
return d.text().includes("Noseed");
};
const hddolby_passkey = async () => {
let html = await $.get("usercp.php");
let passkeyRow = $(html).find('tr:contains("密钥"):last');
if (passkeyRow.length > 0) {
var key = passkeyRow.find("td:last").text();
return "&passkey=" + key.trim();
}
return "";
};
//===== hd4fans
const hd4fans_seeding = (element) => {
var s = $(element).find("div.progress_seeding");
var d = $(element).find("div.progressarea");
return s.length > 0 || d.length > 0;
};
const hd4fans_downed = (element) => {
var d = $(element).find("div.progressarea");
return d.length > 0;
};
const hd4fans_passkey = async () => {
let html = await $.get("usercp.php");
let passkeyRow = $(html).find('tr:contains("密钥"):last');
if (passkeyRow.length > 0) {
var key = passkeyRow.find("td:last").text();
return "&passkey=" + key.trim();
}
return "";
};
//==== hdfans
const hdfans_imdbval = (element) => {
var t = $(element).find("img[title*='imdb']")
return t.parent().text();
};
const hdfans_douban = (element) => {
var d = $(element).find("img[title='douban']");
return d.parent().text();
};
const hdfans_seeding = (element) => {
var s = $(element).find("[title*='leeching']");
var d = $(element).find("[title*='seeding']");
return s.length > 0 || d.length > 0;
};
const hdfans_downed = (element) => {
var d = $(element).find("[title*='inactivity']");
return d && d.length > 0 ;
};
const hdfans_passkey = async () => {
let html = await $.get("usercp.php");
let passkeyRow = $(html).find('tr:contains("密钥"):last');
if (passkeyRow.length > 0) {
var key = passkeyRow.find("td:last").text();
return "&passkey=" + key.trim();
}
return "";
};
//===== pthome
const pthome_imdbval = (element) => {
var t = $(element).find("img[src*='imdb']")
return t.parent().text();
};
const pthome_douban = (element) => {
var d = $(element).find("img[src='douban']");
return d.parent().text();
};
const pthome_imdbid = (element) => {
var t = $(element)
.find(
"td:nth-child(2) > table > tbody > tr > td:nth-child(2) > table > tbody > tr > td:nth-child(1) > div > a:nth-child(3)"
)
.attr("href");
if (t) {
var m = t.match(/title\/(tt\d+)/);
}
return m ? m[1] : "";
};
const pthome_seeding = (element) => {
var d = $(element).find("td:nth-child(9)");
return (d.length > 0 && d.css("color") === 'rgb(0, 128, 0)')
};
const pthome_downed = (element) => {
var d = $(element).find("td:nth-child(9)");
return d.text().includes("100%");
};
// m-team
const mteam_imdbval = (element) => {
var t = $(element).find( "a[href*='imdb']" );
return t.text();
};
const mteam_imdbid = (element) => {
var t = $(element)
.find("a[href*='imdb']" )
.attr("href");
if (t) {
var m = t.match(/title\/(tt\d+)/);
}
return m ? m[1] : "";
};
const mteam_douban = (element) => {
var d = $(element).find("a[href*='douban']");
return d.text();
};
var config = [
{
host: "pterclub.com",
abbrev: "pter",
eleTorTable: "#torrenttable",
eleCurPage: "#outer > table > tbody > tr > td > p:nth-child(4) > font",
eleTorList: "#torrenttable > tbody > tr",
eleTorItem: "table.torrentname > tbody > tr > td:nth-child(1) a",
// eleTorItem: " table > tbody > tr > td > div > div:nth-child(1) > a",
eleTorItemDesc: "table > tbody > tr > td > div > div:nth-child(2) > span",
eleTorItemSize: "> td:nth-child(5)",
eleTorItemSeednum: "> td:nth-child(6)",
eleTorItemAdded: "> td:nth-child(4) > span",
useTitleName: 1,
eleIntnTag: "a.chs_tag-gf",
eleCnLangTag: "a.chs_tag-gy",
eleCnSubTag: "a.chs_tag-sub",
// eleCHNAreaTag: "img.chn",
eleDownLink: "td:nth-child(2) > table > tbody > tr > td > a:first",
eleCatImg: "td:nth-child(1) > a:nth-child(1) > img",
eleDetailTitle: "#top",
filterGY: true,
filterZZ: true,
funcIMDb: pter_imdbval,
funcIMDbId: pter_imdbid,
funcDouban: pter_douban,
funcSeeding: pter_seeding,
funcDownloaded: pter_downed,
funcGetPasskey: skip_passkey,
},
{
host: "chddiy.xyz",
abbrev: "chd",
eleTorTable: "#outer > table > tbody > tr > td > table",
eleCurPage: "#outer > table > tbody > tr > td > p:nth-child(3) > font",
eleTorList: "#outer > table > tbody > tr > td > table > tbody > tr",
eleTorItem: "td:nth-child(2) > table > tbody > tr > td:nth-child(1) > a",
eleTorItemDesc:
"td:nth-child(2) > table > tbody > tr > td:nth-child(1) > font",
eleTorItemSize: "> td:nth-child(5)",
eleTorItemSeednum: "> td:nth-child(6)",
eleTorItemAdded: "td:nth-child(4) > span",
useTitleName: 1,
eleIntnTag: "div.tag-gf",
eleCnLangTag: "div.tag-gy",
eleCnSubTag: "div.tag-sub",
eleDownLink:
"td:nth-child(2) > table > tbody > tr > td:nth-child(2) > a:nth-child(1)",
eleCatImg: "td:nth-child(1) > a:nth-child(1) > img",
eleDetailTitle: "#top",
filterGY: true,
filterZZ: true,
funcIMDb: chd_imdb,
funcIMDbId: not_supported,
funcDouban: not_supported,
funcSeeding: chd_seeding,
funcDownloaded: chd_downed,
funcGetPasskey: chd_passkey,
},
{
host: "chdbits.co",
abbrev: "chd",
eleTorTable: "#outer > table > tbody > tr > td > table",
eleCurPage: "#outer > table > tbody > tr > td > p:nth-child(3) > font",
eleTorList: "#outer > table > tbody > tr > td > table > tbody > tr",
eleTorItem: "td:nth-child(2) > table > tbody > tr > td:nth-child(1) > a",
eleTorItemDesc:
"td:nth-child(2) > table > tbody > tr > td:nth-child(1) > font",
eleTorItemSize: "> td:nth-child(5)",
eleTorItemSeednum: "> td:nth-child(6)",
eleTorItemAdded: "td:nth-child(4) > span",
useTitleName: 1,
eleIntnTag: "div.tag-gf",
eleCnLangTag: "div.tag-gy",
eleCnSubTag: "div.tag-sub",
eleDownLink:
"td:nth-child(2) > table > tbody > tr > td:nth-child(2) > a:nth-child(1)",
eleCatImg: "td:nth-child(1) > a:nth-child(1) > img",
eleDetailTitle: "#top",
filterGY: true,
filterZZ: true,
funcIMDb: chd_imdb,
funcIMDbId: not_supported,
funcDouban: not_supported,
funcSeeding: chd_seeding,
funcDownloaded: chd_downed,
funcGetPasskey: chd_passkey,
},
{
host: "audiences.me",
abbrev: "aud",
eleTorTable: "#torrenttable",
eleCurPage: "#outer > table > tbody > tr > td > p:nth-child(2) > font",
eleTorList: "#torrenttable > tbody > tr",
eleTorItem:
"td.rowfollow.torrents-box > div.torrents-name > table > tbody > tr > td:nth-child(1) > a",
eleTorItemDesc:
"td > div.torrents-name > table > tbody > tr > td:nth-child(1) > span",
eleTorItemSize: "> td:nth-child(5)",
eleTorItemSeednum: "> td:nth-child(6)",
eleTorItemAdded: "> td:nth-child(4) > span",
useTitleName: 1,
eleIntnTag: "span.tgf",
eleCnLangTag: "span.tgy",
eleCnSubTag: "span.tzz",
eleDownLink:
"td > div.torrents-name > table > tbody > tr > td:nth-child(2) > table > tbody > tr > td:nth-child(2) > a:nth-child(1)",
eleCatImg: "td:nth-child(1) > a > img",
eleDetailTitle: "#top",
filterGY: true,
filterZZ: true,
funcIMDb: ade_imdbval,
funcIMDbId: ade_imdbid,
funcDouban: ade_douban,
funcSeeding: ade_seeding,
funcDownloaded: ade_downed,
funcGetPasskey: ade_passkey,
// eleTorDetailTable: "tr:contains('副标题'):last",
},
{
host: "sunnypt.top",
abbrev: "sunny",
eleTorTable: "table.torrents",
eleCurPage: "#outer > table > tbody > tr > td > p:nth-child(4) > font:nth-child(4) > b",
eleTorList: "table.torrents > tbody > tr",
eleTorItem: "table.torrentname > tbody > tr > td:nth-child(2) > a",
eleTorItemDesc: "table.torrentname > tbody > tr > td:nth-child(2)",
eleTorItemSize: "> td:nth-child(5)",
eleTorItemSeednum: "> td:nth-child(6)",
eleTorItemAdded: "td:nth-child(4) > span",
useTitleName: 1,
eleIntnTag: 'span:contains("官组")',
eleCnLangTag: 'span:contains("国语")',
eleCnSubTag: 'span:contains("中字")',
eleDownLink:
"table.torrentname > tbody > tr > td:nth-child(4) > a:nth-child(1)",
eleCatImg: "td:nth-child(1) > a > img",
eleDetailTitle: "#top",
filterGY: true,
filterZZ: true,
funcIMDb: rl_imdbval,
funcIMDbId: not_supported,
funcDouban: rl_douban,
funcSeeding: rl_seeding,
funcDownloaded: rl_downed,
funcGetPasskey: rl_passkey,
},
{
host: "ourbits.club",
abbrev: "ob",
eleTorTable: "#torrenttable",
eleCurPage: "#outer > table > tbody > tr > td > p:nth-child(7) > font",
eleTorList: "#torrenttable > tbody > tr",
eleTorItem: "td:nth-child(2) > table > tbody > tr > td:nth-child(1) > a",
eleTorItemDesc: "td:nth-child(2) > table > tbody > tr > td:nth-child(1)",
eleTorItemSize: "> td:nth-child(5)",
eleTorItemSeednum: "> td:nth-child(6)",
eleTorItemAdded: "td:nth-child(4) > span",
useTitleName: 1,
eleIntnTag: "span.tag-gf",
eleCnLangTag: "span.tag-gy",
eleCnSubTag: "span.tag-zz",
eleDownLink:
"td:nth-child(2) > table > tbody > tr > td:nth-child(5) > a:nth-child(1)",
eleCatImg: "td:nth-child(1) > a:nth-child(1) > img",
eleDetailTitle: "#top",
filterGY: true,
filterZZ: true,
funcIMDb: ob_imdbval,
funcIMDbId: ob_imdbid,
funcDouban: ob_douban,
funcSeeding: ob_seeding,
funcDownloaded: ob_downed,
funcGetPasskey: ob_passkey,
},
{
host: "leaves.red",
abbrev: "rl",
eleTorTable: "table.torrents",
eleCurPage: "#outer > table > tbody > tr > td > p:nth-child(4) > font:nth-child(4) > b",
eleTorList: "table.torrents > tbody > tr",
eleTorItem: "table.torrentname > tbody > tr > td:nth-child(2) > a",
eleTorItemDesc: "table.torrentname > tbody > tr > td:nth-child(2)",
eleTorItemSize: "> td:nth-child(5)",
eleTorItemSeednum: "> td:nth-child(6)",
eleTorItemAdded: "td:nth-child(4) > span",
useTitleName: 1,
eleIntnTag: 'span:contains("官组")',
eleCnLangTag: 'span:contains("国语")',
eleCnSubTag: 'span:contains("中字")',
eleDownLink:
"table.torrentname > tbody > tr > td:nth-child(4) > a:nth-child(1)",
eleCatImg: "td:nth-child(1) > a > img",
eleDetailTitle: "#top",
filterGY: true,
filterZZ: true,