2017-02-07 08:56:51 -07:00
|
|
|
#!/usr/bin/env python
|
2017-02-12 03:14:21 -07:00
|
|
|
# -*- coding: cp852 -*-
|
2017-02-07 08:56:51 -07:00
|
|
|
|
|
|
|
import sys
|
|
|
|
import getopt
|
|
|
|
import os
|
|
|
|
import subprocess
|
2017-02-12 03:14:21 -07:00
|
|
|
sys.path.insert(0, './locale')
|
2017-02-07 08:56:51 -07:00
|
|
|
|
2017-02-12 03:14:21 -07:00
|
|
|
# ###################
|
|
|
|
# ## OPTIONS ########
|
|
|
|
# ###################
|
2017-02-07 08:56:51 -07:00
|
|
|
site_name = ''
|
|
|
|
site_language = ''
|
|
|
|
installed_sites = 0
|
|
|
|
flux_cont = ''
|
2017-02-12 03:14:21 -07:00
|
|
|
#flux_comp_versions = ['0.24']
|
|
|
|
flinstall_version = '0.11'
|
|
|
|
# ###################
|
|
|
|
class color:
|
|
|
|
PURPLE = '\033[95m'
|
|
|
|
CYAN = '\033[96m'
|
|
|
|
DARKCYAN = '\033[36m'
|
|
|
|
BLUE = '\033[94m'
|
|
|
|
GREEN = '\033[92m'
|
|
|
|
YELLOW = '\033[93m'
|
|
|
|
RED = '\033[91m'
|
|
|
|
BOLD = '\033[1m'
|
|
|
|
UNDERLINE = '\033[4m'
|
|
|
|
END = '\033[0m'
|
2017-02-07 08:56:51 -07:00
|
|
|
|
|
|
|
def main(argv):
|
|
|
|
global site_name, site_language
|
|
|
|
if os.geteuid() != 0:
|
2017-02-12 03:14:21 -07:00
|
|
|
exit('You need to have root privileges to run this script.\nPlease try again, this time using \'sudo\'. Exiting....')
|
2017-02-07 08:56:51 -07:00
|
|
|
sys.exit()
|
2017-02-12 03:14:21 -07:00
|
|
|
usage = '>>>\tUsage:\n' +'\t\tsiteinstaller.py -f <filename>' +'\n\t\tsiteinstaller.py --file <file>\n\n>>>\tOnly *.tar.gz compressed files!'
|
2017-02-07 08:56:51 -07:00
|
|
|
try:
|
|
|
|
opts, args = getopt.getopt(sys.argv[1:], 'f:h', ['file=', 'help'])
|
|
|
|
if(len(opts) <= 0):
|
|
|
|
print(usage)
|
|
|
|
sys.exit()
|
|
|
|
except getopt.GetoptError:
|
|
|
|
print(usage)
|
|
|
|
sys.exit(2)
|
|
|
|
|
|
|
|
for opt, arg in opts:
|
|
|
|
if opt in ('-h', '--help'):
|
|
|
|
print(usage)
|
|
|
|
sys.exit(2)
|
|
|
|
elif opt in ('-f', '--file'):
|
|
|
|
if not('.tar.gz' in arg):
|
2017-02-12 03:14:21 -07:00
|
|
|
print('ONLY *.tar.gz files supported.')
|
2017-02-07 08:56:51 -07:00
|
|
|
sys.exit()
|
|
|
|
if(os.path.isfile(arg) == False):
|
|
|
|
print('Your file does not exist, maybe a typo?')
|
|
|
|
sys.exit()
|
|
|
|
site_name = arg[:arg.rfind('.tar.gz')]
|
|
|
|
site_language = site_name[site_name.rfind('_')+1:]
|
|
|
|
else:
|
|
|
|
print(usage)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main(sys.argv[1:])
|
|
|
|
|
2017-02-12 03:14:21 -07:00
|
|
|
# Language Selector
|
|
|
|
print('\033[1;91m [~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~]')
|
|
|
|
print(' [ ]')
|
|
|
|
print(' [ FluxIon - Site Installer v' + flinstall_version + ' ]')
|
|
|
|
print('\033[94m [ ]')
|
|
|
|
print(' [~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~]')
|
|
|
|
print('\033[39m')
|
|
|
|
print(' # Select your language:')
|
|
|
|
print('')
|
|
|
|
print('[1] English')
|
|
|
|
print('[2] German')
|
|
|
|
print('')
|
|
|
|
lang = raw_input(' [#]:')
|
|
|
|
if(lang == '1'):
|
|
|
|
from en_EN import language
|
|
|
|
elif(lang == '2'):
|
|
|
|
from de_DE import language
|
|
|
|
else:
|
|
|
|
from en_EN import language
|
|
|
|
|
|
|
|
# ###############
|
|
|
|
|
2017-02-07 08:56:51 -07:00
|
|
|
def check_fluxion():
|
|
|
|
global installed_sites, flux_cont
|
|
|
|
try:
|
|
|
|
fl = open('fluxion','rw')
|
|
|
|
flux_cont = fl.read()
|
|
|
|
fl.close()
|
|
|
|
except:
|
2017-02-12 03:14:21 -07:00
|
|
|
print(language.COULD_NOT_OPEN_FLUX)
|
2017-02-07 08:56:51 -07:00
|
|
|
sys.exit()
|
|
|
|
if(flux_cont <= 100):
|
2017-02-12 03:14:21 -07:00
|
|
|
print(language.NO_FLUXION_FOUND)
|
2017-02-07 08:56:51 -07:00
|
|
|
sys.exit()
|
|
|
|
flv = ''
|
|
|
|
flr = ''
|
|
|
|
fld = ''
|
|
|
|
if('version=' in flux_cont) and ('revision=' in flux_cont):
|
|
|
|
flv = flux_cont[flux_cont.find('version=')+8:]
|
|
|
|
flv = flv[:flv.find('\n')]
|
|
|
|
flr = flux_cont[flux_cont.find('revision=')+9:]
|
|
|
|
flr = flr[:flr.find('\n')]
|
|
|
|
else:
|
2017-02-12 03:14:21 -07:00
|
|
|
print(language.CORRUPTED_FLUX)
|
2017-02-07 08:56:51 -07:00
|
|
|
sys.exit()
|
2017-02-12 03:14:21 -07:00
|
|
|
|
|
|
|
# Version check
|
|
|
|
#vchk = False
|
|
|
|
#for version in flux_comp_versions:
|
|
|
|
# if(version == flv):
|
|
|
|
# vchk = True
|
|
|
|
#if(vchk == False):
|
|
|
|
# print('Your fluxion version '+color.BOLD + flv + color.END + '. \nSupported versions are - ' + ' - '.join(reversed(flux_comp_versions)))
|
|
|
|
# sys.exit()
|
|
|
|
# ###############
|
|
|
|
|
|
|
|
installed_sites = int(flux_cont.count('elif [ "$webconf" ='))
|
|
|
|
fls = str(installed_sites + 1)
|
|
|
|
|
2017-02-07 08:56:51 -07:00
|
|
|
# Check on double installation!
|
|
|
|
fld = flux_cont[flux_cont.find('$DUMP_PATH/data/index.htm'):]
|
|
|
|
if(site_name in fld):
|
2017-02-12 03:14:21 -07:00
|
|
|
usdc = raw_input(language.DOUBLE_INSTALL + ' "' + site_name + '" ' + language.CONTINUE_ANYWAY + ' [Y\\n]')
|
2017-02-07 08:56:51 -07:00
|
|
|
if(len(usdc) <= 0) or (usdc == 'y') or (usdc == 'yes'):
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
sys.exit()
|
2017-02-12 03:14:21 -07:00
|
|
|
# ###############
|
|
|
|
|
2017-02-07 08:56:51 -07:00
|
|
|
return flv + '#' + flr + '#' + fls
|
|
|
|
|
|
|
|
def welcome():
|
|
|
|
flc = check_fluxion().split('#')
|
|
|
|
wsn = int(22 - len(site_name))
|
|
|
|
whitespacen = ''
|
|
|
|
wsl = int((22+6) - len(site_language))
|
|
|
|
whitespacel = ''
|
|
|
|
for i in xrange(wsn):
|
|
|
|
whitespacen += ' '
|
|
|
|
if(i+1 == wsn) and (i+1 <= wsn):
|
|
|
|
whitespacen += '#'
|
|
|
|
for i in xrange(wsl):
|
|
|
|
whitespacel += ' '
|
|
|
|
if(i+1 == wsl) and (i+1 <= wsl):
|
|
|
|
whitespacel += '#'
|
|
|
|
|
2017-02-12 03:14:21 -07:00
|
|
|
print('\033[1;91m [~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~]')
|
|
|
|
print(' [ ]')
|
|
|
|
print(' [ FluxIon - Site Installer v'+ flinstall_version + ' ]')
|
|
|
|
print('\033[94m [ ]')
|
|
|
|
print(' [~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~]')
|
|
|
|
print('\033[39m')
|
|
|
|
print(' # ############## FluxIon found! ##############')
|
|
|
|
print(' # \033[39mVersion: '+ flc[0] +' #')
|
|
|
|
print(' # \033[39mRevision: '+ flc[1] +' #')
|
|
|
|
print(' # \033[39mInstalled Sites: '+ flc[2] +' #')
|
2017-02-07 08:56:51 -07:00
|
|
|
print(' # ############################################')
|
|
|
|
print('')
|
|
|
|
print(' # ############################################')
|
2017-02-12 03:14:21 -07:00
|
|
|
print(' # \033[39mSiteName to install: ' + site_name + whitespacen)
|
|
|
|
print(' # \033[39mLanguage flag: ' + site_language + whitespacel)
|
2017-02-07 08:56:51 -07:00
|
|
|
print(' # ############################################')
|
|
|
|
print('')
|
|
|
|
print(' # ########### Everything correct? ############')
|
|
|
|
print('')
|
2017-02-12 03:14:21 -07:00
|
|
|
usc = raw_input(' # ' + language.BEGIN_INSTALL + '? [Y\\n]').lower()
|
2017-02-07 08:56:51 -07:00
|
|
|
if(len(usc) <= 0) or (usc == 'y') or (usc == 'yes'):
|
|
|
|
pass
|
|
|
|
else:
|
2017-02-12 03:14:21 -07:00
|
|
|
print('\n\t # ' + language.NOTHING_CHANGED)
|
2017-02-07 08:56:51 -07:00
|
|
|
sys.exit()
|
|
|
|
|
2017-02-12 03:14:21 -07:00
|
|
|
# ########################################################################################
|
|
|
|
# ########################################################################################
|
|
|
|
# ########################################################################################
|
|
|
|
# ########################################################################################
|
|
|
|
# ########################################################################################
|
|
|
|
# ########################################################################################
|
|
|
|
# ########################################################################################
|
2017-02-07 08:56:51 -07:00
|
|
|
welcome()
|
|
|
|
|
2017-02-12 03:14:21 -07:00
|
|
|
# ###### First INSERT
|
2017-02-07 08:56:51 -07:00
|
|
|
def insert_at_secondlast_pos1():
|
|
|
|
global flux_cont, site_name, site_language
|
|
|
|
whitespaces = ''
|
|
|
|
search_string = 'echo -e " "$red"["$yellow"$n"$red"]"$transparent"\e'
|
|
|
|
ws = int(12 - len(site_name))
|
|
|
|
for i in xrange(ws):
|
|
|
|
whitespaces+=' '
|
|
|
|
insert_site = 'echo -e " "$red"["$yellow"$n"$red"]"$transparent" ' + site_name + whitespaces + '[' + site_language + '] ";n=` expr $n + 1`\n'
|
|
|
|
before = flux_cont[:int(flux_cont.rfind(search_string))]
|
|
|
|
after = '\t\t\t' + flux_cont[int(flux_cont.rfind(search_string)):]
|
|
|
|
flux_cont = before + insert_site + after
|
2017-02-12 03:14:21 -07:00
|
|
|
# ##########################################
|
2017-02-07 08:56:51 -07:00
|
|
|
|
2017-02-12 03:14:21 -07:00
|
|
|
# ###### Second INSERT
|
2017-02-07 08:56:51 -07:00
|
|
|
def insert_at_secondlast_pos2():
|
|
|
|
global installed_sites, flux_cont, site_name
|
|
|
|
site_number = str(installed_sites +1)
|
2017-02-12 03:14:21 -07:00
|
|
|
insert_site = 'elif [ "$webconf" = "'+ site_number +'" ]; then\n\t\t\t\t' + site_name + '\n\t\t\t\tbreak\n\n\t\t\t'
|
|
|
|
flux_cont = flux_cont[:int(flux_cont.rfind('elif [ "$webconf" ='))] + insert_site + flux_cont[int(flux_cont.rfind('elif [ "$webconf" =')):]
|
2017-02-07 08:56:51 -07:00
|
|
|
|
|
|
|
def last_option_correct_number2():
|
|
|
|
global installed_sites, flux_cont
|
2017-02-12 03:14:21 -07:00
|
|
|
acc = int(flux_cont.rfind('elif [ "$webconf" ='))
|
2017-02-07 08:56:51 -07:00
|
|
|
acc0 = int(flux_cont[acc:].find('" = "')+5)
|
|
|
|
before = flux_cont[:acc+acc0]
|
|
|
|
after = flux_cont[acc+acc0+2:]
|
|
|
|
flux_cont = before + str(installed_sites+2) + after
|
2017-02-12 03:14:21 -07:00
|
|
|
# ##########################################
|
2017-02-07 08:56:51 -07:00
|
|
|
|
2017-02-12 03:14:21 -07:00
|
|
|
# ###### Third INSERT
|
2017-02-07 08:56:51 -07:00
|
|
|
def insert_at_last_pos3():
|
|
|
|
global flux_cont, site_name
|
|
|
|
insert_site = '\n\nfunction ' + site_name + ' {\n\tmkdir $DUMP_PATH/data &>$flux_output_device\n\tcp $WORK_DIR/Sites/' + site_name + '/* $DUMP_PATH/data\n\t}'
|
|
|
|
before = flux_cont[:int(flux_cont.rfind('}'))+1]
|
|
|
|
after = flux_cont[int(flux_cont.rfind('}'))+1:]
|
|
|
|
flux_cont = before + insert_site + after
|
2017-02-12 03:14:21 -07:00
|
|
|
# ##########################################
|
2017-02-07 08:56:51 -07:00
|
|
|
|
|
|
|
print('')
|
2017-02-12 03:14:21 -07:00
|
|
|
print(' # '+ language.CREATING_BACKUP +'...')
|
2017-02-07 08:56:51 -07:00
|
|
|
try:
|
|
|
|
subprocess.Popen(['cp','fluxion', 'bckp_fluxion'])
|
|
|
|
except:
|
2017-02-12 03:14:21 -07:00
|
|
|
print(language.NO_PERM)
|
2017-02-07 08:56:51 -07:00
|
|
|
sys.exit()
|
2017-02-12 03:14:21 -07:00
|
|
|
print(' # ' + language.DONE + '!')
|
2017-02-07 08:56:51 -07:00
|
|
|
|
|
|
|
print('')
|
2017-02-12 03:14:21 -07:00
|
|
|
print(' # ' + language.COPYING_FILES + '...')
|
2017-02-07 08:56:51 -07:00
|
|
|
try:
|
2017-02-12 03:14:21 -07:00
|
|
|
subprocess.Popen(['tar','xfz', site_name + '.tar.gz', '-C', 'Sites/'])
|
2017-02-07 08:56:51 -07:00
|
|
|
except:
|
2017-02-12 03:14:21 -07:00
|
|
|
print(language.COULD_NOT_COPY + '...')
|
2017-02-07 08:56:51 -07:00
|
|
|
sys.exit()
|
2017-02-12 03:14:21 -07:00
|
|
|
print(' # ' + language.DONE + '!')
|
2017-02-07 08:56:51 -07:00
|
|
|
|
|
|
|
print('')
|
2017-02-12 03:14:21 -07:00
|
|
|
print(' # ' + language.RECONFIGURE_FLUXION_BASH + '...')
|
2017-02-07 08:56:51 -07:00
|
|
|
try:
|
|
|
|
insert_at_secondlast_pos1()
|
|
|
|
insert_at_secondlast_pos2()
|
|
|
|
last_option_correct_number2()
|
|
|
|
insert_at_last_pos3()
|
|
|
|
except:
|
2017-02-12 03:14:21 -07:00
|
|
|
print(language.INTERNAL_FAILURE + '...')
|
2017-02-07 08:56:51 -07:00
|
|
|
e = sys.exc_info()[0]
|
2017-02-12 03:14:21 -07:00
|
|
|
print(language.ERROR + ": %s" % e )
|
2017-02-07 08:56:51 -07:00
|
|
|
sys.exit()
|
|
|
|
|
2017-02-12 03:14:21 -07:00
|
|
|
print(' # ' + language.DONE + '!')
|
2017-02-07 08:56:51 -07:00
|
|
|
|
|
|
|
print('')
|
2017-02-12 03:14:21 -07:00
|
|
|
print(' # '+ language.REWRITING_FLUXION_BASH + '...')
|
2017-02-07 08:56:51 -07:00
|
|
|
try:
|
|
|
|
wflux = open('fluxion','w')
|
|
|
|
wflux.write(flux_cont)
|
|
|
|
wflux.close()
|
|
|
|
except:
|
2017-02-12 03:14:21 -07:00
|
|
|
print(language.FATAL_ERROR + '[501]...')
|
|
|
|
print(language.TRYING_TO_RESTORE_BACKUP)
|
2017-02-07 08:56:51 -07:00
|
|
|
try:
|
|
|
|
subprocess.Popen(['mv','bckp_fluxion', 'fluxion'])
|
2017-02-12 03:14:21 -07:00
|
|
|
print('FluxIon ' + language.BACKUP_RESTORED + '...')
|
2017-02-07 08:56:51 -07:00
|
|
|
except:
|
2017-02-12 03:14:21 -07:00
|
|
|
print(language.FATAL_ERROR + '[502]...')
|
2017-02-07 08:56:51 -07:00
|
|
|
sys.exit()
|
2017-02-12 03:14:21 -07:00
|
|
|
print(' # ' + language.DONE + '!')
|
2017-02-07 08:56:51 -07:00
|
|
|
|
|
|
|
print('')
|
2017-02-12 03:14:21 -07:00
|
|
|
print(' # ' + language.SETTING_MODES + '...')
|
2017-02-07 08:56:51 -07:00
|
|
|
try:
|
2017-02-12 03:14:21 -07:00
|
|
|
subprocess.Popen(['chmod','755', 'Sites/' + site_name +'/'])
|
|
|
|
subprocess.Popen(['chmod','644', '-R', 'Sites/' + site_name +'/'])
|
|
|
|
print(' # ' + DONE + '!')
|
2017-02-07 08:56:51 -07:00
|
|
|
except:
|
2017-02-12 03:14:21 -07:00
|
|
|
pass
|
|
|
|
#print('ERROR[506]... ' + language.CONTINUE + '...')
|
|
|
|
#print("Unexpected error:", sys.exc_info()[0])
|
2017-02-07 08:56:51 -07:00
|
|
|
|
|
|
|
print('')
|
2017-02-12 03:14:21 -07:00
|
|
|
print(' # ' + language.VERIFYING_INTEG + '...')
|
2017-02-07 08:56:51 -07:00
|
|
|
try:
|
|
|
|
fluxit = open('fluxion','r')
|
|
|
|
integ_fluxion = fluxit.read()
|
|
|
|
fluxit.close()
|
|
|
|
if(len(integ_fluxion) == len(flux_cont)):
|
2017-02-12 03:14:21 -07:00
|
|
|
print(' # ' + language.DONE + '!')
|
|
|
|
print(' # ' + language.DELETING_BACKUP + '...')
|
2017-02-07 08:56:51 -07:00
|
|
|
subprocess.Popen(['rm','bckp_fluxion'])
|
|
|
|
else:
|
2017-02-12 03:14:21 -07:00
|
|
|
print(language.FATAL_ERROR + '[509]...')
|
2017-02-07 08:56:51 -07:00
|
|
|
sys.exit()
|
|
|
|
except:
|
2017-02-12 03:14:21 -07:00
|
|
|
print(language.FATAL_ERROR + '[503]...')
|
2017-02-07 08:56:51 -07:00
|
|
|
sys.exit()
|
|
|
|
|
2017-02-12 03:14:21 -07:00
|
|
|
print('\n # ' + site_name + '" ' + language.SUCCESS + '!')
|
2017-02-07 08:56:51 -07:00
|
|
|
|
|
|
|
|