forked from boypt/vmess2json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vmesseditor.py
executable file
·324 lines (264 loc) · 9.25 KB
/
vmesseditor.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
#!/usr/bin/env python3
import os
import sys
import json
import base64
import pprint
import argparse
import random
import hashlib
import binascii
import traceback
import urllib.request
import urllib.parse
import tempfile
vmscheme = "vmess://"
vlessscheme = "vless://"
ssscheme = "ss://"
def parseLink(link):
if link.startswith(ssscheme):
return parseSs(link)
elif link.startswith(vmscheme):
return parseVmess(link)
elif link.startswith(vlessscheme):
return parseVless(link)
else:
print("ERROR: unsupported line: "+link)
return None
def item2link(item):
if item["net"] == "shadowsocks":
auth = base64.b64encode(
"{method}:{password}".format(**item).encode()).decode()
addr = "{add}:{port}".format(**item)
sslink = "ss://{}@{}#{}".format(auth,
addr, urllib.parse.quote(item["ps"]))
return sslink
elif item["net"] == "vless":
linkobj = urllib.parse.urlparse(item.get("link", ""))
qs = urllib.parse.parse_qs(linkobj.query)
is_changed = False
if linkobj.hostname != item["add"] or linkobj.port != item["port"]:
is_changed = True
linkobj = linkobj._replace(
netloc="{}@{}:{}".format(linkobj.username, item["add"], linkobj.port))
if urllib.parse.unquote_plus(linkobj.fragment) != item["ps"]:
is_changed = True
linkobj = linkobj._replace(
fragment=urllib.parse.quote_plus(item["ps"]))
if qs["host"][0] != item["host"]:
is_changed = True
qs["host"] = [item["host"]]
linkobj = linkobj._replace(
query=urllib.parse.urlencode(qs, doseq=True))
if is_changed:
item["link"] = linkobj.geturl()
return item["link"]
else:
return "vmess://{}".format(base64.b64encode(json.dumps(item).encode()).decode())
def parseSs(sslink):
if sslink.startswith(ssscheme):
ps = ""
info = sslink[len(ssscheme):]
if info.rfind("#") > 0:
info, ps = info.split("#", 2)
ps = urllib.parse.unquote(ps)
if info.find("@") < 0:
# old style link
# paddings
blen = len(info)
if blen % 4 > 0:
info += "=" * (4 - blen % 4)
info = base64.b64decode(info).decode()
atidx = info.rfind("@")
method, password = info[:atidx].split(":", 2)
addr, port = info[atidx+1:].split(":", 2)
else:
atidx = info.rfind("@")
addr, port = info[atidx+1:].split(":", 2)
info = info[:atidx]
blen = len(info)
if blen % 4 > 0:
info += "=" * (4 - blen % 4)
info = base64.b64decode(info).decode()
method, password = info.split(":", 2)
return dict(net="shadowsocks", add=addr, port=port, method=method, password=password, ps=ps)
def parseVless(link):
if link.startswith(vlessscheme):
linkobj = urllib.parse.urlparse(link)
qs = urllib.parse.parse_qs(linkobj.query)
ret = dict(net="vless", link=link, port=linkobj.port,
add=linkobj.hostname, ps=urllib.parse.unquote(linkobj.fragment))
if "host" in qs:
ret["host"] = qs["host"][0]
return ret
def parseVmess(vmesslink):
if vmesslink.startswith(vmscheme):
bs = vmesslink[len(vmscheme):]
# paddings
blen = len(bs)
if blen % 4 > 0:
bs += "=" * (4 - blen % 4)
vms = base64.b64decode(bs).decode()
return json.loads(vms)
else:
raise Exception("vmess link invalid")
def menu_loop(lines):
vmesses = []
def menu_item(x):
return "[{ps}] {net}/{add}:{port}".format(**x)
for _v in lines:
_vinfo = parseLink(_v)
if _vinfo is not None:
vmesses.append({
"menu": menu_item(_vinfo),
"link": _v,
"info": _vinfo
})
while True:
print("==============================================================")
for i, item in enumerate(vmesses):
print("[{:^3}] - {}".format(i, item["menu"]))
print("""==============================================================
Commands need index as the arg (example: `edit 3')
del, edit, dup
Commands needs no args:
add, sort, sortdesc, save, quit, help
""")
try:
command = input("Choose >>>").split(" ", maxsplit=1)
if len(command) == 2:
act, _idx = command
act = act.lower()
try:
idx = int(_idx)
except ValueError:
idx = -1
if idx >= len(vmesses):
raise ValueError("Index Error", idx)
elif len(command) == 1:
act = command[0]
_idx = ""
if act == "help":
print_help()
elif act == "edit":
if idx < 0:
raise ValueError("Index Error")
try:
_edited = edit_item(vmesses[idx]["info"])
except json.decoder.JSONDecodeError:
print("Error: json syntax error")
else:
vmesses[idx] = {
"menu": menu_item(_edited),
"link": item2link(_edited),
"info": _edited
}
elif act == "add":
if _idx == "":
_v = input("input >>>")
else:
_v = _idx
_vinfo = parseLink(_v)
if _vinfo is not None:
vmesses.append({
"menu": menu_item(_vinfo),
"link": _v,
"info": _vinfo
})
elif act == "sort":
vmesses = sorted(vmesses, key=lambda i: i["info"]["ps"])
elif act == "sortdesc":
vmesses = sorted(
vmesses, key=lambda i: i["info"]["ps"], reverse=True)
elif act == "save":
output_item(vmesses)
return
elif act == "quit":
return
elif act == "del":
if idx < 0:
raise ValueError("Index Error")
del vmesses[idx]
elif act == "dup":
if idx < 0:
raise ValueError("Index Error")
cp = vmesses[idx]["info"].copy()
cp["ps"] += ".dup"
vmesses.append({
"menu": menu_item(cp),
"link": item2link(cp),
"info": cp
})
else:
print("Error: Unreconized command.")
except ValueError as e:
print(e)
except IndexError:
print("Error input: Out of range")
except KeyboardInterrupt:
return
except EOFError:
return
def print_help():
print("""
* del - Delete an item, example: del 12
* edit - Edit an item in an external editor (defaultly vi, via $EDITOR env variable) will be run for the json format.
* dup - Duplicate an item, with the 'ps' appended a suffix .dup
* add - Input a new vmess item in to the subscribtion.
* sort - Sort the items by the 'ps'.
* sortdesc - Sort the items by the 'ps' in descedent order. (reversed order)
* save - Save and quit.
* quit - Quit without saveing (same as pressing Ctrl+C).
Press Enter to return to the items menu.
""")
input()
def edit_item(item):
tfile = tempfile.NamedTemporaryFile(delete=False)
tfile.close()
with open(tfile.name, 'w') as f:
json.dump(item, f, indent=4)
editor = os.environ.get("EDITOR", "vi")
os.system("{} {}".format(editor, tfile.name))
with open(tfile.name, 'r') as f:
try:
_in = json.load(f)
finally:
os.remove(tfile.name)
return _in
def output_item(vmesses):
links = map(lambda x: x["link"], vmesses)
with open(option.edit[0], "w") as f:
f.write("\n".join(links)+"\n")
def edit_single_link(vmess):
_vinfo = parseLink(vmess)
if _vinfo is None:
return
try:
_vedited = edit_item(_vinfo)
except json.decoder.JSONDecodeError as e:
print("JSON format error:", e)
return
_link = item2link(_vedited)
print("Edited Link:")
print(_link)
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="vmess subscribe file editor.")
parser.add_argument('edit',
nargs=1,
type=str,
help="a subscribe text file, base64 encoded or not, or a single vmess:// ss:// link")
option = parser.parse_args()
arg = option.edit[0]
if os.path.exists(arg):
with open(arg) as f:
origdata = f.read().strip()
try:
lines = base64.b64decode(origdata).decode().splitlines()
except (binascii.Error, UnicodeDecodeError):
lines = origdata.splitlines()
finally:
menu_loop(lines)
else:
edit_single_link(arg)
print(" Bye :)")