-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_gn_module.py
65 lines (56 loc) · 1.96 KB
/
install_gn_module.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
# install_gn_module.py
import shutil
import os
import subprocess
from pathlib import Path
ROOT_DIR = Path(__file__).absolute().parent
def gnmodule_install_app(gn_db, gn_app):
'''
Fonction principale permettant de réaliser les opérations
d'installation du module :
- Base de données
- Module (pour le moment rien)
'''
with gn_app.app_context():
subprocess.call(
[
str(ROOT_DIR / 'install_db.sh'),
str(Path(gn_app.config['BASE_DIR']).parent)
],
cwd=str(gn_app.config['BASE_DIR'])
)
# Création des liens symboliques pour la configuration
try:
config_path = Path(gn_app.config['BASE_DIR']) / 'static/configs'
try:
shutil.copytree(
str(ROOT_DIR / 'configs.sample'),
str(ROOT_DIR / 'configs')
)
except OSError as e:
print('Erreur de copie')
print(e)
pass
if config_path.is_dir():
os.symlink(
str(ROOT_DIR / 'configs'),
str(config_path / 'suivi_oedic')
)
else:
raise Exception('''
unable to create config file symlink : config_path doesn't exists
''')
except Exception as e:
print(e)
# Ajout de l'application en tant que module du frontend
suivi_app_file_dir = Path(
gn_app.config.get('BASE_DIR') + gn_app.static_url_path,
'configs/suivis',
'apps.toml'
)
with open(str(ROOT_DIR / 'configs/apps.toml')) as config_oedic:
with open(str(suivi_app_file_dir), "w") as suivi_app_file:
suivi_app_file.write("\n\n")
suivi_app_file.writelines(config_oedic)
suivi_app_file.close()
config_oedic.close()