2018-10-30 05:25:28 +08:00
|
|
|
#Checks functions
|
2018-10-28 10:42:24 +08:00
|
|
|
|
|
|
|
from urllib.request import urlopen
|
2018-12-06 09:06:41 +08:00
|
|
|
from os import *
|
2018-10-28 10:42:24 +08:00
|
|
|
from subprocess import check_output
|
|
|
|
from platform import system as systemos, architecture
|
|
|
|
from wget import download
|
2018-11-20 01:49:09 +08:00
|
|
|
from Defs.Languages import *
|
2018-12-06 09:06:41 +08:00
|
|
|
import os
|
|
|
|
import ctypes
|
|
|
|
|
2018-10-28 10:42:24 +08:00
|
|
|
RED, GREEN, DEFAULT = '\033[91m', '\033[1;32m', '\033[0m'
|
|
|
|
|
2018-11-30 07:20:52 +08:00
|
|
|
installGetText()
|
2018-11-29 04:56:33 +08:00
|
|
|
languageSelector()
|
|
|
|
|
2018-11-30 07:20:52 +08:00
|
|
|
|
2019-01-01 09:28:13 +08:00
|
|
|
def checkConnection(host='https://google.com'): #Connection check
|
2018-10-28 10:42:24 +08:00
|
|
|
try:
|
|
|
|
urlopen(host)
|
2018-10-31 10:28:03 +08:00
|
|
|
print(_("{0}Successful connection!{1}").format(GREEN, DEFAULT))
|
2018-10-28 10:42:24 +08:00
|
|
|
return True
|
|
|
|
except:
|
|
|
|
return False
|
2018-10-30 22:05:25 +08:00
|
|
|
|
2018-10-30 19:31:22 +08:00
|
|
|
if checkConnection() == False:
|
2018-10-31 10:28:03 +08:00
|
|
|
print (_('''{1}
|
2018-10-30 05:25:28 +08:00
|
|
|
_ _ . ___ ___ ___ _ _ {0}___ _ _ ___{1}
|
|
|
|
|__| | ] | ] | |__ |\ | {0}|__ \__/ |__{1}
|
|
|
|
| | | ]__| ]__| |__ | \| {0}|__ || |__{1}
|
|
|
|
|
2018-10-28 10:42:24 +08:00
|
|
|
{0}[{1}!{0}]{1} Network error. Verify your connection.\n
|
2018-10-31 10:28:03 +08:00
|
|
|
''').format(RED, DEFAULT))
|
2018-10-30 22:23:28 +08:00
|
|
|
exit(0)
|
2018-10-28 10:42:24 +08:00
|
|
|
|
|
|
|
def checkNgrok(): #Ngrok check
|
|
|
|
if path.isfile('Server/ngrok') == False: #Is Ngrok downloaded?
|
2018-10-31 10:28:03 +08:00
|
|
|
print(_('[*] Downloading Ngrok...'))
|
2018-10-28 10:42:24 +08:00
|
|
|
if 'Android' in str(check_output(('uname', '-a'))):
|
|
|
|
filename = 'ngrok-stable-linux-arm.zip'
|
|
|
|
else:
|
|
|
|
ostype = systemos().lower()
|
|
|
|
if architecture()[0] == '64bit':
|
|
|
|
filename = 'ngrok-stable-{0}-amd64.zip'.format(ostype)
|
|
|
|
else:
|
|
|
|
filename = 'ngrok-stable-{0}-386.zip'.format(ostype)
|
|
|
|
url = 'https://bin.equinox.io/c/4VmDzA7iaHb/' + filename
|
|
|
|
download(url)
|
|
|
|
system('unzip ' + filename)
|
|
|
|
system('mv ngrok Server/ngrok')
|
|
|
|
system('rm -Rf ' + filename)
|
|
|
|
system('clear')
|
2018-12-06 09:06:41 +08:00
|
|
|
|
|
|
|
def checkPermissions():
|
|
|
|
if systemos() == 'Linux':
|
|
|
|
if os.getuid() == 0:
|
|
|
|
print("{0}Permissions granted!".format(GREEN))
|
|
|
|
else:
|
2019-01-12 18:33:54 +08:00
|
|
|
print("{0}If possible!! Please run as sudo !!".format(RED))
|
2018-12-06 09:06:41 +08:00
|
|
|
elif systemos() == 'Windows':
|
|
|
|
if ctypes.windll.shell32.IsUserAnAdmin() != 0:
|
|
|
|
print("{0}Permissions granted!".format(GREEN))
|
|
|
|
else:
|
2019-01-12 18:33:54 +08:00
|
|
|
print("{0}If possible! Please run as administrator!".format(RED))
|
2018-12-06 09:06:41 +08:00
|
|
|
else:
|
|
|
|
raise PermissionError("{0}Permissions denied! Unexpected platform".format(RED))
|