rules.py 7.7 KB
Newer Older
H
hjdhnx 已提交
1 2 3 4 5
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# File  : rules.py.py
# Author: DaShenHan&道长-----先苦后甜,任凭晚风拂柳颜------
# Date  : 2022/8/25
H
hjdhnx 已提交
6
import json
H
hjdhnx 已提交
7
import os
H
hjdhnx 已提交
8 9 10
from time import time
import js2py
from utils.log import logger
H
hjdhnx 已提交
11 12
# from utils.web import get_interval,UA
from utils.ua import UA,get_interval
H
hjdhnx 已提交
13
from flask import render_template_string
H
hjdhnx 已提交
14

15
def getRuleLists():
H
hjdhnx 已提交
16 17 18
    base_path = os.path.dirname(os.path.abspath(__file__)) # 当前文件所在目录
    # print(base_path)
    file_name = os.listdir(base_path)
19
    file_name = list(filter(lambda x:str(x).endswith('.js') and str(x).find('模板') < 0,file_name))
H
hjdhnx 已提交
20 21 22 23 24
    # print(file_name)
    rule_list = [file.replace('.js','') for file in file_name]
    # print(rule_list)
    return rule_list

H
hjdhnx 已提交
25 26 27 28 29 30 31
def getCacheCount():
    base_path = 'cache/'  # 当前缓存js所在目录
    os.makedirs(base_path, exist_ok=True)
    file_name = os.listdir(base_path)
    file_name = list(filter(lambda x: str(x).endswith('.js') and str(x).find('模板') < 0, file_name))
    return len(file_name)

H
hjdhnx 已提交
32 33 34 35 36 37 38 39 40 41 42
def getRules(path='cache'):
    t1 = time()
    base_path = path+'/'  # 当前文件所在目录
    # print(base_path)
    os.makedirs(base_path,exist_ok=True)
    file_name = os.listdir(base_path)
    file_name = list(filter(lambda x: str(x).endswith('.js') and str(x).find('模板') < 0, file_name))
    # print(file_name)
    rule_list = [file.replace('.js', '') for file in file_name]
    js_path = [f'{path}/{rule}.js' for rule in rule_list]
    with open('js/模板.js', encoding='utf-8') as f:
H
hjdhnx 已提交
43
        before = f.read().split('export')[0]
H
hjdhnx 已提交
44 45 46 47 48 49 50 51 52 53 54 55
    rule_codes = []
    # for js in js_path:
    #     with open(js,encoding='utf-8') as f:
    #         code = f.read()
    #         rule_codes.append(js2py.eval_js(before+code))

    ctx = js2py.EvalJs()
    codes = []
    for i in range(len(js_path)):
        js = js_path[i]
        with open(js,encoding='utf-8') as f:
            code = f.read()
H
hjdhnx 已提交
56 57 58
            new_code = 'var muban = JSON.parse(JSON.stringify(mubanDict));\n'+code.replace('rule',f'rule{i}',1)
            # new_code = ''+code.replace('rule',f'rule{i}',1)
            codes.append(new_code)
H
hjdhnx 已提交
59 60
    newCodes = before + '\n'+ '\n'.join(codes)
    # print(newCodes)
H
hjdhnx 已提交
61 62 63 64
    try:
        ctx.execute(newCodes)
        for i in range(len(js_path)):
            rule_codes.append(ctx.eval(f'rule{i}'))
H
hjdhnx 已提交
65

H
hjdhnx 已提交
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
        # print(rule_codes)
        # print(type(rule_codes[0]),rule_codes[0])
        # print(rule_codes[0].title)
        # print(rule_codes[0].searchable)
        # print(rule_codes[0].quickSearch)
        new_rule_list = []
        for i in range(len(rule_list)):
            tmpObj = {
                'name':rule_list[i],
                'searchable':rule_codes[i].searchable or 0,
                'quickSearch':rule_codes[i].quickSearch or 0,
                'filterable':rule_codes[i].filterable or 0,
            }
            if rule_codes[i].multi:
                tmpObj['multi'] = 1
            new_rule_list.append(tmpObj)
        # print(new_rule_list)
        rules = {'list': new_rule_list, 'count': len(rule_list)}
    except Exception as e:
        logger.info(f'装载js内置源列表失败,置空内置源')
        rules = []
H
hjdhnx 已提交
87 88 89
    logger.info(f'自动配置装载耗时:{get_interval(t1)}毫秒')
    return rules

H
hjdhnx 已提交
90 91 92 93 94 95
def jxTxt2Json(text:str,host:str):
    try:
        data = render_template_string(text,host=host).strip().split('\n')
    except Exception as e:
        logger.info(f'jxTxt2Json发生错误:{e}')
        data = []
H
hjdhnx 已提交
96
    jxs = []
97
    for i in data:
H
hjdhnx 已提交
98 99
        i = i.strip()
        dt = i.split(',')
H
hjdhnx 已提交
100 101 102 103 104
        if not i.startswith('#') and len(i) > 10:
            try:
                jxs.append({
                    'name':dt[0],
                    'url':dt[1],
H
hjdhnx 已提交
105 106
                    'type':dt[2] if len(dt) > 2 and dt[2] else 0,
                    'ua':dt[3] if len(dt) > 3 and dt[3] else UA,
H
hjdhnx 已提交
107 108 109
                })
            except Exception as e:
                logger.info(f'解析行有错误:{e}')
