forked from awsassets/linux-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.py
400 lines (366 loc) · 11.7 KB
/
cli.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
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
import argparse
import sys
from proton.constants import VERSION as proton_version
from protonvpn_nm_lib.constants import APP_VERSION as lib_version
from protonvpn_nm_lib.enums import ProtocolEnum
from .cli_wrapper import CLIWrapper
from .constants import (APP_VERSION, CONFIG_HELP,
CONNECT_HELP, KS_HELP, LOGIN_HELP, MAIN_CLI_HELP,
NETSHIELD_HELP)
from .logger import logger
class ProtonVPNCLI:
def __init__(self):
logger.info(
"\n"
+ "---------------------"
+ "----------------"
+ "------------\n\n"
+ "-----------\t"
+ "Initialized protonvpn-cli"
+ "\t-----------\n\n"
+ "---------------------"
+ "----------------"
+ "------------"
)
logger.info(
"ProtonVPN CLI v{} "
"(protonvpn-nm-lib v{}; proton-client v{})".format(
APP_VERSION, lib_version, proton_version
)
)
self.cli_wrapper = CLIWrapper()
parser = argparse.ArgumentParser(add_help=False)
parser.add_argument("command", nargs="?")
parser.add_argument(
"-v", "--version", required=False, action="store_true"
)
parser.add_argument(
"-h", "--help", required=False, action="store_true"
)
parser.add_argument(
"--get-logs", required=False, action="store_true"
)
args = parser.parse_args(sys.argv[1:2])
if args.version:
print(
"\nProtonVPN CLI v{} "
"(protonvpn-nm-lib v{}; proton-client v{})".format(
APP_VERSION, lib_version, proton_version
)
)
res = 0
elif args.get_logs:
res = self.cli_wrapper.get_logs()
elif not args.command or not hasattr(self, args.command) or args.help:
print(MAIN_CLI_HELP)
res = 0
else:
logger.info("CLI command: {}".format(args))
res = getattr(self, args.command)()
parser.exit(res)
def c(self):
"""Shortcut to connect to ProtonVPN."""
return self.connect()
def connect(self):
"""Connect to ProtonVPN."""
parser = argparse.ArgumentParser(
description="Connect to ProtonVPN", prog="protonvpn-cli c",
add_help=False
)
group = parser.add_mutually_exclusive_group()
group.add_argument(
"servername",
nargs="?",
help="Servername (CH#4, CH-US-1, HK5-Tor).",
metavar=""
)
group.add_argument(
"-f", "--fastest",
help="Connect to the fastest ProtonVPN server.",
action="store_true"
)
group.add_argument(
"-r", "--random",
help="Connect to a random ProtonVPN server.",
action="store_true"
)
group.add_argument(
"--cc",
help="Connect to the specified country code (SE, PT, BR, AR).",
metavar=""
)
group.add_argument(
"--sc",
help="Connect to the fastest Secure-Core server.",
action="store_true"
)
group.add_argument(
"--p2p",
help="Connect to the fastest torrent server.",
action="store_true"
)
group.add_argument(
"--tor",
help="Connect to the fastest Tor server.",
action="store_true"
)
parser.add_argument(
"-p", "--protocol", help="Connect via specified protocol.",
choices=[
ProtocolEnum.TCP.value,
ProtocolEnum.UDP.value,
], metavar="", type=str.lower
)
parser.add_argument(
"-h", "--help", required=False, action="store_true"
)
args = parser.parse_args(sys.argv[2:])
logger.info("Options: {}".format(args))
if args.help:
print(CONNECT_HELP)
return 0
return self.cli_wrapper.connect(args)
def d(self):
"""Shortcut to disconnect from ProtonVPN."""
return self.disconnect()
def disconnect(self):
"""Disconnect from ProtonVPN."""
return self.cli_wrapper.disconnect()
def login(self):
"""Login ProtonVPN."""
parser = argparse.ArgumentParser(
description="Connect to ProtonVPN", prog="protonvpn-cli login",
add_help=False
)
parser.add_argument(
"username",
help="ProtonVPN username.",
nargs="?",
)
parser.add_argument(
"-h", "--help", required=False, action="store_true"
)
args = parser.parse_args(sys.argv[2:])
if args.help or args.username is None:
print(LOGIN_HELP)
return 0
return self.cli_wrapper.login(args.username)
def logout(self):
"""Logout ProtonVPN."""
return self.cli_wrapper.logout()
def s(self):
"""Shortcut to display connection status"""
return self.status()
def status(self):
"""Display connection status."""
return self.cli_wrapper.status()
def ks(self):
"""Shortcut to manage killswitch settings."""
return self.killswitch()
def killswitch(self):
"""Manage killswitch settings."""
parser = argparse.ArgumentParser(
description="Connect to ProtonVPN",
prog="protonvpn-cli killswitch",
add_help=False
)
group = parser.add_mutually_exclusive_group()
group.add_argument(
"--on",
help="Enable killswitch.",
action="store_true"
)
group.add_argument(
"--off",
help="Disable killswitch.",
action="store_true"
)
group.add_argument(
"--permanent",
help="Permanent killswitch.",
action="store_true"
)
parser.add_argument(
"-h", "--help", required=False, action="store_true"
)
args = parser.parse_args(sys.argv[2:])
if args.help or (
not args.help
and not args.on
and not args.off
and not args.permanent
):
print(KS_HELP)
return 0
logger.info("Kill Switch command: {}".format(args))
return self.cli_wrapper.set_killswitch(args)
def r(self):
"""Shortcut to reconnect."""
return self.reconnect()
def reconnect(self):
"""Reconnect to previously connected server."""
return self.cli_wrapper.reconnect()
def ns(self):
"""Shortcut to manage NetShield settings."""
return self.netshield()
def netshield(self):
"""Manage NetShield settings."""
parser = argparse.ArgumentParser(
description="Connect to ProtonVPN",
prog="protonvpn-cli netshield",
add_help=False
)
group = parser.add_mutually_exclusive_group()
group.add_argument(
"--off",
help="Disable NetShield.",
action="store_true"
)
group.add_argument(
"--malware",
help="Block malware.",
action="store_true"
)
group.add_argument(
"--ads-malware",
help="Block malware, ads, & trackers.",
action="store_true",
)
parser.add_argument(
"-h", "--help", required=False, action="store_true"
)
args = parser.parse_args(sys.argv[2:])
if args.help or (
not args.help
and not args.malware
and not args.ads_malware
and not args.off
):
print(NETSHIELD_HELP)
return 0
logger.info("NetShield command: {}".format(args))
return self.cli_wrapper.set_netshield(args)
def config(self):
"""Manage user settings."""
def custom_dns():
parser = argparse.ArgumentParser(
description="Set ProtonVPN DNS setting",
prog="protonvpn-cli config --dns custom",
add_help=False
)
group = parser.add_mutually_exclusive_group()
group.add_argument(
"--ip",
help="Custom DNS IPs.",
nargs="+",
)
args = parser.parse_args(sys.argv[4:])
logger.info("Config DNS command: {}".format(args))
if not args.ip:
print(CONFIG_HELP)
return 0
return self.cli_wrapper.configurations_menu(args)
parser = argparse.ArgumentParser(
description="Connect to ProtonVPN", prog="protonvpn-cli config",
add_help=False
)
group = parser.add_mutually_exclusive_group()
parser.add_argument(
"-h", "--help", required=False, action="store_true"
)
group.add_argument(
"--dns",
help="DNS settings.",
nargs=1,
choices=[
"automatic",
"custom",
]
)
group.add_argument(
"--vpn-accelerator",
help="VPN Accelerator enables a set of unique performance "
"enhancing technologies which can increase VPN speeds "
"by up to 400%",
nargs=1,
choices=[
"enable",
"disable",
]
)
group.add_argument(
"-p", "--protocol",
help="Protocol settings.",
nargs=1,
choices=[
ProtocolEnum.TCP.value,
ProtocolEnum.UDP.value,
]
)
group.add_argument(
"--alt-routing",
help="Alternative routing.",
nargs=1,
choices=[
"enable",
"disable",
]
)
group.add_argument(
"--moderate-nat",
help="Moderate NAT.",
nargs=1,
choices=[
"enable",
"disable",
]
)
group.add_argument(
"--non-standard-ports",
help="Non Standard Ports.",
nargs=1,
choices=[
"enable",
"disable",
]
)
group.add_argument(
"-d", "--default",
help="Reset do default configurations.",
action="store_true"
)
group.add_argument(
"-l", "--list",
help="List user settings.",
action="store_true"
)
args = parser.parse_args(sys.argv[2:4])
args2 = parser.parse_args(sys.argv[2:4])
logger.info("Config command: {}".format(args2))
if (
args.help
or (
not args.dns
and not args.protocol
and not args.help
and not args.default
and not args.list
and not args.vpn_accelerator
and not args.alt_routing
and not args.moderate_nat
and not args.non_standard_ports
)
):
print(CONFIG_HELP)
return 0
elif (
not args.protocol
and not args.default
and not args.alt_routing
and not args.vpn_accelerator
and not args.moderate_nat
and not args.non_standard_ports
and not args.help
) and args.dns and args.dns.pop() == "custom":
return custom_dns()
return self.cli_wrapper.configurations_menu(args2)