-
Notifications
You must be signed in to change notification settings - Fork 283
Expand file tree
/
Copy pathconfig.js
More file actions
1013 lines (954 loc) · 46.5 KB
/
config.js
File metadata and controls
1013 lines (954 loc) · 46.5 KB
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
/**
* 配置管理控制器
*
* 主要功能:
* - 生成和管理drpy-node项目的配置文件
* - 支持多种源类型:DS源、DR2源、Python源、CatVod源
* - 提供配置订阅和健康检查功能
* - 生成解析器、直播源、播放器等配置
* - 处理配置文件的动态生成和缓存
*/
import {readdirSync, readFileSync, writeFileSync, existsSync} from 'fs';
import {readFile} from 'fs/promises';
import path from 'path';
import * as drpyS from '../libs/drpyS.js';
import '../libs_drpy/jinja.js'
import {naturalSort, urljoin, updateQueryString} from '../utils/utils.js'
import {md5} from "../libs_drpy/crypto-util.js";
import {ENV} from "../utils/env.js";
import FileHeaderManager from "../utils/fileHeaderManager.js";
import {extractNameFromCode} from "../utils/python.js";
import {validateBasicAuth, validatePwd} from "../utils/api_validate.js";
import {getSitesMap} from "../utils/sites-map.js";
import {getParsesDict} from "../utils/file.js";
import batchExecute from '../libs_drpy/batchExecute.js';
const {jsEncoder} = drpyS;
/**
* 解析扩展参数字符串
* 尝试将字符串解析为JSON对象或数组,如果解析失败则返回原字符串
* @param {string} str - 待解析的字符串
* @returns {any} 解析后的对象/数组或原字符串
*/
function parseExt(str) {
try {
const parsed = JSON.parse(str);
if (Array.isArray(parsed) || (typeof parsed === 'object' && parsed !== null)) {
return parsed;
}
} catch (e) {
// 忽略错误
}
return str;
}
/**
* 格式化扩展参数用于日志输出
* 将对象或数组转换为JSON字符串,其他类型直接返回
* @param {any} _ext - 扩展参数
* @returns {string} 格式化后的字符串
*/
function logExt(_ext) {
return Array.isArray(_ext) || typeof _ext == "object" ? JSON.stringify(_ext) : _ext
}
/**
* 生成站点配置JSON数据
* 扫描各种类型的源文件并生成统一的配置格式
*
* @param {Object} options - 配置选项对象
* @param {string} options.jsDir - DS源文件目录
* @param {string} options.dr2Dir - DR2源文件目录
* @param {string} options.pyDir - Python源文件目录
* @param {string} options.catDir - CatVod源文件目录
* @param {string} options.configDir - 配置文件目录
* @param {string} options.jsonDir - JSON配置目录
* @param {string} options.subFilePath - 订阅文件路径
* @param {string} options.rootDir - 根目录路径
* @param {string} requestHost - 请求主机地址
* @param {Object|null} sub - 订阅配置对象
* @param {string} pwd - 访问密码
* @returns {Promise<Object>} 包含sites数组和spider配置的对象
*/
async function generateSiteJSON(options, requestHost, sub, pwd) {
const jsDir = options.jsDir;
const dr2Dir = options.dr2Dir;
const pyDir = options.pyDir;
const catDir = options.catDir;
const configDir = options.configDir;
const jsonDir = options.jsonDir;
const subFilePath = options.subFilePath;
const rootDir = options.rootDir;
const files = readdirSync(jsDir);
let valid_files = files.filter((file) => file.endsWith('.js') && !file.startsWith('_')); // 筛选出不是 "_" 开头的 .js 文件
let sort_list = [];
// 获取排序配置文件路径
let sort_file = path.join(path.dirname(subFilePath), `./order_common.html`);
if (!existsSync(sort_file)) {
sort_file = path.join(path.dirname(subFilePath), `./order_common.example.html`);
}
// 处理订阅过滤规则
if (sub) {
if (sub.mode === 0) {
// 包含模式:只保留匹配正则的文件
valid_files = valid_files.filter(it => (new RegExp(sub.reg || '.*')).test(it));
} else if (sub.mode === 1) {
// 排除模式:排除匹配正则的文件
valid_files = valid_files.filter(it => !(new RegExp(sub.reg || '.*')).test(it));
}
// 使用自定义排序文件
if (sub.sort) {
sort_file = path.join(path.dirname(subFilePath), `./${sub.sort}.html`);
if (!existsSync(sort_file)) {
sort_file = path.join(path.dirname(subFilePath), `./${sub.sort}.example.html`);
}
}
}
if (existsSync(sort_file)) {
console.log('sort_file:', sort_file);
let sort_file_content = readFileSync(sort_file, 'utf-8');
// console.log(sort_file_content)
sort_list = sort_file_content.split('\n').filter(it => it.trim()).map(it => it.trim());
// console.log(sort_list);
}
let sites = [];
//以下为自定义APP模板部分
try {
const templateConfigPath = path.join(jsonDir, './App模板配置.json');
if (existsSync(templateConfigPath)) {
const templateContent = readFileSync(templateConfigPath, 'utf-8');
const templateConfig = JSON.parse(templateContent);
sites = Object.entries(templateConfig).filter(([key]) => valid_files.includes(`${key}[模板].js`))
.flatMap(([key, config]) =>
Object.entries(config)
.filter(([name]) => name !== "示例")
.map(([name]) => ({
key: `drpyS_${name}_${key}`,
name: `${name}[M](${key.replace('App', '').toUpperCase()})`,
type: 4,
api: `${requestHost}/api/${key}[模板]${pwd ? `?pwd=${pwd}` : ''}`,
searchable: 1,
filterable: 1,
quickSearch: 0,
ext: `../json/App模板配置.json$${name}`
})));
}
} catch (e) {
console.error('读取App模板配置失败:', e.message);
}
//以上为自定义APP[模板]配置自动添加代码
let link_jar = '';
let enableRuleName = ENV.get('enable_rule_name', '0') === '1';
let enableOldConfig = Number(ENV.get('enable_old_config', '0'));
let isLoaded = await drpyS.isLoaded();
let forceHeader = Number(process.env.FORCE_HEADER) || 0;
let dr2ApiType = Number(process.env.DR2_API_TYPE) || 0; // 0 ds里的api 1壳子内置
// console.log('hide_adult:', ENV.get('hide_adult'));
if (ENV.get('hide_adult') === '1') {
valid_files = valid_files.filter(it => !(new RegExp('\\[[密]\\]|密+')).test(it));
}
let SitesMap = getSitesMap(configDir);
let mubanKeys = Object.keys(SitesMap);
// console.log(SitesMap);
// console.log(mubanKeys);
// 排除模板后缀的DS源
valid_files = valid_files.filter(it => !/^APP.*\[模板]\.js$/i.test(it));
log(`开始生成ds的t4配置,jsDir:${jsDir},源数量: ${valid_files.length}`);
const tasks = valid_files.map((file) => {
return {
func: async ({file, jsDir, requestHost, pwd, drpyS, SitesMap, jsEncoder}) => {
const baseName = path.basename(file, '.js'); // 去掉文件扩展名
let api = `${requestHost}/api/${baseName}`; // 使用请求的 host 地址,避免硬编码端口
if (pwd) {
api += `?pwd=${pwd}`;
}
let ruleObject = {
searchable: 0, // 固定值
filterable: 0, // 固定值
quickSearch: 0, // 固定值
};
let ruleMeta = {...ruleObject};
// if (baseName.includes('抖音直播弹幕')) {
const filePath = path.join(jsDir, file);
const header = await FileHeaderManager.readHeader(filePath);
// console.log('ds header:', header);
if (!header || forceHeader) {
try {
ruleObject = await drpyS.getRuleObject(filePath);
} catch (e) {
throw new Error(`Error parsing rule object for file: ${file}, ${e.message}`);
}
Object.assign(ruleMeta, {
title: ruleObject.title,
author: ruleObject.author,
类型: ruleObject.类型 || '影视',
searchable: ruleObject.searchable,
filterable: ruleObject.filterable,
quickSearch: ruleObject.quickSearch,
more: ruleObject.more,
logo: ruleObject.logo,
lang: 'ds',
});
// console.log('ds ruleMeta:', ruleMeta);
await FileHeaderManager.writeHeader(filePath, ruleMeta);
} else {
Object.assign(ruleMeta, header);
}
if (!isLoaded) {
const sizeInBytes = await FileHeaderManager.getFileSize(filePath, {humanReadable: true});
console.log(`Loading RuleObject: ${filePath} fileSize:${sizeInBytes}`);
}
ruleMeta.title = enableRuleName ? ruleMeta.title || baseName : baseName;
let fileSites = [];
const isMuban = mubanKeys.includes(baseName);
if (baseName === 'push_agent') {
let key = 'push_agent';
let name = `${ruleMeta.title}(DS)`;
fileSites.push({key, name});
} else if (isMuban && SitesMap.hasOwnProperty(baseName) && Array.isArray(SitesMap[baseName])) {
SitesMap[baseName].forEach((it) => {
let key = `drpyS_${it.alias}`;
let name = `${it.alias}(DS)`;
let ext = it.queryObject.type === 'url' ? it.queryObject.params : it.queryStr;
if (ext) {
ext = jsEncoder.gzip(ext);
}
fileSites.push({key, name, ext});
});
} else if (isMuban) {
return
} else {
let key = `drpyS_${ruleMeta.title}`;
let name = `${ruleMeta.title}(DS)`;
fileSites.push({key, name});
}
fileSites.forEach((fileSite) => {
const site = {
key: fileSite.key,
name: fileSite.name,
type: 4, // 固定值
api,
...ruleMeta,
ext: fileSite.ext || "", // 固定为空字符串
};
sites.push(site);
});
},
param: {file, jsDir, requestHost, pwd, drpyS, SitesMap, jsEncoder},
id: file,
};
});
const listener = {
func: (param, id, error, result) => {
if (error) {
console.error(`Error processing file ${id}:`, error.message);
} else {
// console.log(`Successfully processed file ${id}:`, result);
}
},
param: {}, // 外部参数可以在这里传入
};
await batchExecute(tasks, listener);
// 根据用户是否启用dr2源去生成对应配置
const enable_dr2 = ENV.get('enable_dr2', '1');
if ((enable_dr2 === '1' || enable_dr2 === '2')) {
const dr2_files = readdirSync(dr2Dir);
let dr2_valid_files = dr2_files.filter((file) => file.endsWith('.js') && !file.startsWith('_')); // 筛选出不是 "_" 开头的 .js 文件
// log(dr2_valid_files);
console.log(`开始生成dr2配置,dr2Dir:${dr2Dir},源数量: ${dr2_valid_files.length}, 启用模式: ${enable_dr2 === '1' ? 'T3配置' : 'T4风格API配置'}`);
const dr2_tasks = dr2_valid_files.map((file) => {
return {
func: async ({file, dr2Dir, requestHost, pwd, drpyS, SitesMap}) => {
const baseName = path.basename(file, '.js'); // 去掉文件扩展名
let ruleObject = {
searchable: 0, // 固定值
filterable: 0, // 固定值
quickSearch: 0, // 固定值
};
let ruleMeta = {...ruleObject};
const filePath = path.join(dr2Dir, file);
const header = await FileHeaderManager.readHeader(filePath);
// console.log('dr2 header:', header);
if (!header || forceHeader) {
try {
ruleObject = await drpyS.getRuleObject(path.join(filePath));
} catch (e) {
throw new Error(`Error parsing rule object for file: ${file}, ${e.message}`);
}
Object.assign(ruleMeta, {
title: ruleObject.title,
author: ruleObject.author,
类型: ruleObject.类型 || '影视',
searchable: ruleObject.searchable,
filterable: ruleObject.filterable,
quickSearch: ruleObject.quickSearch,
more: ruleObject.more,
logo: ruleObject.logo,
lang: 'dr2',
});
// console.log('dr2 ruleMeta:', ruleMeta);
await FileHeaderManager.writeHeader(filePath, ruleMeta);
} else {
Object.assign(ruleMeta, header);
}
if (!isLoaded) {
const sizeInBytes = await FileHeaderManager.getFileSize(filePath, {humanReadable: true});
console.log(`Loading RuleObject: ${filePath} fileSize:${sizeInBytes}`);
}
ruleMeta.title = enableRuleName ? ruleMeta.title || baseName : baseName;
let fileSites = [];
if (baseName === 'push_agent') {
let key = 'push_agent';
let name = `${ruleMeta.title}(DR2)`;
fileSites.push({key, name});
} else if (SitesMap.hasOwnProperty(baseName) && Array.isArray(SitesMap[baseName])) {
SitesMap[baseName].forEach((it) => {
let key = `drpy2_${it.alias}`;
let name = `${it.alias}(DR2)`;
fileSites.push({key, name, queryStr: it.queryStr});
});
} else {
let key = `drpy2_${ruleMeta.title}`;
let name = `${ruleMeta.title}(DR2)`;
fileSites.push({key, name});
}
fileSites.forEach((fileSite) => {
if (enable_dr2 === '1') {
// dr2ApiType=0 使用接口drpy2 dr2ApiType=1 使用壳子内置的drpy2
let api = dr2ApiType ? `assets://js/lib/drpy2.js` : `${requestHost}/public/drpy/drpy2.min.js`;
let ext = `${requestHost}/js/${file}`;
if (pwd) {
ext += `?pwd=${pwd}`;
}
// 处理传参源的ext
if (fileSite.queryStr) {
ext = updateQueryString(ext, fileSite.queryStr);
}
// 模式1:只启用dr2的T3配置
const site = {
key: fileSite.key,
name: fileSite.name,
type: 3, // 固定值
api,
...ruleMeta,
ext: ext || "", // 固定为空字符串
};
sites.push(site);
} else if (enable_dr2 === '2') {
// 模式2:只启用T3脚本的T4风格API配置
const t4site = {
key: fileSite.key,
name: fileSite.name,
type: 4, // 固定值
api: `${requestHost}/api/${baseName}`,
...ruleMeta,
ext: "", // 固定为空字符串
};
// 添加isdr2参数到API URL
if (pwd) {
t4site.api += `?pwd=${pwd}&do=dr`;
} else {
t4site.api += `?do=dr`;
}
// 处理传参源的API参数
if (fileSite.queryStr) {
const separator = t4site.api.includes('?') ? '&' : '?';
site.api += `${separator}extend=${encodeURIComponent(fileSite.queryStr)}`;
}
sites.push(t4site);
}
});
},
param: {file, dr2Dir, requestHost, pwd, drpyS, SitesMap},
id: file,
};
});
await batchExecute(dr2_tasks, listener);
}
// 根据用户是否启用py源去生成对应配置
const enable_py = ENV.get('enable_py', '1');
if (enable_py === '1' || enable_py === '2') {
const py_files = readdirSync(pyDir);
const api_type = enable_py === '1' ? 3 : 4;
let py_valid_files = py_files.filter((file) => file.endsWith('.py') && !file.startsWith('_') && !file.startsWith('base_')); // 筛选出不是 "_" 开头的 .py 文件
// log(py_valid_files);
log(`开始生成python的T${api_type}配置,pyDir:${pyDir},源数量: ${py_valid_files.length}`);
const py_tasks = py_valid_files.map((file) => {
return {
func: async ({file, pyDir, requestHost, pwd, SitesMap}) => {
const baseName = path.basename(file, '.py'); // 去掉文件扩展名
const extJson = path.join(pyDir, baseName + '.json');
let api = enable_py === '1' ? `${requestHost}/py/${file}` : `${requestHost}/api/${baseName}?do=py`; // 使用请求的 host 地址,避免硬编码端口
let ext = existsSync(extJson) ? `${requestHost}/py/${file}` : '';
if (pwd) {
api += api_type === 3 ? '?' : '&';
api += `pwd=${pwd}`;
if (ext) {
ext += `?pwd=${pwd}`;
}
}
let ruleObject = {
searchable: 1, // 固定值
filterable: 1, // 固定值
quickSearch: 1, // 固定值
};
let ruleMeta = {...ruleObject};
const filePath = path.join(pyDir, file);
const header = await FileHeaderManager.readHeader(filePath);
// console.log('py header:', header);
if (!header || forceHeader) {
const fileContent = await readFile(filePath, 'utf-8');
const title = extractNameFromCode(fileContent) || baseName;
Object.assign(ruleMeta, {
title: title,
lang: 'hipy',
});
// console.log('py ruleMeta:', ruleMeta);
await FileHeaderManager.writeHeader(filePath, ruleMeta);
} else {
Object.assign(ruleMeta, header);
}
if (!isLoaded) {
const sizeInBytes = await FileHeaderManager.getFileSize(filePath, {humanReadable: true});
console.log(`Loading RuleObject: ${filePath} fileSize:${sizeInBytes}`);
}
ruleMeta.title = enableRuleName ? ruleMeta.title || baseName : baseName;
let fileSites = [];
ext = ext || ruleMeta.ext || '';
const isMuban = mubanKeys.includes(baseName) || /^(APP|getapp3)/.test(baseName);
if (baseName === 'push_agent') {
let key = 'push_agent';
let name = `${ruleMeta.title}(hipy)`;
fileSites.push({key, name, ext});
} else if (isMuban && SitesMap.hasOwnProperty(baseName) && Array.isArray(SitesMap[baseName])) {
// console.log(SitesMap[baseName]);
SitesMap[baseName].forEach((it) => {
let key = `hipy_py_${it.alias}`;
let name = `${it.alias}(hipy)`;
let _ext = it.queryObject.type === 'url' ? it.queryObject.params : it.queryStr;
if (_ext && _ext !== it.queryStr) {
_ext = jsEncoder.gzip(_ext);
} else {
if (!enableOldConfig) {
_ext = parseExt(_ext);
}
}
console.log(`[HIPY-${baseName}] alias name: ${name},typeof _ext:${typeof _ext},_ext: ${logExt(_ext)}`);
fileSites.push({key, name, ext: _ext});
});
} else if (isMuban) {
return
} else {
let key = `hipy_py_${ruleMeta.title}`;
let name = `${ruleMeta.title}(hipy)`;
fileSites.push({key, name, ext});
}
fileSites.forEach((fileSite) => {
const site = {
key: fileSite.key,
name: fileSite.name,
type: api_type, // 固定值
api,
...ruleMeta,
ext: fileSite.ext || "", // 固定为空字符串
};
sites.push(site);
});
},
param: {file, pyDir, requestHost, pwd, SitesMap},
id: file,
};
});
await batchExecute(py_tasks, listener);
}
const enable_cat = ENV.get('enable_cat', '1');
// 根据用户是否启用cat源去生成对应配置
if (enable_cat === '1' || enable_cat === '2') {
const cat_files = readdirSync(catDir);
const api_type = enable_cat === '1' ? 3 : 4;
let cat_valid_files = cat_files.filter((file) => file.endsWith('.js') && !file.startsWith('_')); // 筛选出不是 "_" 开头的 .py 文件
// log(py_valid_files);
log(`开始生成catvod的T${api_type}配置,catDir:${catDir},源数量: ${cat_valid_files.length}`);
const cat_tasks = cat_valid_files.map((file) => {
return {
func: async ({file, catDir, requestHost, pwd, SitesMap}) => {
const baseName = path.basename(file, '.js'); // 去掉文件扩展名
const extJson = path.join(catDir, baseName + '.json');
const isT3 = enable_cat === '1' || baseName.includes('[B]');
let api = isT3 ? `${requestHost}/cat/${file}` : `${requestHost}/api/${baseName}?do=cat`; // 使用请求的 host 地址,避免硬编码端口
let ext = existsSync(extJson) ? `${requestHost}/cat/${file}` : '';
if (pwd) {
api += isT3 ? '?' : '&';
api += `pwd=${pwd}`;
if (ext) {
ext += `?pwd=${pwd}`;
}
}
let ruleObject = {
searchable: 1, // 固定值
filterable: 1, // 固定值
quickSearch: 1, // 固定值
};
let ruleMeta = {...ruleObject};
const filePath = path.join(catDir, file);
const header = await FileHeaderManager.readHeader(filePath);
// console.log('py header:', header);
if (!header || forceHeader) {
const fileContent = await readFile(filePath, 'utf-8');
const title = extractNameFromCode(fileContent) || baseName;
Object.assign(ruleMeta, {
title: title,
lang: 'cat',
});
// console.log('py ruleMeta:', ruleMeta);
await FileHeaderManager.writeHeader(filePath, ruleMeta);
} else {
Object.assign(ruleMeta, header);
}
if (!isLoaded) {
const sizeInBytes = await FileHeaderManager.getFileSize(filePath, {humanReadable: true});
console.log(`Loading RuleObject: ${filePath} fileSize:${sizeInBytes}`);
}
ruleMeta.title = enableRuleName ? ruleMeta.title || baseName : baseName;
let fileSites = [];
ext = ext || ruleMeta.ext || '';
if (baseName === 'push_agent') {
let key = 'push_agent';
let name = `${ruleMeta.title}(cat)`;
fileSites.push({key, name, ext});
} else if (SitesMap.hasOwnProperty(baseName) && Array.isArray(SitesMap[baseName])) {
SitesMap[baseName].forEach((it) => {
let key = `catvod_${it.alias}`;
let name = `${it.alias}(cat)`;
let _ext = it.queryObject.type === 'url' ? it.queryObject.params : it.queryStr;
if (_ext && _ext !== it.queryStr) {
_ext = jsEncoder.gzip(_ext);
} else {
if (!enableOldConfig) {
_ext = parseExt(_ext);
}
}
console.log(`[CAT-${baseName}] alias name: ${name},typeof _ext:${typeof _ext},_ext: ${logExt(_ext)}`);
fileSites.push({key, name, ext: _ext});
});
} else {
let key = `catvod_${ruleMeta.title}`;
let name = `${ruleMeta.title}(cat)`;
fileSites.push({key, name, ext});
}
fileSites.forEach((fileSite) => {
const site = {
key: fileSite.key,
name: fileSite.name,
type: isT3 ? 3 : api_type, // 固定值
api,
...ruleMeta,
ext: fileSite.ext || "", // 固定为空字符串
};
sites.push(site);
});
},
param: {file, catDir, requestHost, pwd, SitesMap},
id: file,
};
});
await batchExecute(cat_tasks, listener);
}
// 根据用户是否启用挂载数据源去生成对应配置
if (ENV.get('enable_link_data', '0') === '1') {
log(`开始挂载外部T4数据`);
let link_sites = [];
let link_url = ENV.get('link_url');
let enable_link_push = ENV.get('enable_link_push', '0');
let enable_link_jar = ENV.get('enable_link_jar', '0');
try {
let link_data = readFileSync(path.join(rootDir, './data/settings/link_data.json'), 'utf-8');
let link_config = JSON.parse(link_data);
link_sites = link_config.sites.filter(site => site.type = 4);
if (link_config.spider && enable_link_jar === '1') {
let link_spider_arr = link_config.spider.split(';');
link_jar = urljoin(link_url, link_spider_arr[0]);
if (link_spider_arr.length > 1) {
link_jar = [link_jar].concat(link_spider_arr.slice(1)).join(';')
}
log(`开始挂载外部T4 Jar: ${link_jar}`);
}
link_sites.forEach((site) => {
if (site.key === 'push_agent' && enable_link_push !== '1') {
return
}
if (site.api && !site.api.startsWith('http')) {
site.api = urljoin(link_url, site.api)
}
if (site.ext && site.ext.startsWith('.')) {
site.ext = urljoin(link_url, site.ext)
}
if (site.key === 'push_agent' && enable_link_push === '1') { // 推送覆盖
let pushIndex = sites.findIndex(s => s.key === 'push_agent');
if (pushIndex > -1) {
sites[pushIndex] = site;
} else {
sites.push(site);
}
} else {
sites.push(site);
}
});
} catch (e) {
}
}
// 订阅再次处理别名的情况
if (sub) {
if (sub.mode === 0) {
sites = sites.filter(it => (new RegExp(sub.reg || '.*')).test(it.name));
} else if (sub.mode === 1) {
sites = sites.filter(it => !(new RegExp(sub.reg || '.*')).test(it.name));
}
}
// 青少年模式再次处理自定义别名的情况
if (ENV.get('hide_adult') === '1') {
sites = sites.filter(it => !(new RegExp('\\[[密]\\]|密+')).test(it.name));
}
// console.log('sort_list:', sort_list);
sites = naturalSort(sites, 'name', sort_list);
return {sites, spider: link_jar};
}
/**
* 生成解析器配置JSON数据
* 扫描解析器文件并生成解析器配置列表
*
* @param {string} jxDir - 解析器文件目录
* @param {string} requestHost - 请求主机地址
* @returns {Promise<Object>} 包含parses数组的对象
*/
async function generateParseJSON(jxDir, requestHost) {
const files = readdirSync(jxDir);
const jx_files = files.filter((file) => file.endsWith('.js') && !file.startsWith('_')) // 筛选出不是 "_" 开头的 .js 文件
const jx_dict = getParsesDict(requestHost);
let parses = [];
const tasks = jx_files.map((file) => {
return {
func: async ({file, jxDir, requestHost, drpyS}) => {
const baseName = path.basename(file, '.js'); // 去掉文件扩展名
const api = `${requestHost}/parse/${baseName}?url=`; // 使用请求的 host 地址,避免硬编码端口
let jxObject = {
type: 1, // 固定值
ext: {
flag: [
"qiyi",
"imgo",
"爱奇艺",
"奇艺",
"qq",
"qq 预告及花絮",
"腾讯",
"youku",
"优酷",
"pptv",
"PPTV",
"letv",
"乐视",
"leshi",
"mgtv",
"芒果",
"sohu",
"xigua",
"fun",
"风行"
]
},
header: {
"User-Agent": "Mozilla/5.0"
}
};
try {
let _jxObject = await drpyS.getJx(path.join(jxDir, file));
jxObject = {...jxObject, ..._jxObject};
} catch (e) {
throw new Error(`Error parsing jx object for file: ${file}, ${e.message}`);
}
parses.push({
name: baseName,
url: jxObject.url || api,
type: jxObject.type,
ext: jxObject.ext,
header: jxObject.header
});
},
param: {file, jxDir, requestHost, drpyS},
id: file,
};
});
const listener = {
func: (param, id, error, result) => {
if (error) {
console.error(`Error processing file ${id}:`, error.message);
} else {
// console.log(`Successfully processed file ${id}:`, result);
}
},
param: {}, // 外部参数可以在这里传入
};
await batchExecute(tasks, listener);
let sorted_parses = naturalSort(parses, 'name', ['JSON并发', 'JSON合集', '虾米', '奇奇']);
let sorted_jx_dict = naturalSort(jx_dict, 'name', ['J', 'W']);
parses = sorted_parses.concat(sorted_jx_dict);
return {parses};
}
/**
* 生成直播源配置JSON数据
* 根据环境变量配置生成直播源列表
*
* @param {string} requestHost - 请求主机地址
* @returns {Object} 包含lives数组的对象
*/
function generateLivesJSON(requestHost) {
let lives = [];
let live_url = process.env.LIVE_URL || '';
let epg_url = process.env.EPG_URL || ''; // 从.env文件读取
let logo_url = process.env.LOGO_URL || ''; // 从.env文件读取
if (live_url && !live_url.startsWith('http')) {
let public_url = urljoin(requestHost, 'public/');
live_url = urljoin(public_url, live_url);
}
// console.log('live_url:', live_url);
if (live_url) {
lives.push(
{
"name": "直播",
"type": 0,
"url": live_url,
"playerType": 1,
"ua": "okhttp/3.12.13",
"epg": epg_url,
"logo": logo_url
}
)
}
return {lives}
}
/**
* 生成播放器配置JSON数据
* 读取播放器配置文件并返回配置对象
*
* @param {string} configDir - 配置文件目录
* @param {string} requestHost - 请求主机地址
* @returns {Object} 播放器配置对象
*/
function generatePlayerJSON(configDir, requestHost) {
let playerConfig = {};
let playerConfigPath = path.join(configDir, './player.json');
if (existsSync(playerConfigPath)) {
try {
playerConfig = JSON.parse(readFileSync(playerConfigPath, 'utf-8'))
} catch (e) {
}
}
return playerConfig
}
/**
* 获取订阅配置列表
* 读取订阅配置文件并解析为JSON对象
*
* @param {string} subFilePath - 订阅文件路径
* @returns {Array} 订阅配置数组
*/
function getSubs(subFilePath) {
let subs = [];
try {
const subContent = readFileSync(subFilePath, 'utf-8');
subs = JSON.parse(subContent)
} catch (e) {
console.log(`读取订阅失败:${e.message}`);
}
return subs
}
/**
* 配置管理路由注册函数
* 注册配置相关的API路由,包括配置获取和索引文件访问
*
* @param {Object} fastify - Fastify实例
* @param {Object} options - 配置选项
* @param {Function} done - 完成回调函数
*/
export default (fastify, options, done) => {
/**
* 获取索引配置接口
* 返回预生成的index.json配置文件内容
*/
fastify.get('/index', {preHandler: validatePwd}, async (request, reply) => {
if (!existsSync(options.indexFilePath)) {
reply.code(404).send({error: 'index.json not found'});
return;
}
const content = readFileSync(options.indexFilePath, 'utf-8');
reply.send(JSON.parse(content));
});
/**
* 动态配置生成接口
* 根据请求参数动态生成配置JSON,支持订阅过滤、健康检查等功能
* 同时将生成的配置写入index.json文件进行缓存
*/
fastify.get('/config*', {preHandler: [validatePwd, validateBasicAuth]}, async (request, reply) => {
let t1 = (new Date()).getTime();
const query = request.query; // 获取 query 参数
const pwd = query.pwd || '';
const sub_code = query.sub || '';
const healthy = query.healthy || ''; // 新增healthy参数
const cat_sub_code = ENV.get('cat_sub_code', 'all');
const must_sub_code = Number(ENV.get('must_sub_code', '0')) || 0;
const cfg_path = request.params['*']; // 捕获整个路径
try {
// 获取主机名,协议及端口
const protocol = request.headers['x-forwarded-proto'] || (request.socket.encrypted ? 'https' : 'http'); // http 或 https
const hostname = request.hostname; // 主机名,不包含端口
const port = request.socket.localPort; // 获取当前服务的端口
console.log(`cfg_path:${cfg_path},port:${port}`);
// 判断是否为外部访问(非本地访问)
let not_local = cfg_path.startsWith('/1') || cfg_path.startsWith('/index');
// 根据访问类型生成对应的主机地址
let requestHost = not_local ? `${protocol}://${hostname}` : `http://127.0.0.1:${options.PORT}`; // 动态生成根地址
let requestUrl = not_local ? `${protocol}://${hostname}${request.url}` : `http://127.0.0.1:${options.PORT}${request.url}`; // 动态生成请求链接
// console.log('requestUrl:', requestUrl);
// if (cfg_path.endsWith('.js')) {
// if (cfg_path.includes('index.js')) {
// // return reply.sendFile('index.js', path.join(options.rootDir, 'data/cat'));
// let content = readFileSync(path.join(options.rootDir, 'data/cat/index.js'), 'utf-8');
// // content = jinja.render(content, {config_url: requestUrl.replace(cfg_path, `/1?sub=all&healthy=1&pwd=${process.env.API_PWD || ''}`)});
// content = content.replace('$config_url', requestUrl.replace(cfg_path, `/1?sub=all&healthy=1&pwd=${process.env.API_PWD || ''}`));
// return reply.type('application/javascript;charset=utf-8').send(content);
// } else if (cfg_path.includes('index.config.js')) {
// let content = readFileSync(path.join(options.rootDir, 'data/cat/index.config.js'), 'utf-8');
// // content = jinja.render(content, {config_url: requestUrl.replace(cfg_path, `/1?sub=all&healthy=1&pwd=${process.env.API_PWD || ''}`)});
// content = content.replace('$config_url', requestUrl.replace(cfg_path, `/1?sub=all&healthy=1&pwd=${process.env.API_PWD || ''}`));
// return reply.type('application/javascript;charset=utf-8').send(content);
// }
// }
// if (cfg_path.endsWith('.js.md5')) {
// if (cfg_path.includes('index.js')) {
// let content = readFileSync(path.join(options.rootDir, 'data/cat/index.js'), 'utf-8');
// // content = jinja.render(content, {config_url: requestUrl.replace(cfg_path, `/1?sub=all&healthy=1&pwd=${process.env.API_PWD || ''}`)});
// content = content.replace('$config_url', requestUrl.replace(cfg_path, `/1?sub=all&healthy=1&pwd=${process.env.API_PWD || ''}`));
// let contentHash = md5(content);
// console.log('index.js contentHash:', contentHash);
// return reply.type('text/plain;charset=utf-8').send(contentHash);
// } else if (cfg_path.includes('index.config.js')) {
// let content = readFileSync(path.join(options.rootDir, 'data/cat/index.config.js'), 'utf-8');
// // content = jinja.render(content, {config_url: requestUrl.replace(cfg_path, `/1?sub=all&healthy=1&pwd=${process.env.API_PWD || ''}`)});
// content = content.replace('$config_url', requestUrl.replace(cfg_path, `/1?sub=all&healthy=1&pwd=${process.env.API_PWD || ''}`));
// let contentHash = md5(content);
// console.log('index.config.js contentHash:', contentHash);
// return reply.type('text/plain;charset=utf-8').send(contentHash);
// }
// }
const getFilePath = (cfgPath, rootDir, fileName) => path.join(rootDir, `data/cat/${fileName}`);
const processContent = (content, cfgPath, requestUrl, requestHost) => {
const $config_url = requestUrl.replace(cfgPath, `/1?sub=${cat_sub_code}&healthy=1&pwd=${process.env.API_PWD || ''}`);
return content.replaceAll('$config_url', $config_url).replaceAll('$host', requestHost);
}
const handleJavaScript = (cfgPath, requestUrl, requestHost, options, reply) => {
const fileMap = {
'index.js': 'index.js',
'index.config.js': 'index.config.js'
};
for (const [key, fileName] of Object.entries(fileMap)) {
if (cfgPath.includes(key)) {
const filePath = getFilePath(cfgPath, options.rootDir, fileName);
let content = readFileSync(filePath, 'utf-8');
content = processContent(content, cfgPath, requestUrl, requestHost);
return reply.type('application/javascript;charset=utf-8').send(content);
}
}
};
const handleJsMd5 = (cfgPath, requestUrl, options, reply) => {
const fileMap = {
'index.js': 'index.js',
'index.config.js': 'index.config.js'
};
for (const [key, fileName] of Object.entries(fileMap)) {
if (cfgPath.includes(key)) {
const filePath = getFilePath(cfgPath, options.rootDir, fileName);
let content = readFileSync(filePath, 'utf-8');
content = processContent(content, cfgPath, requestUrl);
const contentHash = md5(content);
console.log(`${fileName} contentHash:`, contentHash);
return reply.type('text/plain;charset=utf-8').send(contentHash);
}
}
};
if (cfg_path.endsWith('.js')) {
return handleJavaScript(cfg_path, requestUrl, requestHost, options, reply);
}
if (cfg_path.endsWith('.js.md5')) {
return handleJsMd5(cfg_path, requestUrl, options, reply);
}
// 处理订阅码验证
let sub = null;
if (sub_code) {
let subs = getSubs(options.subFilePath);
sub = subs.find(it => it.code === sub_code);
console.log('sub:', sub);
// 检查订阅码状态
if (sub && sub.status === 0) {
return reply.status(500).send({error: `此订阅码:【${sub_code}】已禁用`});
} else if (!sub && must_sub_code) {
return reply.status(500).send({error: `此订阅码:【${sub_code}】不存在`});
}
} else if (!sub_code && must_sub_code) {
return reply.status(500).send({error: `缺少订阅码参数`});
}
// 生成站点配置数据
let siteJSON = await generateSiteJSON(options, requestHost, sub, pwd);
// 处理healthy参数,过滤失效源
if (healthy === '1') {
const reportPath = path.join(options.rootDir, 'data', 'source-checker', 'report.json');
if (existsSync(reportPath)) {
try {
const reportContent = readFileSync(reportPath, 'utf-8');
const reportData = JSON.parse(reportContent);
// 获取失效源的key列表
const failedKeys = new Set();
if (reportData.sources && Array.isArray(reportData.sources)) {
reportData.sources.forEach(source => {
if (source.status === 'error') {
failedKeys.add(source.key);
}
});
}
// 过滤掉失效的源
if (failedKeys.size > 0) {
siteJSON.sites = siteJSON.sites.filter(site => !failedKeys.has(site.key));
console.log(`Filtered out ${failedKeys.size} failed sources, remaining: ${siteJSON.sites.length}`);
}
} catch (error) {
console.error('Failed to process health report:', error.message);
}
}
}
// 生成各类配置数据
const parseJSON = await generateParseJSON(options.jxDir, requestHost);
const livesJSON = generateLivesJSON(requestHost);
const playerJSON = generatePlayerJSON(options.configDir, requestHost);
// 合并所有配置数据
const configObj = {sites_count: siteJSON.sites.length, ...playerJSON, ...siteJSON, ...parseJSON, ...livesJSON};
if (!configObj.spider) {
configObj.spider = playerJSON.spider
}
// console.log(configObj);
const configStr = JSON.stringify(configObj, null, 2);
// 写入配置文件(Vercel环境除外)
if (!process.env.VERCEL) { // Vercel 环境不支持写文件,关闭此功能
writeFileSync(options.indexFilePath, configStr, 'utf8'); // 写入 index.json
if (cfg_path === '/1') {
writeFileSync(options.customFilePath, configStr, 'utf8'); // 写入 index.json
}
}