You've already forked docker_fresh
mirror of
https://github.com/1C-Company/docker_fresh.git
synced 2025-12-03 23:09:11 +02:00
add site sittings and other things
This commit is contained in:
249
start.py
249
start.py
@@ -10,68 +10,117 @@ new_server = False
|
||||
global_debug = False
|
||||
configurations = {}
|
||||
|
||||
|
||||
docker_run_str = 'docker run --rm -v {}:/out_files alpine'.format(helper.this_path)
|
||||
docker_run_str = 'docker run --rm -v {}:/out_files alpine'.format(
|
||||
helper.this_path)
|
||||
docker_compose_str = 'docker-compose -f workdir/docker-compose.yml '
|
||||
|
||||
work_dir = '/out_files/workdir/'
|
||||
work_dir_other = work_dir + 'mnt/other-files/'
|
||||
local_work_dir = helper.replace_sep(helper.this_path + '/workdir/')
|
||||
|
||||
def call(command, remote=True, debug=False, action='', measure_duration=False):
|
||||
|
||||
class colors:
|
||||
GREEN = '\033[92m'
|
||||
WHITE = '\033[97m'
|
||||
|
||||
|
||||
def print_description(function_to_decorate):
|
||||
|
||||
def wrapper(*args, **kwargs):
|
||||
|
||||
if 'desc' in kwargs:
|
||||
desc = kwargs['desc']
|
||||
else:
|
||||
desc = ''
|
||||
|
||||
print(function_to_decorate.__doc__, desc, '...', end='\r')
|
||||
function_to_decorate(*args, **kwargs)
|
||||
print(function_to_decorate.__doc__,
|
||||
desc, '...', '{}done'.format(colors.GREEN), colors.WHITE)
|
||||
return wrapper
|
||||
|
||||
|
||||
def call(command, remote=True, debug=False, action='', measure_duration=False, silent=True):
|
||||
commands = []
|
||||
|
||||
if remote: commands.append(docker_run_str)
|
||||
if remote:
|
||||
commands.append(docker_run_str)
|
||||
commands.append(command)
|
||||
|
||||
if action != '': print(action)
|
||||
if debug or global_debug: print(' '.join(commands))
|
||||
if action != '':
|
||||
print(action, end='\r')
|
||||
if debug or global_debug:
|
||||
print(' '.join(commands))
|
||||
|
||||
if not silent or global_debug:
|
||||
stdout = None
|
||||
stderr = None
|
||||
else:
|
||||
stdout = subprocess.PIPE
|
||||
stderr = subprocess.PIPE
|
||||
|
||||
start_time = datetime.now()
|
||||
subprocess.call(' '.join(commands), shell=True)
|
||||
subprocess.call(' '.join(commands), shell=True,
|
||||
stdout=stdout, stderr=stderr)
|
||||
end_time = datetime.now() - start_time
|
||||
|
||||
if action != '':
|
||||
print(action, 'is fihish.', 'Duration:{}'.format(end_time) if measure_duration else '')
|
||||
if action != '':
|
||||
print(action, 'is fihish.', 'Duration:{}'.format(
|
||||
end_time) if measure_duration else '')
|
||||
|
||||
|
||||
@print_description
|
||||
def get_configurations_data():
|
||||
"""Get configuration data"""
|
||||
# r=root, d=directories, files = files
|
||||
for r, d, files in os.walk(helper.replace_sep(local_work_dir + 'mnt')):
|
||||
for file in files:
|
||||
conf_key = file.split('.')[0].split('_')[0]
|
||||
configurations[conf_key] = '.'.join(file.split('.')[0].split('_')).replace(conf_key + '.', '')
|
||||
configurations[conf_key] = '.'.join(file.split(
|
||||
'.')[0].split('_')).replace(conf_key + '.', '')
|
||||
|
||||
|
||||
def prepare_new_ib(key, post_data=''):
|
||||
|
||||
call(' '.join(helper.create_ib_command(host_name, key, configurations[key])),
|
||||
remote=False,
|
||||
action='creating ' + key,
|
||||
measure_duration=True)
|
||||
call(' '.join(helper.create_ib_command(host_name, key, configurations[key])),
|
||||
remote=False,
|
||||
action='Creating ' + key,
|
||||
measure_duration=True)
|
||||
|
||||
call(' '.join(helper.install_control_ext_command(host_name, key)),
|
||||
remote=False,
|
||||
action='installing control extension',
|
||||
measure_duration=True)
|
||||
call(' '.join(helper.install_control_ext_command(host_name, key)),
|
||||
remote=False,
|
||||
action='Installing control extension',
|
||||
measure_duration=True)
|
||||
|
||||
ext_name = helper.replace_sep(local_work_dir + 'mnt/' + key + '.cfe')
|
||||
if os.path.isfile(ext_name):
|
||||
call(' '.join(helper.install_ext_command(host_name, key)),
|
||||
remote=False,
|
||||
action='installing extension',
|
||||
measure_duration=True)
|
||||
call(' '.join(helper.install_ext_command(host_name, key)),
|
||||
remote=False,
|
||||
action='Installing extension',
|
||||
measure_duration=True)
|
||||
|
||||
if key == 'sm':
|
||||
call(' '.join(helper.install_sm_ext_command(host_name, key)),
|
||||
remote=False,
|
||||
action='Installing gate control extension',
|
||||
measure_duration=True)
|
||||
|
||||
call(' '.join(helper.disable_safe_mode(host_name, key)),
|
||||
remote=False,
|
||||
action='Disabling safe mode for extensions',
|
||||
measure_duration=True)
|
||||
|
||||
call(' '.join(helper.disable_safe_mode(host_name, key)),
|
||||
remote=False,
|
||||
action='disabling safe mode for extensions',
|
||||
measure_duration=True)
|
||||
|
||||
str_post = '-d @{}'.format(post_data) if post_data != '' else ''
|
||||
call('docker exec web.{} curl {} -X POST http://localhost/int/{}/hs/api.1cfresh/init'.format(host_name, str_post, key),
|
||||
remote=False,
|
||||
action='initialization',
|
||||
measure_duration=True)
|
||||
call('docker exec web.{} curl {} -X POST http://localhost/int/{}/hs/api.1cfresh/init'.format(host_name, str_post, key),
|
||||
remote=False,
|
||||
action='Initialization',
|
||||
measure_duration=True)
|
||||
|
||||
|
||||
@print_description
|
||||
def renew_nginx_files():
|
||||
"""Renew nginx files"""
|
||||
|
||||
conf_catalog = work_dir + 'artifacts/nginx/conf/'
|
||||
call('mkdir -p {}'.format(conf_catalog))
|
||||
call('sh -c \'cp -r /out_files/conf/nginx/* {}'.format(conf_catalog) + '\'')
|
||||
@@ -84,46 +133,77 @@ def renew_nginx_files():
|
||||
call('sh -c \'sed -i \'s/sitesitesite/site.{}/g\' {}conf.d/*.conf\''.format(host_name, conf_catalog))
|
||||
call('sh -c \'sed -i \'s/hosthosthost/{}/g\' {}conf.d/*.conf\''.format(host_name, conf_catalog))
|
||||
|
||||
|
||||
@print_description
|
||||
def renew_workdir():
|
||||
"""Renew wordir"""
|
||||
|
||||
call('rm -rf /out_files/workdir')
|
||||
call('mkdir -p {}mnt'.format(work_dir))
|
||||
call('mkdir -p {}artifacts'.format(work_dir))
|
||||
call('sh -c "cp /out_files/distr/*.cf {}mnt/"'.format(work_dir))
|
||||
|
||||
|
||||
@print_description
|
||||
def renew_docker_compose():
|
||||
"""Renew docker-compose file"""
|
||||
|
||||
call('cp /out_files/docker-compose.yml /out_files/workdir/docker-compose.yml')
|
||||
call('sh -c "sed -i \'s/HOSTNAMEREPLACE/{}/\' {}/*.yml"'.format(host_name, work_dir))
|
||||
|
||||
|
||||
@print_description
|
||||
def renew_other_files():
|
||||
"""Renew other-files"""
|
||||
|
||||
call('rm -rf ' + work_dir_other)
|
||||
call('cp -r /out_files/other_files/ ' + work_dir_other)
|
||||
call('sh -c "sed -i \'s/HOSTNAMEREPLACE/{}/\' {}vrd/*.vrd"'.format(host_name, work_dir_other))
|
||||
call('sh -c "sed -i \'s/HOSTNAMEREPLACE/{}/\' {}cfe/params.json"'.format(host_name, work_dir_other))
|
||||
call('sh -c "sed -i \'s/HOSTNAMEREPLACE/{}/\' {}params.json"'.format(host_name, work_dir_other))
|
||||
|
||||
|
||||
@print_description
|
||||
def publish_sevises():
|
||||
"""Publish services"""
|
||||
|
||||
# publish a services
|
||||
call(' '.join(helper.web_publish_command(host_name, 'adm', False, 'zoneless', 'sm')), remote=False)
|
||||
call(' '.join(helper.web_publish_command(host_name, 'smtl', False, 'withzone')), remote=False)
|
||||
call(' '.join(helper.web_publish_command(host_name, 'sa', False, 'zoneless')), remote=False)
|
||||
call(' '.join(helper.web_publish_command(host_name, 'openid', False, 'openid', 'sm')), remote=False)
|
||||
call(' '.join(helper.web_publish_command(
|
||||
host_name, 'adm', False, 'zoneless', 'sm')), remote=False)
|
||||
call(' '.join(helper.web_publish_command(
|
||||
host_name, 'smtl', False, 'withzone')), remote=False)
|
||||
call(' '.join(helper.web_publish_command(
|
||||
host_name, 'sa', False, 'zoneless')), remote=False)
|
||||
call(' '.join(helper.web_publish_command(
|
||||
host_name, 'openid', False, 'openid', 'sm')), remote=False)
|
||||
|
||||
# publish int services
|
||||
call(' '.join(helper.web_publish_command(host_name, 'sm', True, 'zoneless')), remote=False)
|
||||
call(' '.join(helper.web_publish_command(host_name, 'smtl', True, 'zoneless')), remote=False)
|
||||
call(' '.join(helper.web_publish_command(host_name, 'sa', True, 'zoneless')), remote=False)
|
||||
call(' '.join(helper.web_publish_command(host_name, 'am', True, 'zoneless')), remote=False)
|
||||
call(' '.join(helper.web_publish_command(host_name, 'sc', True, 'sessioncontrol', 'sm;Usr=SessionControl;Pwd=' + sup_password)), remote=False)
|
||||
call(' '.join(helper.web_publish_command(host_name, 'extreg', True, 'extreg', 'sm;Usr=ExtReg;Pwd=' + sup_password)), remote=False)
|
||||
call(' '.join(helper.web_publish_command(
|
||||
host_name, 'sm', True, 'zoneless')), remote=False)
|
||||
call(' '.join(helper.web_publish_command(
|
||||
host_name, 'smtl', True, 'zoneless')), remote=False)
|
||||
call(' '.join(helper.web_publish_command(
|
||||
host_name, 'sa', True, 'zoneless')), remote=False)
|
||||
call(' '.join(helper.web_publish_command(
|
||||
host_name, 'am', True, 'zoneless')), remote=False)
|
||||
call(' '.join(helper.web_publish_command(host_name, 'sc', True,
|
||||
'sessioncontrol', 'sm;Usr=SessionControl;Pwd=' + sup_password)), remote=False)
|
||||
call(' '.join(helper.web_publish_command(host_name, 'extreg', True,
|
||||
'extreg', 'sm;Usr=ExtReg;Pwd=' + sup_password)), remote=False)
|
||||
|
||||
# restart Apache
|
||||
call('docker exec web.' + host_name + ' chown -R usr1cv8:grp1cv8 /var/www', remote=False)
|
||||
call('docker exec web.' + host_name +
|
||||
' chown -R usr1cv8:grp1cv8 /var/www', remote=False)
|
||||
call('docker exec web.' + host_name + ' httpd -k graceful', remote=False)
|
||||
|
||||
|
||||
@print_description
|
||||
def set_full_host_name(is_new):
|
||||
"""Set full hostname"""
|
||||
|
||||
global host_name
|
||||
if is_new:
|
||||
part_host_name = helper.get_host_name(sys.argv)
|
||||
f = open(local_work_dir + 'hostname', 'x+')
|
||||
f = open(local_work_dir + 'hostname', 'x+')
|
||||
f.write(part_host_name)
|
||||
f.close()
|
||||
else:
|
||||
@@ -135,33 +215,96 @@ def set_full_host_name(is_new):
|
||||
print('host name is', host_name)
|
||||
|
||||
|
||||
# Destroy exist conteiners and network
|
||||
call(docker_compose_str + 'down', False)
|
||||
@print_description
|
||||
def create_db_site():
|
||||
"""Create db for site"""
|
||||
|
||||
call('docker exec -t db.{} sh -c \'/usr/bin/psql -U postgres -f {}'.format(host_name, '/create_db_site.psql\''),
|
||||
remote=False)
|
||||
|
||||
|
||||
@print_description
|
||||
def create_db_forum():
|
||||
"""Create db for forum"""
|
||||
|
||||
call('docker exec -t db.{} sh -c \'/usr/bin/psql -U postgres -f {}'.format(host_name, '/create_db_forum.psql\''),
|
||||
remote=False)
|
||||
|
||||
|
||||
@print_description
|
||||
def delete_control_extension(ib_name, user, desc):
|
||||
"""Delete control extension"""
|
||||
|
||||
call(' '.join(helper.delete_control_extension(ib_name, host_name, user)), remote=False)
|
||||
|
||||
|
||||
@print_description
|
||||
def configurate_site():
|
||||
"""Configurate site settings"""
|
||||
|
||||
call(' '.join(helper.edit_site_settings(host_name, sup_password)), remote=False)
|
||||
call('curl https://{}/settings/finish_configuration'.format(host_name), remote=False)
|
||||
call(' '.join(helper.enable_manual_registration(host_name)), remote=False)
|
||||
call(' '.join(helper.enable_openid(host_name)), remote=False)
|
||||
call(' '.join(helper.add_solution(
|
||||
host_name=host_name,
|
||||
brief_desc='БТС',
|
||||
full_desc='БТС',
|
||||
display_order=0,
|
||||
id='smtl',
|
||||
possibilities='БТС',
|
||||
title='Библиотека технологии сервиса'
|
||||
)), remote=False)
|
||||
|
||||
|
||||
@print_description
|
||||
def init_gate():
|
||||
"""Initialization gate"""
|
||||
|
||||
call('docker exec -t web.{0} curl --user Администратор: https://{0}/a/adm/hs/docker_control/update_appgate'.format(host_name),
|
||||
remote=False)
|
||||
|
||||
global_start_time = datetime.now()
|
||||
print('{}Fresh is starting{}'.format(colors.GREEN, colors.WHITE))
|
||||
# destroy exist conteiners and network
|
||||
call(docker_compose_str + 'down', remote=False, silent=False)
|
||||
|
||||
new_server = '-new' in sys.argv
|
||||
global_debug = '-debug' in sys.argv
|
||||
new_server = True
|
||||
|
||||
if new_server:
|
||||
renew_workdir()
|
||||
get_configurations_data()
|
||||
|
||||
|
||||
set_full_host_name(new_server)
|
||||
|
||||
if new_server:
|
||||
if new_server:
|
||||
renew_nginx_files()
|
||||
renew_docker_compose()
|
||||
renew_other_files()
|
||||
|
||||
|
||||
# start db srv ras web gate conteiners
|
||||
call(docker_compose_str + 'up -d db srv ras web gate', remote=False)
|
||||
call(docker_compose_str + 'up -d db srv ras web gate', remote=False, silent=False)
|
||||
|
||||
if new_server:
|
||||
create_db_site()
|
||||
create_db_forum()
|
||||
publish_sevises()
|
||||
prepare_new_ib('smtl')
|
||||
prepare_new_ib('sa')
|
||||
prepare_new_ib('am')
|
||||
prepare_new_ib('sm', post_data='/mnt/other-files/cfe/params.json')
|
||||
|
||||
prepare_new_ib('sm', post_data='/mnt/other-files/params.json')
|
||||
|
||||
# start site forum nginx conteiners
|
||||
call(docker_compose_str + 'up -d site forum nginx', remote=False, silent=False)
|
||||
|
||||
if new_server:
|
||||
delete_control_extension('smtl', 'Admin', 'smtl')
|
||||
delete_control_extension('am', 'Администратор', 'am')
|
||||
delete_control_extension('sm', 'Администратор', 'sm')
|
||||
delete_control_extension('sa', None, 'sa')
|
||||
configurate_site()
|
||||
init_gate()
|
||||
|
||||
global_end_time = datetime.now() - global_start_time
|
||||
print('{}Fresh started{}'.format(colors.GREEN, colors.WHITE), 'Duration:', global_end_time)
|
||||
|
||||
Reference in New Issue
Block a user