@@ -45,14 +45,16 @@ class PostgresEnvVariables:
45
45
DB_PORT : str
46
46
DOMAIN_HOST : str
47
47
HOST_PROTOCOL : str
48
+ SECRET_KEY : str
48
49
# 'DB_ENGINE=django.db.backends.postgresql
49
50
# DB_NAME=bot_constructor
50
51
# POSTGRES_USER=postgres
51
52
# POSTGRES_PASSWORD=zarFad-huqdit-qavry0
52
53
# DB_HOST=172.21.0.1
53
54
# DB_PORT=5432
54
55
# DOMAIN_HOST=ramasuchka.kz
55
- # HOST_PROTOCOL=https'
56
+ # HOST_PROTOCOL=https
57
+ # SECRET_KEY='
56
58
57
59
58
60
def get_script_dir_path () -> Path :
@@ -857,6 +859,9 @@ def write_postgres_env_variables_json() -> None:
857
859
),
858
860
HOST_PROTOCOL = input (
859
861
'Enter \' HOST_PROTOCOL\' value (push \' Enter\' for default - \" https\" ): '
862
+ ),
863
+ SECRET_KEY = input (
864
+ 'Enter \' SECRET_KEY\' value (has no default value, should be entered!): '
860
865
)
861
866
)
862
867
if postgres_env_variables .DB_ENGINE == '' :
@@ -875,6 +880,14 @@ def write_postgres_env_variables_json() -> None:
875
880
postgres_env_variables .DOMAIN_HOST = 'ramasuchka.kz'
876
881
if postgres_env_variables .HOST_PROTOCOL == '' :
877
882
postgres_env_variables .HOST_PROTOCOL = 'https'
883
+ if postgres_env_variables .SECRET_KEY == '' :
884
+ print (
885
+ f'Значение аргумента \' SECRET_KEY\' не было задано - '
886
+ f'функционирование базы данных в данном случае невозможно'
887
+ f'Скрипт остановлен'
888
+ f'Для осуществления разворота выполните перезапуск скрипта'
889
+ )
890
+ exit (0 )
878
891
assert isinstance (postgres_env_variables , PostgresEnvVariables )
879
892
params = {
880
893
'DB_ENGINE' : postgres_env_variables .DB_ENGINE ,
@@ -884,7 +897,8 @@ def write_postgres_env_variables_json() -> None:
884
897
'DB_HOST' : postgres_env_variables .DB_HOST ,
885
898
'DB_PORT' : postgres_env_variables .DB_PORT ,
886
899
'DOMAIN_HOST' : postgres_env_variables .DOMAIN_HOST ,
887
- 'HOST_PROTOCOL' : postgres_env_variables .HOST_PROTOCOL
900
+ 'HOST_PROTOCOL' : postgres_env_variables .HOST_PROTOCOL ,
901
+ 'SECRET_KEY' : postgres_env_variables .SECRET_KEY
888
902
}
889
903
with open (f'{ get_postgres_env_file_path ()} _json' , 'wt' , encoding = 'utf-8' ) as envfile :
890
904
json .dump (params , envfile )
@@ -917,6 +931,7 @@ def convert_postgres_env_variables_json_to_text() -> None:
917
931
envfile .writelines (f'DB_PORT={ postgres_env_variables .DB_PORT } \n ' )
918
932
envfile .writelines (f'DOMAIN_HOST={ postgres_env_variables .DOMAIN_HOST } \n ' )
919
933
envfile .writelines (f'HOST_PROTOCOL={ postgres_env_variables .HOST_PROTOCOL } ' )
934
+ envfile .writelines (f'SECRET_KEY={ postgres_env_variables .SECRET_KEY } ' )
920
935
print (
921
936
f'\n ---------------------------------------------------------\n '
922
937
f'postgres environment variables were written into file'
@@ -930,6 +945,7 @@ def convert_postgres_env_variables_json_to_text() -> None:
930
945
f'DB_PORT={ postgres_env_variables .DB_PORT } \n '
931
946
f'DOMAIN_HOST={ postgres_env_variables .DOMAIN_HOST } \n '
932
947
f'HOST_PROTOCOL={ postgres_env_variables .HOST_PROTOCOL } \n '
948
+ f'SECRET_KEY={ postgres_env_variables .SECRET_KEY } \n '
933
949
f'\n ---------------------------------------------------------\n '
934
950
)
935
951
@@ -955,7 +971,8 @@ def read_postgres_env_variables_json() -> PostgresEnvVariables:
955
971
DB_HOST = postgres_env_variables ['DB_HOST' ],
956
972
DB_PORT = postgres_env_variables ['DB_PORT' ],
957
973
DOMAIN_HOST = postgres_env_variables ['DOMAIN_HOST' ],
958
- HOST_PROTOCOL = postgres_env_variables ['HOST_PROTOCOL' ]
974
+ HOST_PROTOCOL = postgres_env_variables ['HOST_PROTOCOL' ],
975
+ SECRET_KEY = postgres_env_variables ['SECRET_KEY' ]
959
976
)
960
977
961
978
return postgres_env_variables
@@ -1000,6 +1017,7 @@ def get_postgres_env_variables() -> PostgresEnvVariables:
1000
1017
print (f'DB_PORT: { postgres_env_variables .DB_PORT } ' )
1001
1018
print (f'DOMAIN_HOST: { postgres_env_variables .DOMAIN_HOST } ' )
1002
1019
print (f'HOST_PROTOCOL: { postgres_env_variables .HOST_PROTOCOL } ' )
1020
+ print (f'SECRET_KEY: { postgres_env_variables .SECRET_KEY } ' )
1003
1021
return postgres_env_variables
1004
1022
1005
1023
0 commit comments