1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/immich_ynh.git synced 2024-09-03 20:36:24 +02:00
immich_ynh/scripts/upgrade

105 lines
4.7 KiB
Text
Raw Normal View History

2022-08-30 19:10:45 +02:00
#!/bin/bash
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2024-03-26 06:53:38 +01:00
ynh_systemd_action --service_name="$app-server" --action="stop"
2024-06-15 13:39:04 +02:00
ynh_systemd_action --service_name="$app-microservices" --action="stop"
2024-03-26 06:53:38 +01:00
ynh_systemd_action --service_name="$app-machine-learning" --action="stop"
2022-08-30 19:10:45 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2024-06-15 13:39:04 +02:00
#ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2022-08-30 19:10:45 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
2022-08-30 19:10:45 +02:00
#=================================================
ynh_script_progression --message="Upgrading source files..." --weight=1
2024-04-07 21:25:25 +02:00
ynh_secure_remove --file="$install_dir"
source_dir="$install_dir/source"
ynh_setup_source --source_id="main" --dest_dir="$source_dir" --full_replace=1
2024-03-26 06:53:38 +01:00
#=================================================
# CHECK PYTHON VERSION AND COMPILE IF NEEDED
#=================================================
ynh_script_progression --message="Check Python version & compile the required one if needed..." --weight=1
2024-04-01 20:43:52 +02:00
2024-04-01 10:43:40 +02:00
py_required_major=$(cat "$source_dir/machine-learning/Dockerfile" | grep "FROM python:" | head -n1 | cut -d':' -f2 | cut -d'-' -f1)
myynh_py_latest_from_major --python="$py_required_major"
myynh_install_python --python="$py_required_version"
2024-03-26 06:53:38 +01:00
#=================================================
# INSTALL NODEJS
#=================================================
ynh_script_progression --message="Installing nodejs..." --weight=1
2024-04-01 20:43:52 +02:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version="$nodejs_version"
2024-03-26 06:53:38 +01:00
#=================================================
# MAKE INSTALL
#=================================================
ynh_script_progression --message="Making install..." --weight=5
2024-04-01 20:43:52 +02:00
myynh_install_immich
2022-08-30 19:10:45 +02:00
#=================================================
2024-03-26 06:53:38 +01:00
# UPDATE A CONFIG FILE
2022-08-30 19:10:45 +02:00
#=================================================
2024-03-26 06:53:38 +01:00
ynh_script_progression --message="Updating $app's configuration files..." --weight=1
2022-08-30 19:10:45 +02:00
2024-03-26 06:53:38 +01:00
db_pwd=$(ynh_app_setting_get --app="$app" --key=psql_pwd)
db_port=$(ynh_app_setting_get --app="$app" --key=psql_port)
2024-06-14 13:59:30 +02:00
ynh_add_config --template="env-server" --destination="$install_dir/env-server"
chmod 600 "$install_dir/env-server"
chown $app:$app "$install_dir/env-server"
ynh_add_config --template="env-machine-learning" --destination="$install_dir/env-machine-learning"
chmod 600 "$install_dir/env-machine-learning"
chown $app:$app "$install_dir/env-machine-learning"
2022-08-30 19:10:45 +02:00
#=================================================
2024-03-26 06:53:38 +01:00
# REAPPLY SYSTEM CONFIGURATIONS
2022-08-30 19:10:45 +02:00
#=================================================
2024-03-26 06:53:38 +01:00
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
2022-08-30 19:10:45 +02:00
ynh_add_nginx_config
2024-03-26 06:53:38 +01:00
ynh_add_systemd_config --service="$app-server" --template="immich-server.service"
2024-06-15 13:39:04 +02:00
ynh_add_systemd_config --service="$app-microservices" --template="immich-microservices.service"
2024-03-26 06:53:38 +01:00
ynh_add_systemd_config --service="$app-machine-learning" --template="immich-machine-learning.service"
2022-08-30 19:10:45 +02:00
2024-06-15 13:39:04 +02:00
yunohost service add "$app-microservices" --description="Immich Microservices" --log="/var/log/$app/$app-microservices.log"
2024-03-26 06:53:38 +01:00
yunohost service add "$app-machine-learning" --description="Immich Machine Learning" --log="/var/log/$app/$app-machine-learning.log"
yunohost service add "$app-server" --description="Immich Server" --log="/var/log/$app/$app-server.log"
2022-08-30 19:10:45 +02:00
2024-05-04 21:58:35 +02:00
ynh_multimedia_build_main_dir
ynh_multimedia_addaccess --user_name=$app
2022-08-30 19:10:45 +02:00
ynh_use_logrotate --non-append
2024-03-26 06:53:38 +01:00
ynh_add_fail2ban_config --logpath="/var/log/$app/$app-server.log" --failregex="$failregex"
2022-08-30 19:10:45 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
2024-06-15 14:02:59 +02:00
ynh_systemd_action --service_name="$app-microservices" --action="start" --line_match="Immich Microservices is running" --log_path="/var/log/$app/$app-microservices.log"
2024-03-26 06:53:38 +01:00
ynh_systemd_action --service_name="$app-machine-learning" --action="start" --line_match="Application startup complete" --log_path="/var/log/$app/$app-machine-learning.log"
ynh_systemd_action --service_name="$app-server" --action="start" --line_match="Immich Server is listening" --log_path="/var/log/$app/$app-server.log"
2022-08-30 19:10:45 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last