seafile-containerized/seafile/scripts/init.py
2021-01-18 16:04:12 +01:00

58 lines
1.5 KiB
Python

#!/usr/bin/env python3
#coding: UTF-8
"""
Starts the seafile/seahub server and watches the controller process. It is
the entrypoint command of the docker container.
"""
import json
import os
from os.path import abspath, basename, exists, dirname, join, isdir
import shutil
import sys
import time
from utils import (
call, get_conf, get_install_dir, get_script, get_command_output,
render_template, wait_for_mysql
)
from upgrade import check_upgrade
from bootstrap import init_seafile_server, is_https, init_letsencrypt, generate_local_nginx_conf
shared_seafiledir = '/shared/seafile'
ssl_dir = '/shared/ssl'
generated_dir = '/bootstrap/generated'
installdir = get_install_dir()
topdir = dirname(installdir)
def main():
call('cp -rf /scripts/setup-seafile-mysql.py ' + join(installdir, 'setup-seafile-mysql.py'))
if not exists(shared_seafiledir):
os.mkdir(shared_seafiledir)
if not exists(generated_dir):
os.makedirs(generated_dir)
if not exists(join(shared_seafiledir, 'conf')):
print('Start init')
# conf
init_seafile_server()
# nginx conf
if is_https():
init_letsencrypt()
generate_local_nginx_conf()
call('mv -f /etc/nginx/sites-enabled/seafile.nginx.conf /shared/seafile/conf/nginx.conf')
call('ln -snf /shared/seafile/conf/nginx.conf /etc/nginx/sites-enabled/default')
call('nginx -s reload')
print('Init success')
else:
print('Conf exists')
if __name__ == '__main__':
main()