From 8cf49757130b4cc4735441e640493606b46b3af8 Mon Sep 17 00:00:00 2001 From: terrtia Date: Mon, 1 Jul 2024 14:56:35 +0200 Subject: [PATCH] chg: [update] add v5.7 update --- update/v5.7/Update.py | 38 ++++++++++++++++++++++++++++++++++++++ update/v5.7/Update.sh | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100755 update/v5.7/Update.py create mode 100755 update/v5.7/Update.sh diff --git a/update/v5.7/Update.py b/update/v5.7/Update.py new file mode 100755 index 00000000..06f720fb --- /dev/null +++ b/update/v5.7/Update.py @@ -0,0 +1,38 @@ +#!/usr/bin/env python3 +# -*-coding:UTF-8 -* + +import os +import sys + +from datetime import datetime + +sys.path.append(os.environ['AIL_HOME']) +################################## +# Import Project packages +################################## +from update.bin.ail_updater import AIL_Updater +from lib import ail_users +from lib.ConfigLoader import ConfigLoader + + +class Updater(AIL_Updater): + """default Updater.""" + + def __init__(self, version): + super(Updater, self).__init__(version) + + +if __name__ == '__main__': + config_loader = ConfigLoader() + r_serv_db = config_loader.get_db_conn("Kvrocks_DB") + config_loader = None + date = datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S') + + for user_id in ail_users.get_users(): + r_serv_db.hset(f'ail:user:metadata:{user_id}', 'creator', 'admin@admin.test') + r_serv_db.hset(f'ail:user:metadata:{user_id}', 'created_at', date) + r_serv_db.hset(f'ail:user:metadata:{user_id}', 'last_edit', date) + + updater = Updater('v5.7') + updater.run_update() + diff --git a/update/v5.7/Update.sh b/update/v5.7/Update.sh new file mode 100755 index 00000000..914a4a95 --- /dev/null +++ b/update/v5.7/Update.sh @@ -0,0 +1,34 @@ +#!/bin/bash + +[ -z "$AIL_HOME" ] && echo "Needs the env var AIL_HOME. Run the script from the virtual environment." && exit 1; +[ -z "$AIL_REDIS" ] && echo "Needs the env var AIL_REDIS. Run the script from the virtual environment." && exit 1; +[ -z "$AIL_BIN" ] && echo "Needs the env var AIL_ARDB. Run the script from the virtual environment." && exit 1; +[ -z "$AIL_FLASK" ] && echo "Needs the env var AIL_FLASK. Run the script from the virtual environment." && exit 1; + +export PATH=$AIL_HOME:$PATH +export PATH=$AIL_REDIS:$PATH +export PATH=$AIL_BIN:$PATH +export PATH=$AIL_FLASK:$PATH + +GREEN="\\033[1;32m" +DEFAULT="\\033[0;39m" + +echo -e $GREEN"Shutting down AIL ..."$DEFAULT +bash ${AIL_BIN}/LAUNCH.sh -ks +wait + +# SUBMODULES # +git submodule update + +bash ${AIL_BIN}/LAUNCH.sh -lrv +bash ${AIL_BIN}/LAUNCH.sh -lkv + +echo "" +echo -e $GREEN"Updating AIL VERSION ..."$DEFAULT +echo "" +python ${AIL_HOME}/update/v5.7/Update.py +wait +echo "" +echo "" + +exit 0