forked from hobbyfang/javOldDriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JavOldDriver.user.js
2542 lines (2445 loc) · 125 KB
/
JavOldDriver.user.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 JAV老司机
// @namespace https://sleazyfork.org/zh-CN/users/25794
// @version 3.4.0
// @supportURL https://sleazyfork.org/zh-CN/scripts/25781/feedback
// @source https://github.com/hobbyfang/javOldDriver
// @description JAV老司机神器,支持各Jav老司机站点。拥有高效浏览Jav的页面排版,JAV高清预览大图,JAV列表无限滚动自动加载,合成“挊”的自动获取JAV磁链接,一键自动115离线下载。。。。没时间解释了,快上车!
// @author Hobby
// @require https://cdn.jsdelivr.net/npm/jquery@2.2.4/dist/jquery.min.js
// @require https://cdn.jsdelivr.net/npm/lovefield@2.1.12/dist/lovefield.min.js
// @require https://cdn.jsdelivr.net/npm/sweetalert2@9
// @resource icon https://cdn.jsdelivr.net/gh/hobbyfang/javOldDriver@master/115helper_icon_001.jpg
// @include *://*javlibrary.com/*
// @include *://*javlib.com/*
// @include *://*javbus.com/*
// @include *://tellme.pw/avsox
// @include *://tellme.pw/avmoo
// @include *://115.com/*
// @include *://onejav.com/*
// @include *://*jav321.com/video/*
// @include *://*/vl_update*
// @include *://*/vl_newrelease*
// @include *://*/vl_newentries*
// @include *://*/vl_mostwanted*
// @include *://*/vl_bestrated*
// @include *://*/vl_genre*
// @include *://*/vl_star*
// @include *://*/?v=jav*
// @include *://*/mv_owned*
// @include *://*/mv_watched*
// @include *://*/mv_wanted*
// @include *://*/mv_visited*
// @include *://www.*bus*/*
// @include *://www.*dmm*/*
// @include *://*/movie/*
// @include *://*.com/cn*
// @include *://*.com/tw*
// @include *://*.com/ja*
// @include *://*.com/en*
// @run-at document-idle
// @grant GM_xmlhttpRequest
// @grant GM_addStyle
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_deleteValue
// @grant GM_notification
// @grant GM_setClipboard
// @grant GM_getResourceURL
// @grant GM_registerMenuCommand
// @grant GM_info
// @connect *
// @copyright hobby 2016-12-18
// 大陆用户推荐Chrome(V52+) + Tampermonkey(必须扩展) + V2ray/ShadowsocksR(代理) + Proxy SwitchyOmega(扩展)的环境下配合使用。
// 上车请使用chrome浏览器,其他浏览器的问题本人不支持发现和修复相关问题。
// 注意:2.0在每个版本号更新后,javlibrary每个不同域名站点在登录javlibrary的情况下,都会分别首次运行此脚本。
// 根据电脑性能及访问网速情况不同,正常能在1分钟以内(以5000个车牌量为例)缓存个人数据到本地浏览器中.
// 此目的用于过滤个人已阅览过的内容提供快速判断,目前个人图书馆账号的想要、看过、拥有及最新浏览过的番号为已阅数据依据。
// 目前在同步过程中如果浏览器当前页面不在javlibrary站点或者浏览器在后台,同步会被暂停或中止,需注意.
// 如果不登录javlibrary或同版本号已经同步过,就不会运行同步,那么则无此影响.
// 油猴脚本技术交流:https://t.me/hobby666
// v3.4.0 针对JVR影片查找资源的需求,结合javlib站的进阶搜寻中多重搜寻来过滤VR资源,增加了javdb站做为jav磁链接下载来源。
// 修复了预览图失效的问题。
// v3.3.7 修复了javbus女优名乱码的问题。
// v3.3.6 修复了预览图失效的问题。
// v3.3.5 修复了已知问题。
// v3.3.4 修复blogjav站点改版后的预览图,优化了部分115在线播放查找识别问题。
// v3.3.3 预览图备用站更换成javstore。
// v3.3.2 修复了已知问题。
// v3.3.1 修复备用预览图问题。修复javbus收藏女优列表排版问题。
// v3.3.0 新增图书馆浏览时根据115在线播放来同步图书馆的已拥有功能(建议登录,不然会弹窗提示)。
// v3.2.0 新增javarchive站的预览图做备用,当blogjav预览图无法正常读取时使用。
// 优化图书馆缓存个人数据的同步效率(60秒内可完成)。优化图书馆站点瀑布流列表排版。修复了部分115在线播放查找识别问题。
// v3.1.10 修复了部分115在线播放跳转首页问题。
// v3.1.9 修复了已知问题。
// v3.1.8 修复了磁链选项undefined问题。
// v3.1.7 增加脚本设置功能,支持磁链地址失效可自己更换。更新最新磁链地址。
// v3.1.6 更换失效的磁链地址。另btdig,nayy,torrentkitty站点需科学上网,其中btdig还需手工验证非机器访问。
// v3.1.5 增加过滤评分及排序时排除10分的番号,更换失效的磁链地址。
// v3.1.4 更换失效的磁链地址。
// v3.1.3 更换失效的磁链地址。
// v3.1.2 优化javbus/avmoo/avsox步兵瀑布流排版。
// v3.1.1 更新了磁链站点。
// v3.1.0 优化javbus/avmoo/avsox瀑布流排版。
// v3.0.5 排版做了一些微调。
// v3.0.4 屏蔽了失效的磁链站点。
// v3.0.0 增加115在线播放的关联入口。同时本代码重新梳理及优化。
// v2.3.0 增加jav321网站内容排版的支持,增加查找已登录115网盘是否拥有当前番号显示。
// v2.2.2 修复了已知问题。
// v2.2.0 增加onejav网站内容排版的支持,热门Jav预览搜集更省时省力。更换两个磁链资源新地址。
// v2.1.5 增加点击番号完成复制功能。
// v2.1.3 增加btdigg磁链资源站点。修复了已知问题。
// v2.1.1 增加jav站点瀑布流控制按钮功能。
// v2.1.0 增加javbus站内磁链列表的复制、115离线的快捷键功能。
// v2.0.7 增加一种情况Jav列表排序功能支持(仅javlib)。
// v2.0.5 增加Jav列表“按评分排序”、“按时间排序”功能(仅javlib),及更新Jav站点域名。
// v2.0.0 增加自动同步个人数据缓存到本地,jav列表能识别个人已阅览过的内容(需登录javlibray),针对javlibrary的高评价栏目,增加过滤"不看我阅览过"功能。
// v1.2.0 针对javlibrary的高评价栏目,增加过滤“只看当前月份”、“只看近两月份”功能。另默认此栏目近两月份的内容增加背景颜色区分。
// v1.2.0 更新了合成“挊”脚本的更多网站的支持,感谢作者thunderhit,同时修复原脚本部分网站功能失效问题。
// v1.1.0 优化更新了JAV列表无限滚动自动加载的代码,增加JAV列表中显示"发行日期"和"评分"的排版,以及修复了已知问题。
// v1.0.3 优化了高清预览大图的获取。
// v1.0.2 优化了javlibrary排版,做了最低分辨率1280x800的排版适配调整,及修复了已知问题。
// v1.0.0 支持javlibrary.com、javbus.com、avmo.pw、avso.pw等老司机站点,第一版发布。
// ==/UserScript==
/* jshint -W097 */
(function () {
'use strict';
// 115用户ID
let jav_userID = GM_getValue('jav_user_id', 0);
// icon图标
let icon = GM_getResourceURL('icon');
// 瀑布流状态:1:开启、0:关闭
let waterfallScrollStatus = GM_getValue('scroll_status', 1);
// 当前网页域名
let domain = location.host;
// 数据库
let javDb;
// 表
let myMovie;
/**
* 公用类
* @Class
*/
var Common = {
/**
* 版本号比较方法
* 传入两个字符串,当前版本号:curV;比较版本号:reqV
* @param curV 当前版本号
* @param reqV 比较版本号
* @returns {boolean} 调用方法举例:compare("3.1.10","3.1.9"),将返回true
*/
compareVersions :function (curV, reqV) {
if (curV && reqV) {
//将两个版本号拆成数字
var arr1 = curV.split('.'),
arr2 = reqV.split('.');
var minLength = Math.min(arr1.length, arr2.length),
position = 0,
diff = 0;
//依次比较版本号每一位大小,当对比得出结果后跳出循环(后文有简单介绍)
while (position < minLength && ((diff = parseInt(arr1[position]) - parseInt(arr2[position])) == 0)) {
position++;
}
diff = (diff != 0) ? diff : (arr1.length - arr2.length);
//若curV大于reqV,则返回true
return diff > 0;
} else {
//输入为空
console.log("版本号不能为空");
return false;
}
},
/**
* 设置cookie
* @param cname 名字
* @param cvalue 值
*/
setCookie: function(cname, cvalue) {
let d = new Date();
d.setTime(d.getTime() + (30*24*60*60*1000));
let expires = "expires="+ d.toUTCString();
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
},
/**
* html文本转换为Document对象 https://jsperf.com/domparser-vs-createelement-innerhtml/3
* @param {String} text
* @returns {Document}
*/
parsetext: function (text) {
try {
let doc = document.implementation.createHTMLDocument('');
doc.documentElement.innerHTML = text;
return doc;
}
catch (e) {
alert('parse error');
}
},
/**
* 判断日期是否最近X个月份的日期
* @param {String} DateStr 日期
* @param {Number} MonthNum 月数(X)
* @returns {boolean}
*/
isLastXMonth: function (DateStr, MonthNum) {
let now = new Date(); //当前日期
let compDate = new Date(DateStr);
let m2 = now.getFullYear() * 12 + now.getMonth();
let m1 = compDate.getFullYear() * 12 + compDate.getMonth();
if ((m2 - m1) < MonthNum) {
return true;
}
return false;
},
/**
* 方法: 通用chrome通知
* @param title
* @param body
* @param icon
* @param click_url
*/
notifiy: function (title, body, icon, click_url) {
var notificationDetails = {
text: body,
title: title,
timeout: 3000,
image: icon,
onclick: function () {
window.open(click_url);
}
};
GM_notification(notificationDetails);
},
/**
* 获取带-的番号
* @param {String} avid 番号如:ABP888
* @returns {String} 带-的番号
*/
getAvCode:function (avid) {
let letter = avid.match(/^[a-z|A-Z]+/gi);
let num = avid.match(/\d+$/gi);
return letter+"-"+num;
},
addImg:function (targetImgUrl, func, isZoom) {
console.log("显示的图片地址:" + targetImgUrl);
//创建img元素,加载目标图片地址
//创建新img元素
let className = "";
if (isZoom != undefined && !isZoom) {
className = "min";
}
let $img = $(`<img name="javRealImg" title="点击可放大缩小 (图片正常时)" class="${className}"></img>`);
$img.attr("src", targetImgUrl);
$img.attr("style", "float: left;cursor: pointer;max-width: 100%;");
//将新img元素插入指定位置
func($img);
},
/**
* 加入AV预览内容图
* @param avid av唯一码
* @param @function func 函数
* @param {boolean} isZoom 是否放大,默认true
*/
addAvImg: function (avid, func, isZoom) {
let p2 = this.getBigPreviewImgUrlFromJavStore(avid);
return new Promise(resolve => {
let p = this.getBigPreviewImgUrlFromBlogjav(avid);
p.then(imgUrl => {
if (imgUrl !== null){
let p = request(imgUrl,"",10000);
p.then((result) => {
if (result.loadstuts && result.finalUrl.search(/removed.png/i) < 0){
GM_deleteValue(`temp_img_url_${avid}`);
this.addImg(imgUrl, func, isZoom);
}
else {
console.log("blogjav获取的图片地址已经被移除或加载失败");
p2.then(url => {
addJavArchiveImg.call(this);
});
}
});
}
else {
p2.then(url => {
addJavArchiveImg.call(this);
});
}
function addJavArchiveImg() {
imgUrl = GM_getValue(`temp_img_url_${avid}`, "");
if (imgUrl === "") {
console.log("没有找到预览图");
//this.addImg("test", func, isZoom);
} else {
GM_deleteValue(`temp_img_url_${avid}`);
this.addImg(imgUrl, func, isZoom);
}
}
});
resolve();
});
},
/**
* 根据番号从blogjav获取大预览图Url
* @param avid av唯一码
* @returns {Promise} 大预览图Url地址
*/
getBigPreviewImgUrlFromBlogjav: function(avid){
return new Promise(resolve => {
//异步请求搜索blogjav.net的番号
let promise1 = request('https://blogjav.net/?s=' + avid, "",15000);
promise1.then((result) => {
return new Promise(resolve => {
if(!result.loadstuts){
console.log("blogjav查找番号出错");
resolve(null);
}
var doc = Common.parsetext(result.responseText);
let a_array = $(doc).find(".entry-title a");
let a = a_array[0];
//如果找到全高清大图优先获取全高清的
for (let i = 0; i < a_array.length; i++) {
var fhd_idx = a_array[i].innerHTML.search(/FHD/i);
if (fhd_idx > 0) {
a = a_array[i];
break;
}
}
resolve(a);
});
}).then(a => {
return new Promise(resolve => {
let targetImgUrl = "";
if (a) {
//异步请求调用内页详情的访问地址
let promise2 = request(a.href,"https://pixhost.to/", 15000);
promise2.then((result) => {
return new Promise(resolve => {
if(!result.loadstuts) resolve(null);
let doc = Common.parsetext(result.responseText);
let img_array = $(doc).find('.entry-content a img[data-lazy-src*="pixhost."]');
//debugger;
//如果找到内容大图
if (img_array.length > 0) {
var new_img_src = $(img_array[0]).data('lazySrc');
targetImgUrl = new_img_src.replace('thumbs', 'images').replace('//t', '//img').replace(/[\?*\"*]/, '');
console.log("blogjav获取的图片地址:" + targetImgUrl);
if(targetImgUrl.length === 0){
resolve(null);
}
else {
resolve(targetImgUrl);
}
}
else {
resolve(null);
}
});
}).then( imgUrl => {
resolve(imgUrl);
});
}
else{
resolve(null);
}
});
}).then(imgUrl => {
resolve(imgUrl);
});
});
},
/**
* 根据番号从JavArchive获取大预览图Url,并且缓存到GM中
* @param avid av唯一码
*/
getBigPreviewImgUrlFromJavArchive: function(avid){
//异步请求搜索JavArchive的番号
GM_setValue(`temp_img_url_${avid}`, "");
let promise1 = request('https://javarchive.com/?s=' + avid);
return promise1.then((result) => {
if (!result.loadstuts) return ;
let doc = Common.parsetext(result.responseText);
// 查找包含avid番号的a标签数组,忽略大小写
let a_array = $(doc).find(`.post-meta .thumb a[title*='${avid}'i]`);
let a = a_array[0];
//如果找到全高清大图优先获取全高清的
for (let i = 0; i < a_array.length; i++) {
let fhd_idx = a_array[i].title.search(/Uncensored|FHD/i);
//debugger;
if (fhd_idx >= 0) {
a = a_array[i];
break;
}
}
if (a) {
//异步请求调用内页详情的访问地址
let promise2 = request(a.href,"http://pixhost.to/");
return promise2.then((result) => {
if(!result.loadstuts) return;
let doc = Common.parsetext(result.responseText);
let img_array = $(doc).find('.post-content .external img[alt*=".th"]');
if (img_array.length > 0) {
let imgUrl = img_array[0].src;
imgUrl = imgUrl ? imgUrl : img_array[0].dataset.src;
imgUrl = imgUrl.replace('pixhost.org', 'pixhost.to').replace('.th', '')
.replace('thumbs', 'images').replace('//t', '//img')
.replace(/[\?*\"*]/, '').replace('https', 'http');
console.log("javarchive获取的图片地址:" + imgUrl);
GM_setValue(`temp_img_url_${avid}`,imgUrl);
return Promise.resolve(imgUrl);
}
});
}
});
},
/**
* 根据番号从JavStore获取大预览图Url,并且缓存到GM中
* @param avid av唯一码
*/
getBigPreviewImgUrlFromJavStore: function(avid){
//异步请求搜索JavStore的番号
GM_setValue(`temp_img_url_${avid}`, "");
let promise1 = request(`https://javstore.net/search/${avid}.html`);
return promise1.then((result) => {
if (!result.loadstuts) return ;
let doc = Common.parsetext(result.responseText);
// 查找包含avid番号的a标签数组,忽略大小写
let a_array = $(doc).find(`.news_1n li h3 span a[title*='${avid}'i]`);
let a = a_array[0];
//如果找到全高清大图优先获取全高清的
for (let i = 0; i < a_array.length; i++) {
let fhd_idx = a_array[i].title.search(/Uncensored|FHD/i);
if (fhd_idx >= 0) {
a = a_array[i];
break;
}
}
if (a) {
//异步请求调用内页详情的访问地址
let promise2 = request(`https://javstore.net${a.pathname}`,"http://pixhost.to/");
return promise2.then((result) => {
if(!result.loadstuts) return;
let doc = Common.parsetext(result.responseText);
let img_array = $(doc).find('.news a img[alt*=".th"]');
if (img_array.length > 0) {
let imgUrl = img_array[0].src;
imgUrl = imgUrl ? imgUrl : img_array[0].dataset.src;
imgUrl = imgUrl.replace('pixhost.org', 'pixhost.to').replace('.th', '')
.replace('thumbs', 'images').replace('//t', '//img')
.replace(/[\?*\"*]/, '');
console.log("javarchive获取的图片地址:" + imgUrl);
GM_setValue(`temp_img_url_${avid}`,imgUrl);
return Promise.resolve(imgUrl);
}
});
}
});
},
/**
* 查询115网盘是否拥有番号
* @param javId 番号
* @param callback 回调函数
*/
search115Data: function (javId, callback) {
//异步请求搜索115番号 //115查询
let javId2 = javId.replace(/(-)/g, ""); //把番号-去除,例如ABC-123 =》 ABC123
let javId3 = javId.replace(/(-)/g, "00"); //把番号-替换为00,例如CCVR-065 =》 CCVR00065
let javId4 = javId.replace(/(-)/g, "-0"); //把番号-替换为-0,例如DSVR-584 =》 DSVR-0584
//保存查询关键词参数
GM_setValue("115_search_var",`${javId}|${javId2}|${javId3}|${javId4}`);
let promise1 = request(`https://webapi.115.com/files/search?search_value=${javId}%20${javId2}%20${javId3}%20${javId4}&format=json`);
promise1.then((result) => {
let resultJson = JSON.parse(result.responseText);
if(resultJson.count > 0) {
let pickcode = '';
let reg = new RegExp(GM_getValue("115_search_var"), "gi");
for (let i = 0; i < resultJson.data.length; i++) {
let row = resultJson.data[i];
if(row.play_long && (row.n.search(reg) >= 0)){//iv vdi ico play_long
pickcode = row.pc;
callback(true,`https://v.anxia.com/?pickcode=${pickcode}`,pickcode);
return;
}
}
}
callback(false,null,null);
});
},
getSchemaBuilder: function() {
// 构造jav库
let ds = lf.schema.create('jav_v2', 5);
// 创建MyMovie表
ds.createTable('MyMovie').
//addColumn('id', lf.Type.INTEGER).
//索引编码 如javlikqu54
addColumn('index_cd',lf.Type.STRING).
//识别编码 如CHN-141
addColumn('code', lf.Type.STRING).
//缩略图路径
addColumn('thumbnail_url', lf.Type.STRING).
//片名
addColumn('movie_name', lf.Type.STRING).
//演员
addColumn('actor', lf.Type.STRING).
//封面图路径
addColumn('cover_img_url', lf.Type.STRING).
//预览图路径
addColumn('prev_img_url', lf.Type.STRING).
//发布日期
addColumn('release_date', lf.Type.STRING).
//评分
addColumn('score', lf.Type.STRING).
//片长(分钟)
addColumn('duration', lf.Type.INTEGER).
//导演
addColumn('director', lf.Type.STRING).
//制作商
addColumn('maker', lf.Type.STRING).
//发行商
addColumn('publisher', lf.Type.STRING).
//加入时间
addColumn('add_time', lf.Type.STRING).
//115的pickcode
addColumn('pick_code', lf.Type.STRING).
//是否已阅
addColumn('is_browse', lf.Type.BOOLEAN).
//是否想要 0:否 1:是 2:未知
addColumn('is_want', lf.Type.INTEGER).
//是否看过 0:否 1:是 2:未知
addColumn('is_seen', lf.Type.INTEGER).
//是否拥有 0:否 1:是 2:未知
addColumn('is_have', lf.Type.INTEGER).
//是否同步
addColumn('is_sync', lf.Type.BOOLEAN).
//定义主键
addPrimaryKey(['index_cd']).
//定义索引
addIndex('idxaddtime', ['add_time'], false, lf.Order.DESC);
return ds;
},
};
// 是否新版本
let isNewVersion = Common.compareVersions(GM_info.script.version,GM_getValue("javOldDriver_version","0.0.1"));
// 磁链访问地址初始化
if (isNewVersion || GM_getValue('btsow_url', undefined) === undefined) {
GM_setValue('btsow_url', 'btsow.one');
}
if (isNewVersion || GM_getValue('btdig_url', undefined) === undefined) {
GM_setValue('btdig_url', 'www.btdig.com');
}
if (isNewVersion || GM_getValue('nyaa_url', undefined) === undefined) {
GM_setValue('nyaa_url', 'sukebei.nyaa.si');
}
if (isNewVersion || GM_getValue('torrentkitty_url', undefined) === undefined) {
GM_setValue('torrentkitty_url', 'www.torrentkitty.app');
}
if (isNewVersion || GM_getValue('javdb_url', undefined) === undefined) {
GM_setValue('javdb_url', 'javdb.com');
}
GM_setValue("javOldDriver_version",GM_info.script.version);
GM_registerMenuCommand('设置', () => {
let scroll_true = '';
if (GM_getValue('scroll_status', 1) !== 0){
GM_setValue('scroll_status', 1);
scroll_true = "checked";
}
let dom = `<div>
<label class="tm-setting">javlib/javbus开启瀑布流(自动读下一页)<input type="checkbox" id="scroll_true" ${scroll_true} class="tm-checkbox"></label>
<label class="tm-setting">btsow网址<input type="text" id="btsow_url" class="tm-text" value="${GM_getValue('btsow_url')}"></label>
<label class="tm-setting">btdig网址<input type="text" id="btdig_url" class="tm-text" value="${GM_getValue('btdig_url')}"></label>
<label class="tm-setting">nyaa网址<input type="text" id="nyaa_url" class="tm-text" value="${GM_getValue('nyaa_url')}"></label>
<label class="tm-setting">torrentkitty网址<input type="text" id="torrentkitty_url" class="tm-text" value="${ GM_getValue('torrentkitty_url')}"></label>
<label class="tm-setting">javdb网址<input type="text" id="javdb_url" class="tm-text" value="${ GM_getValue('javdb_url')}"></label>
</div>`;
let $dom = $(dom);
Swal.fire({
title: '脚本设置',
html: $dom[0],
confirmButtonText: '保存'
}).then((result) => {
if (result.value){
if($('#scroll_true')[0].checked){
GM_setValue('scroll_status', 1);
}
else{
GM_setValue('scroll_status', 0);
}
GM_setValue('btsow_url', $('#btsow_url').val());
GM_setValue('btdig_url', $('#btdig_url').val());
GM_setValue('nyaa_url', $('#nyaa_url').val());
GM_setValue('torrentkitty_url', $('#torrentkitty_url').val());
GM_setValue('javdb_url', $('#javdb_url').val());
history.go(0);
}
})
});
/**
* 对Date的扩展,将 Date 转化为指定格式的String
* 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符,/';
* 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字)
* 例子:(new Date()).Format("yyyy-MM-dd hh:mm:ss.S") ==> 2006-07-02 08:09:04.423f
* (new Date()).Format("yyyy-M-d h:m:s.S") ==> 2006-7-2 8:9:4.18
* @param fmt 日期格式
* @returns {void | string} 格式化后的日期字符串
*/
Date.prototype.Format = function (fmt) { //author: meizz
var o = {
"M+": this.getMonth() + 1, //月份
"d+": this.getDate(), //日
"h+": this.getHours(), //小时
"m+": this.getMinutes(), //分
"s+": this.getSeconds(), //秒
"q+": Math.floor((this.getMonth() + 3) / 3), //季度
"S": this.getMilliseconds() //毫秒
};
if (/(y+)/.test(fmt))
fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
for (var k in o)
if (new RegExp("(" + k + ")").test(fmt))
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
return fmt;
};
/**
* 多线程异步队列 依赖 jQuery 1.8+
* @n {Number} 正整数, 线程数量
*/
function Queue (n) {
n = parseInt(n, 10);
return new Queue.prototype.init( (n && n > 0) ? n : 1 )
}
Queue.prototype = {
init: function (n) {
this.threads = [];
this.taskList = [];
while (n--) {
this.threads.push(new this.Thread)
}
},
/**
* @callback {Fucntion} promise对象done时的回调函数,它的返回值必须是一个promise对象
*/
push: function (callback) {
if (typeof callback !== 'function') return;
var index = this.indexOfIdle();
if (index != -1) {
this.threads[index].idle(callback);
//try { console.log('Thread-' + (index+1) + ' accept the task!') } catch (e) {}
}
else {
this.taskList.push(callback);
for (var i = 0, l = this.threads.length; i < l; i++) {
(function(thread, self, id){
thread.idle(function(){
if (self.taskList.length > 0) {
//try { console.log('Thread-' + (id+1) + ' accept the task!') } catch (e) {}
let promise = self.taskList.shift()(); // 正确的返回值应该是一个promise对象
return promise.promise ? promise : $.Deferred().resolve().promise();
} else {
return $.Deferred().resolve().promise();
}
})
})(this.threads[i], this, i);
}
}
},
indexOfIdle: function () {
var threads = this.threads,
thread = null,
index = -1;
for (var i = 0, l = threads.length; i < l; i++) {
thread = threads[i];
if (thread.promise.state() === 'resolved') {
index = i;
break;
}
}
return index;
},
Thread: function () {
this.promise = $.Deferred().resolve().promise();
this.idle = function (callback) {
this.promise = this.promise.then(callback)
}
}
};
Queue.prototype.init.prototype = Queue.prototype;
let main = { // todo
//av信息查询类
//avsox|avmoo
jav: {
type: 0,
re: /.*movie.*/,
vid: function () {
return $('.header_hobby')[0].nextElementSibling.getAttribute("avid");
},
proc: function () {
var divE = $("div[class='col-md-3 info']")[0];
$(divE).after(main.cur_tab);
}
},
javbus: {
type: 0,
re: /bus|dmm/,
vid: function () {
var a = $('.header_hobby')[0].nextElementSibling;
return a ? a.getAttribute("avid") : '';
},
proc: function () {
var divE = $("div[class='col-md-3 info']")[0];
$(divE).after(main.cur_tab);
}
},
javlibrary: {
type: 0,
re: /.*\?v=jav.*/,
vid: function () {
return $('#video_id')[0].getElementsByClassName('text')[0].getAttribute("avid");
},
proc: function () {
//去十八岁警告
Common.setCookie("over18", 18);
$('.socialmedia').remove();
GM_addStyle(`
#video_info {text-align: left;font: 14px Arial;min-width: 230px;max-width: 250px;padding: 0px 0px 0px 0px;}
#video_jacket_info {overflow: hidden;} //table-layout: fixed;
#coverimg {vertical-align: top;overflow: hidden;max-width: 50%;}
#javtext {vertical-align: top;width: 250px;}
#video_info td.header {width: 75px;}
#video_info td.icon {width: 0px;}
#content {padding-top: 0px;}
`);
var tdE = $("td[style='vertical-align: top;']")[0];
tdE.id = "coverimg";
$("td[style='vertical-align: top;']")[1].id = 'javtext';
$('#leftmenu').remove();
$('#rightcolumn').attr("style", "margin: 0px 0px 0px 0px;width: 100%;padding: initial;");
$(tdE.parentElement).append('<td id="hobby" style="vertical-align: top;"></td>');
$('#hobby').append(main.cur_tab);
}
},
};
function request(url , referrerStr, timeoutInt) {
return new Promise((resolve,reject) => {
console.log(`发起网址请求:${url}`);
GM_xmlhttpRequest({
url,
method: 'GET',
headers: {
"Cache-Control": "no-cache",
referrer: referrerStr
},
timeout: timeoutInt > 0 ? timeoutInt : 20000,
onload: response => { //console.log(url + " reqTime:" + (new Date() - time1));
response.loadstuts = true;
resolve(response);
},
onabort: response =>{
console.log(url + " abort");
response.loadstuts = false;
resolve(response);
},
onerror: response =>{
console.log(url + " error");
console.log(response);
response.loadstuts = false;
resolve(response);
},
ontimeout: response =>{
console.log(`${url} ${timeoutInt}ms timeout`);
response.loadstuts = false;
response.finalUrl = url;
resolve(response);
},
});
});
}
// 挊
let main_keys = Object.keys(main); //下面的不要出现
main.cur_tab = null;
main.cur_vid = '';
// 瀑布流脚本使用类
class Lock {
constructor(d = false) {
this.locked = d;
}
lock() {
this.locked = true;
}
unlock() {
this.locked = false;
}
}
// 第三方脚本调用
var thirdparty = {
// javbus详情页增加多类别联合查找功能
busTypeSearch : () => {
let se = () => {
let curGenres = '', a = document.querySelectorAll('input[name="gr_sel"]:checked'), arr = [];
a.forEach(e => {
arr.push(e.value);
});
//console.log(arr.join('-'));
arr = arr.join('-');
if (arr[0]) {
window.location.href = 'genre/' + arr;
}
};
let CreateSearch = () => { //get <p>
let p = document.querySelector('span.genre > a[href*="/genre/"]');
if (!p) return;
p = p.parentNode.parentNode;
p.querySelectorAll('a').forEach(e => {
let i = document.createElement('input'), val = e.href.split('/');
//https://www.javbus.com/genre/4 --> get > 4
val = val[val.length - 1];
i.setAttribute('type', 'checkbox');
i.setAttribute('name', 'gr_sel');
i.setAttribute('value', val);
i.setAttribute('style', 'margin-right: 5px;');
e.parentNode.insertBefore(i, e);
});
let a = document.createElement('a');
a.setAttribute('style', 'cursor: pointer; display: block; color: blue;');
a.textContent = '搜索';
p.appendChild(a);
a.addEventListener('click', se, false);
};
CreateSearch();
},
// 登录115执行脚本,自动离线下载准备步骤
login115Run: function () {
if (location.host.indexOf('115.com') >= 0) {
jav_userID = GM_getValue('jav_user_id', 0); //115用户ID缓存
//获取115ID
if (jav_userID === 0) {
if (location.host.indexOf('115.com') >= 0) {
if (typeof (window.wrappedJSObject.user_id) != 'undefined') {
jav_userID = window.wrappedJSObject.user_id;
GM_setValue('jav_user_id', jav_userID);
alert('115登陆成功!');
return;
}
} else {
//alert('请先登录115账户!');
Common.notifiy("115还没有登录",
'请先登录115账户后,再离线下载!',
icon,
'http://115.com/?mode=login'
);
GM_setValue('jav_user_id', 0);
}
}
if (location.host.indexOf('115.com') >= 0) {
console.log('jav老司机:115.com,尝试获取userid.');
jav_userID = GM_getValue('jav_user_id', 0);
//debugger;
if (jav_userID !== 0) {
console.log("jav老司机: 115账号:" + jav_userID + ",无需初始化.");
return false;
}
jav_userID = $.cookie("OOFL");
console.log("jav老司机: 115账号:" + jav_userID);
if (!jav_userID) {
console.log("jav老司机: 尚未登录115账号");
return false;
} else {
console.log("jav老司机: 初始化成功");
Common.notifiy('老司机自动开车', '登陆初始化成功,赶紧上车把!', icon, "");
GM_setValue('jav_user_id', jav_userID);
}
return false;
}
}
},
// 瀑布流脚本
waterfallScrollInit: function () {
var w = new thirdparty.waterfall({});
// javbus.com、avmo.pw、avso.pw
var $pages = $('div#waterfall div.item');
if ($pages.length) {
$pages[0].parentElement.parentElement.id = "waterfall_h";
// javbus.com
if ($("footer:contains('JavBus')").length) {
w = new thirdparty.waterfall({
next: 'a#next',
item: 'div#waterfall div.item',
cont: '.masonry',
pagi: '.pagination-lg',
});
}
//avmo.pw、avso.pw
if ((/(AVMOO|AVSOX)/g).test(document.title)) {
w = new thirdparty.waterfall({
next: 'a[name="nextpage"]',//nextpage
item: 'div#waterfall div.item',
cont: '#waterfall',
pagi: '.pagination',
});
}
}
// javlibrary
var $pages2 = $('div.videos div.video');
if ($pages2.length) {
GM_addStyle(`
.videothumblist .videos .video {height: 270px;padding: 0px;margin: 4px;}
.videothumblist .videos .video .title {height: 2.8em;}
.id {height: 1.3em;overflow: hidden;}
`);
$pages2[0].parentElement.id = "waterfall";
w = new thirdparty.waterfall({
next: 'a[class="page next"]',
item: 'div.videos div.video',
cont: '#waterfall',
pagi: '.page_selector',
});
}
// onejav
var $pages3 = $('div.container div.card.mb-3');
if ($pages3.length) {
$pages3[0].parentElement.id = "waterfall";
w = new thirdparty.waterfall({
next: 'a.pagination-next.button.is-primary',
item: 'div.container div.card.mb-3',
cont: '#waterfall',
pagi: '.pagination.is-centered',
});
}
w.setSecondCallback(function (cont, elems) {
if (location.pathname.includes('/star/') && elems) {
cont.append(elems.slice(1));
} else {
cont.append(elems);
}
});
w.setThirdCallback(function (elems) {
// hobby mod script
function filerMonth(indexCd_id, dateString) {
//过滤最新X月份的影片
if ($(indexCd_id).context.URL.indexOf("bestrated.php?delete") > 0) {
if ($(indexCd_id).context.URL.indexOf("bestrated.php?deleteOneMonthAway") > 0 && !Common.isLastXMonth(dateString, 1)) {
$(indexCd_id).remove();
}
else if ($(indexCd_id).context.URL.indexOf("bestrated.php?deleteTwoMonthAway") > 0 && !Common.isLastXMonth(dateString, 2)) {
$(indexCd_id).remove();
}
}
}
function filerScore(indexCd_id, score) {
//过滤X评分以下的影片 //if(vid == 'javlikq7qu')debugger;
if ($(indexCd_id).context.URL.indexOf("?delete") > 0) {
if ($(indexCd_id).context.URL.indexOf("delete7down") > 0 && score <= 7.01) {
$(indexCd_id).remove();
}
else if ($(indexCd_id).context.URL.indexOf("delete8down") > 0 && score <= 8.01) {
$(indexCd_id).remove();
}
else if ($(indexCd_id).context.URL.indexOf("delete9down") > 0 && score <= 9.01) {
$(indexCd_id).remove();
}
}
}
function setbgcolor(indexCd_id, dateString) {
// 如果是最近两个月份的影片标上背景色
if ($(indexCd_id).context.URL.indexOf("bestrated") > 0 && Common.isLastXMonth(dateString, 2)) {
//$(indexCd_id).css("background-color", "blanchedalmond");
$('div[class="hobby_add"]', $(indexCd_id)).css("background-color", "#ffffc9");
//debugger;
}
}
function extCode(indexCd_id, actor, dateString, pingfengString) {
$(indexCd_id).find(".id").append(` ${actor}`);
$(indexCd_id).children("a").append(`<div class='hobby_add'style='color: red;font-size: 14px;'>
${dateString} ${pingfengString}</div>`);
$(indexCd_id).children("a").attr("release_date", dateString);
let s = 0;
let r = Math.random() / 100;
if (pingfengString.replace(/[\\(\\)]/g, "") != '') {
s = r + parseFloat(pingfengString.replace(/[\\(\\)]/g, ""));
} else {
s = 0 + r;
}