110 111
    return jxs

H
hjdhnx 已提交
112
def getJxs(path='js',host=None):
113 114 115 116 117 118 119 120 121 122
    custom_jx = 'base/解析.conf'
    if not os.path.exists(custom_jx):
        with open(custom_jx,'w+',encoding='utf-8') as f1:
            msg = """# 这是用户自定义解析列表,不会被系统升级覆盖
# 0123,对应,普通解析,json解析,并发多json解析,聚合解析,参数3不填默认0
# flags是线路名称标识,会自动拦截并走以下的解析
# 名称,链接,类型,ua (ua不填默认 Mozilla/5.0) 可以手动填 Dart/2.14 (dart:io)
虾米,https://dm.xmflv.com:4433/?url=
            """
            f1.write(msg)
H
hjdhnx 已提交
123 124 125 126 127 128 129 130 131 132
    base_path = 'jiexi'  # 自建解析目录
    os.makedirs(base_path, exist_ok=True)
    file_name = os.listdir(base_path)
    file_name = list(filter(lambda x: str(x).endswith('.js') and str(x).find('模板') < 0, file_name))
    # print(file_name)
    jx_list = [file.replace('.js', '') for file in file_name]
    # print(file_name)
    # print(jx_list)
    jx_str = '\n'.join([jx+',{{host}}'+f'/parse/api/{jx}.js?url=,1' for jx in jx_list])
    # print(jx_str)
133 134 135

    with open(f'{path}/解析.conf',encoding='utf-8') as f:
        text = f.read()
H
hjdhnx 已提交
136
    text = jx_str + '\n' + text
H
hjdhnx 已提交
137
    jxs = jxTxt2Json(text,host)
138 139
    with open(custom_jx,encoding='utf-8') as f2:
        text = f2.read()
H
hjdhnx 已提交
140
    jxs2 = jxTxt2Json(text,host)
141
    jxs.extend(jxs2)
H
hjdhnx 已提交
142 143 144
    print(f'共计{len(jxs)}条解析')
    return jxs

H
hjdhnx 已提交
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
def getPys(path='txt/py'):
    t1 = time()
    base_path = os.path.dirname(os.path.abspath(os.path.dirname(__file__)))  # 上级目录
    py_path = os.path.join(base_path, path)
    os.makedirs(py_path, exist_ok=True)
    file_name = os.listdir(py_path)
    file_name = list(filter(lambda x: str(x).endswith('.py'), file_name))
    # print(file_name)
    rule_list = [file.replace('.py', '') for file in file_name]
    py_path = [f'{path}/{rule}.py' for rule in rule_list]
    new_rule_list = []
    for i in range(len(rule_list)):
        new_rule_list.append({
            'name': rule_list[i],
            'searchable': 1,
            'quickSearch': 1,
            'filterable': 0,
        })
    logger.info(f'自动加载Pyramid耗时:{get_interval(t1)}毫秒')
    return new_rule_list

H
hjdhnx 已提交
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
def gen_cache(path='txt/js/tg'):
    t1 = time()
    base_path = os.path.dirname(os.path.abspath(os.path.dirname(__file__)))  # 上级目录
    py_path = os.path.join(base_path, path)
    os.makedirs(py_path, exist_ok=True)
    file_name = os.listdir(py_path)
    file_name = list(filter(lambda x: str(x).endswith('.js'), file_name))
    # print(file_name)
    rule_list = [file.replace('.js', '') for file in file_name]
    js_path = [f'{path}/{rule}.js' for rule in rule_list]
    new_rule_list = []
    for i in range(len(rule_list)):
        # print(js_path[i])
        rname = rule_list[i]
        new_rule_list.append(
            {
                "key": f"dr_{rname}",
                "name": f"{rname}(道长)",
                "type": 1,
                # "api": "{{host}}"+f"/vod?rule={rname}&ext="+"{{host}}/"+js_path[i],
                "api": "{{host}}"+f"/vod?rule={rname}&ext="+js_path[i],
                "searchable": 2,
                "quickSearch": 0,
                "filterable": 0
            })
    logger.info(f'自动加载{len(new_rule_list)}个缓存JS耗时:{get_interval(t1)}毫秒')
    new_rules_texts = [json.dumps(new_rule,ensure_ascii=False) for new_rule in new_rule_list]
    # new_rules_text = json.dumps(new_rule_list,ensure_ascii=False)
    new_rules_text = ',\n'.join(new_rules_texts)+','
    return new_rules_text

H
hjdhnx 已提交
197
if __name__ == '__main__':
H
hjdhnx 已提交
198
    print(getRuleLists())
H
hjdhnx 已提交
199 200 201 202 203 204 205
    # print(gen_cache())
    # print(gen_cache('txt/js/18'))

    custom_file = gen_cache() + '\n'+gen_cache('txt/js/18')
    print(custom_file)
    with open('custom.conf','w+',encoding='utf-8') as f:
        f.write(custom_file)