forked from celetor/convert2clash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRobot.py
371 lines (334 loc) · 12.4 KB
/
Robot.py
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
import base64
import datetime
import json
import re
import sys
import urllib.parse
import requests
import yaml
def log(msg):
time = datetime.datetime.now()
print('[' + time.strftime('%Y.%m.%d-%H:%M:%S') + '] ' + msg)
# 针对url的base64解码
def safe_decode(s):
num = len(s) % 4
if num:
s += '=' * (4 - num)
return base64.urlsafe_b64decode(s)
# 解析vmess节点
def decode_v2ray_node(nodes):
proxy_list = []
for node in nodes:
decode_proxy = node.decode('utf-8')[8:]
if not decode_proxy or decode_proxy.isspace():
log('vmess节点信息为空,跳过该节点')
continue
proxy_str = base64.b64decode(decode_proxy).decode('utf-8')
proxy_dict = json.loads(proxy_str)
proxy_list.append(proxy_dict)
return proxy_list
# 解析ss节点
def decode_ss_node(nodes):
proxy_list = []
for node in nodes:
decode_proxy = node.decode('utf-8')[5:]
if not decode_proxy or decode_proxy.isspace():
log('ss节点信息为空,跳过该节点')
continue
info = dict()
param = decode_proxy
if param.find('#') > -1:
remark = urllib.parse.unquote(param[param.find('#') + 1:])
info['name'] = remark
param = param[:param.find('#')]
if param.find('/?') > -1:
plugin = urllib.parse.unquote(param[param.find('/?') + 2:])
param = param[:param.find('/?')]
for p in plugin.split(';'):
key_value = p.split('=')
info[key_value[0]] = key_value[1]
if param.find('@') > -1:
matcher = re.match(r'(.*?)@(.*):(.*)', param)
if matcher:
param = matcher.group(1)
info['server'] = matcher.group(2)
info['port'] = matcher.group(3)
else:
continue
matcher = re.match(r'(.*?):(.*)', safe_decode(param).decode('utf-8'))
if matcher:
info['method'] = matcher.group(1)
info['password'] = matcher.group(2)
else:
continue
else:
matcher = re.match(r'(.*?):(.*)@(.*):(.*)', safe_decode(param).decode('utf-8'))
if matcher:
info['method'] = matcher.group(1)
info['password'] = matcher.group(2)
info['server'] = matcher.group(3)
info['port'] = matcher.group(4)
else:
continue
proxy_list.append(info)
return proxy_list
# 解析ssr节点
def decode_ssr_node(nodes):
proxy_list = []
for node in nodes:
decode_proxy = node.decode('utf-8')[6:]
if not decode_proxy or decode_proxy.isspace():
log('ssr节点信息为空,跳过该节点')
continue
proxy_str = safe_decode(decode_proxy).decode('utf-8')
parts = proxy_str.split(':')
if len(parts) != 6:
print('该ssr节点解析失败,链接:{}'.format(node))
continue
info = {
'server': parts[0],
'port': parts[1],
'protocol': parts[2],
'method': parts[3],
'obfs': parts[4]
}
password_params = parts[5].split('/?')
info['password'] = safe_decode(password_params[0]).decode('utf-8')
params = password_params[1].split('&')
for p in params:
key_value = p.split('=')
info[key_value[0]] = safe_decode(key_value[1]).decode('utf-8')
proxy_list.append(info)
return proxy_list
# v2ray转换成Clash节点
def v2ray_to_clash(arr):
log('v2ray节点转换中...')
proxies = {
'proxy_list': [],
'proxy_names': []
}
for item in arr:
if item.get('ps') is None and item.get('add') is None and item.get('port') is None \
and item.get('id') is None and item.get('aid') is None:
continue
obj = {
'name': item.get('ps').strip() if item.get('ps') else None,
'type': 'vmess',
'server': item.get('add'),
'port': int(item.get('port')),
'uuid': item.get('id'),
'alterId': item.get('aid'),
'cipher': 'auto',
'udp': True,
# 'network': item['net'] if item['net'] and item['net'] != 'tcp' else None,
'network': item.get('net'),
'tls': True if item.get('tls') == 'tls' else None,
'ws-path': item.get('path'),
'ws-headers': {'Host': item.get('host')} if item.get('host') else None
}
for key in list(obj.keys()):
if obj.get(key) is None:
del obj[key]
if obj.get('alterId') is not None and not obj['name'].startswith('剩余流量') and not obj['name'].startswith(
'过期时间'):
proxies['proxy_list'].append(obj)
proxies['proxy_names'].append(obj['name'])
log('可用v2ray节点{}个'.format(len(proxies['proxy_names'])))
return proxies
# ss转换成Clash节点
def ss_to_clash(arr):
log('ss节点转换中...')
proxies = {
'proxy_list': [],
'proxy_names': []
}
for item in arr:
obj = {
'name': item.get('name').strip() if item.get('name') else None,
'type': 'ss',
'server': item.get('server'),
'port': int(item.get('port')),
'cipher': item.get('method'),
'password': item.get('password'),
'plugin': 'obfs' if item.get('plugin') and item.get('plugin').startswith('obfs') else None,
'plugin-opts': {} if item.get('plugin') else None
}
if item.get('obfs'):
obj['plugin-opts']['mode'] = item.get('obfs')
if item.get('obfs-host'):
obj['plugin-opts']['host'] = item.get('obfs-host')
for key in list(obj.keys()):
if obj.get(key) is None:
del obj[key]
if not obj['name'].startswith('剩余流量') and not obj['name'].startswith('过期时间'):
proxies['proxy_list'].append(obj)
proxies['proxy_names'].append(obj['name'])
log('可用ss节点{}个'.format(len(proxies['proxy_names'])))
return proxies
# ssr转换成Clash节点
def ssr_to_clash(arr):
log('ssr节点转换中...')
proxies = {
'proxy_list': [],
'proxy_names': []
}
for item in arr:
obj = {
'name': item.get('remarks').strip() if item.get('remarks') else None,
'type': 'ssr',
'server': item.get('server'),
'port': int(item.get('port')),
'cipher': item.get('method'),
'password': item.get('password'),
'obfs': item.get('obfs'),
'protocol': item.get('protocol'),
'obfs-param': item.get('obfsparam'),
'protocol-param': item.get('protoparam'),
'udp': True
}
for key in list(obj.keys()):
if obj.get(key) is None:
del obj[key]
if obj.get('name'):
if not obj['name'].startswith('剩余流量') and not obj['name'].startswith('过期时间'):
proxies['proxy_list'].append(obj)
proxies['proxy_names'].append(obj['name'])
log('可用ssr节点{}个'.format(len(proxies['proxy_names'])))
return proxies
###########################################################################
# 获取订阅地址数据:
def get_proxies(urls):
url_list = urls.split(';')
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)'
}
proxy_list = {
'proxy_list': [],
'proxy_names': []
}
# 请求订阅地址
for url in url_list:
# 这里拿到的是一串乱码,需要进行解码
response = ''
try:
response = requests.get(url, headers=headers, timeout=9000).text
except Exception as e:
log('根据订阅地址获取base64失败:{}'.format(e))
log('开始使用来自本地base64.txt的base64')
f = open('./base64.txt')
response = f.readline()
f.close()
try:
raw = base64.b64decode(response)
# 有可能直接拿到了没加密的yaml文件
except Exception as r:
log('base64解码失败:{}'.format(r))
log('代理节点提取中...')
yml = yaml.load(response, Loader=yaml.FullLoader)
nodes_list = []
tmp_node_list = []
# clash新字段
if yml.get('proxies'):
tmp_node_list = yml.get('proxies')
# clash旧字段
elif yml.get('Proxy'):
tmp_node_list = yml.get('Proxy')
else:
log('代理节点提取失败')
continue
for node in tmp_node_list:
node['name'] = node['name'].strip() if node.get('name') else None
# 对clashR的支持
if node.get('protocolparam'):
node['protocol-param'] = node['protocolparam']
del node['protocolparam']
if node.get('obfsparam'):
node['obfs-param'] = node['obfsparam']
del node['obfsparam']
node['udp'] = True
nodes_list.append(node)
proxy_list['proxy_list'].extend(nodes_list)
node_names = [node.get('name') for node in nodes_list]
proxy_list['proxy_names'].extend(node_names)
continue
nodes_list = raw.splitlines()
v2ray_urls = []
ss_urls = []
ssr_urls = []
for node in nodes_list:
if node.startswith(b'vmess://'):
v2ray_urls.append(node)
elif node.startswith(b'ss://'):
ss_urls.append(node)
elif node.startswith(b'ssr://'):
ssr_urls.append(node)
else:
pass
clash_node = []
if len(v2ray_urls) > 0:
decode_proxy = decode_v2ray_node(v2ray_urls)
clash_node = v2ray_to_clash(decode_proxy)
if len(ss_urls) > 0:
decode_proxy = decode_ss_node(ss_urls)
clash_node = ss_to_clash(decode_proxy)
if len(ssr_urls) > 0:
decode_proxy = decode_ssr_node(ssr_urls)
clash_node = ssr_to_clash(decode_proxy)
proxy_list['proxy_list'].extend(clash_node['proxy_list'])
proxy_list['proxy_names'].extend(clash_node['proxy_names'])
return proxy_list
# 获取本地规则策略的配置文件
def load_local_config(path):
try:
f = open(path, 'r', encoding="utf-8")
local_config = yaml.load(f.read(), Loader=yaml.FullLoader)
f.close()
return local_config
except FileNotFoundError:
log('本地规则配置文件加载失败')
sys.exit()
# 将代理添加到配置文件
def add_proxies_to_model(data, model):
if model.get('proxies') is None:
model['proxies'] = data.get('proxy_list')
else:
model['proxies'].extend(data.get('proxy_list'))
for group in model.get('proxy-groups'):
if group.get('proxies') is None:
group['proxies'] = data.get('proxy_names')
else:
group['proxies'].extend(data.get('proxy_names'))
return model
# 保存配置文件
def save_config(data, path):
config = yaml.dump(data, sort_keys=False, default_flow_style=False, encoding='utf-8', allow_unicode=True)
save_to_file(config, path)
log('成功更新{}个节点'.format(len(data['proxies'])))
# 保存到文件
def save_to_file(content, path):
with open(path, 'wb') as f:
f.write(content)
# 程序入口
if __name__ == '__main__':
# 订阅地址 多个地址用;隔开
# sub_url = input('请输入订阅地址(多个地址用;隔开):')
f = open("./sub_url.txt")
sub_url = f.readline()
f.close()
if sub_url is None or sub_url == '':
sys.exit()
# 获取代理节点
proxy_node_list = get_proxies(sub_url)
# 最终合并后的配置文件
with open('./output_path.txt', 'r') as file:
lines = file.readlines()
output_paths = [line.rstrip('\n') for line in lines]
# 规则策略
rule_path = 'rule.yaml'
# 网上下载不到,就用本地的
rule_config = load_local_config(rule_path)
# 合并
final_config = add_proxies_to_model(proxy_node_list, rule_config)
for p in output_paths:
save_config(final_config, p)
print(f'文件已导出至 {p}')