mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-24 10:17:15 +08:00
update install app
This commit is contained in:
parent
fe6a55a4ac
commit
97c74e1af0
@ -12,6 +12,7 @@ from threading import Thread
|
||||
from api.utils import shell_execute, network, docker, const
|
||||
from api.model.app import App
|
||||
from api.model.response import Response
|
||||
from api.utils import lock
|
||||
|
||||
def get_app_detail(app_id):
|
||||
|
||||
@ -185,59 +186,69 @@ def install_app_process(app_id):
|
||||
|
||||
|
||||
def install_app(app_name, customer_app_name, app_version):
|
||||
app_file_path = '/data/apps/'+app_name
|
||||
app_file_path = '/data/apps/' + app_name
|
||||
running_file_path = "/data/apps/running_apps.txt"
|
||||
unique_app_path = "/data/apps/"+customer_app_name
|
||||
unique_app_path = "/data/apps/" + customer_app_name
|
||||
is_lock = lock.install_mutex.acquire(False)
|
||||
if is_lock and not (os.path.exists(running_file_path) and os.path.getsize(running_file_path)):
|
||||
# if os.path.exists(running_file_path) and os.path.getsize(running_file_path):
|
||||
# ret = Response(code=const.RETURN_SUCCESS, message="已有应用正在启动,请稍后再试")
|
||||
# ret = ret.dict()
|
||||
|
||||
if os.path.exists(running_file_path) and os.path.getsize(running_file_path):
|
||||
ret = Response(code=const.RETURN_SUCCESS, message="已有应用正在启动,请稍后再试")
|
||||
ret = ret.dict()
|
||||
|
||||
# 防止app名重复
|
||||
app_id = app_name + "_" + customer_app_name
|
||||
if if_app_exits(app_id, customer_app_name):
|
||||
ret = Response(code=const.RETURN_FAIL,
|
||||
message="APP名称已经使用,请指定其他名称重新安装。")
|
||||
ret = ret.dict()
|
||||
return ret
|
||||
|
||||
elif docker.check_app_directory(app_name):
|
||||
if docker.check_vm_resource(app_name) == False:
|
||||
ret = Response(code=const.RETURN_FAIL, message="系统资源(内存、CPU、磁盘)不足,继续安装可能导致应用无法运行或服务器异常!")
|
||||
# 防止app名重复
|
||||
app_id = app_name + "_" + customer_app_name
|
||||
if if_app_exits(app_id, customer_app_name):
|
||||
ret = Response(code=const.RETURN_FAIL,
|
||||
message="APP名称已经使用,请指定其他名称重新安装。")
|
||||
ret = ret.dict()
|
||||
lock.install_mutex.release()
|
||||
return ret
|
||||
|
||||
if app_name != customer_app_name:
|
||||
output = shell_execute.execute_command_output_all(
|
||||
"cp -r /data/apps/" + app_name + " /data/apps/" + customer_app_name)
|
||||
if int(output["code"]) != 0:
|
||||
ret.code = const.RETURN_FAIL
|
||||
ret.message = "创建" + customer_app_name + "目录失败."
|
||||
elif docker.check_app_directory(app_name):
|
||||
if docker.check_vm_resource(app_name) == False:
|
||||
ret = Response(code=const.RETURN_FAIL, message="系统资源(内存、CPU、磁盘)不足,继续安装可能导致应用无法运行或服务器异常!")
|
||||
ret = ret.dict()
|
||||
lock.install_mutex.release()
|
||||
return ret
|
||||
env_file = unique_app_path + '/.env'
|
||||
docker.modify_env(env_file, 'APP_NAME', customer_app_name)
|
||||
|
||||
# check port
|
||||
docker.check_app_compose(customer_app_name)
|
||||
if app_version != None:
|
||||
path = "/data/apps/"+customer_app_name+"/.env"
|
||||
docker.modify_env(path, "APP_VERSION", app_version)
|
||||
t1 = Thread(target=record_and_install_app, args=(customer_app_name,))
|
||||
t1.start()
|
||||
ret = Response(code=const.RETURN_SUCCESS, message="应用正在启动中,请过几分钟再查询")
|
||||
ret = ret.dict()
|
||||
|
||||
if app_name != customer_app_name:
|
||||
output = shell_execute.execute_command_output_all(
|
||||
"cp -r /data/apps/" + app_name + " /data/apps/" + customer_app_name)
|
||||
if int(output["code"]) != 0:
|
||||
ret.code = const.RETURN_FAIL
|
||||
ret.message = "创建" + customer_app_name + "目录失败."
|
||||
ret = ret.dict()
|
||||
lock.install_mutex.release()
|
||||
return ret
|
||||
env_file = unique_app_path + '/.env'
|
||||
docker.modify_env(env_file, 'APP_NAME', customer_app_name)
|
||||
|
||||
# check port
|
||||
docker.check_app_compose(customer_app_name)
|
||||
if app_version != None:
|
||||
path = "/data/apps/"+customer_app_name+"/.env"
|
||||
docker.modify_env(path, "APP_VERSION", app_version)
|
||||
file_path = "/data/apps/running_apps.txt"
|
||||
with open(file_path, "w", encoding="utf-8") as f:
|
||||
f.write(app_name)
|
||||
t1 = Thread(target=record_and_install_app, args=(customer_app_name,))
|
||||
t1.start()
|
||||
ret = Response(code=const.RETURN_SUCCESS, message="应用正在启动中,请过几分钟再查询")
|
||||
ret = ret.dict()
|
||||
else:
|
||||
ret = Response(code=const.RETURN_FAIL, message="目前不支持安装此App")
|
||||
ret = ret.dict()
|
||||
lock.install_mutex.release()
|
||||
return ret
|
||||
else:
|
||||
ret = Response(code=const.RETURN_FAIL, message="目前不支持安装此App")
|
||||
ret = Response(code=const.RETURN_SUCCESS, message="已有应用正在启动,请稍后再试")
|
||||
ret = ret.dict()
|
||||
return ret
|
||||
return ret
|
||||
|
||||
|
||||
def record_and_install_app(app_name):
|
||||
# modify running_apps.txt
|
||||
file_path = "/data/apps/running_apps.txt"
|
||||
with open(file_path, "w", encoding="utf-8") as f:
|
||||
f.write(app_name)
|
||||
cmd = "cd /data/apps/" + app_name + " && sudo docker compose up -d"
|
||||
shell_execute.execute_command_output_all(cmd)
|
||||
with open(file_path, "a+", encoding="utf-8") as f:
|
||||
|
@ -104,6 +104,7 @@ def read_env(path, key):
|
||||
env_list = ret.split()
|
||||
for env in env_list:
|
||||
env_dic[env.split("=")[0]] = env.split("=")[1]
|
||||
myLogger.info_logger("Read " + path + ": " + str(env_dic))
|
||||
return env_dic
|
||||
|
||||
def modify_env(path, env_name, value):
|
||||
|
3
appmanage/api/utils/lock.py
Normal file
3
appmanage/api/utils/lock.py
Normal file
@ -0,0 +1,3 @@
|
||||
from threading import Lock
|
||||
|
||||
install_mutex = Lock()
|
Loading…
Reference in New Issue
Block a user