1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/invidious_ynh.git synced 2024-09-03 19:15:55 +02:00
invidious_ynh/scripts/upgrade

198 lines
6.8 KiB
Text
Raw Normal View History

2020-11-09 22:28:22 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
ynh_script_progression --message="Loading installation settings..." --weight=2
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
admin=$(ynh_app_setting_get --app=$app --key=admin)
2020-11-09 22:28:22 +01:00
port=$(ynh_app_setting_get --app=$app --key=port)
2020-11-10 11:53:07 +01:00
language=$(ynh_app_setting_get --app=$app --key=language)
2020-11-09 22:28:22 +01:00
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_user=$db_name
2021-03-03 21:04:16 +01:00
db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
email=$(ynh_app_setting_get --app=$app --key=email)
2020-11-09 22:28:22 +01:00
2022-01-14 19:09:22 +01:00
registration_enabled=$(ynh_app_setting_get --app=$app --key=registration_enabled)
login_enabled=$(ynh_app_setting_get --app=$app --key=login_enabled)
captcha_enabled=$(ynh_app_setting_get --app=$app --key=captcha_enabled)
2020-11-09 22:28:22 +01:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
ynh_script_progression --message="Backing up Invidious before upgrading..." --weight=4
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
# restore it if the upgrade fails
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2021-03-03 21:04:16 +01:00
ynh_systemd_action --service_name=$app --action=stop --log_path=systemd
2020-11-09 22:28:22 +01:00
#=================================================
2021-10-02 16:23:12 +02:00
# ENSURE DOWNWARD COMPATIBILITY
2020-11-09 22:28:22 +01:00
#=================================================
2021-10-02 16:23:12 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2020-11-09 22:28:22 +01:00
2022-01-14 19:09:22 +01:00
if [ -z "$registration_enabled" ]; then
registration_enabled="true"
ynh_app_setting_set --app=$app --key=registration_enabled --value=$registration_enabled
fi
if [ -z "$login_enabled" ]; then
login_enabled="true"
ynh_app_setting_set --app=$app --key=login_enabled --value=$login_enabled
fi
if [ -z "$captcha_enabled" ]; then
captcha_enabled="true"
ynh_app_setting_set --app=$app --key=captcha_enabled --value=$captcha_enabled
fi
2021-10-02 16:23:12 +02:00
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all
2020-11-09 22:28:22 +01:00
2021-10-02 16:23:12 +02:00
ynh_app_setting_delete --app=$app --key=is_public
fi
2021-06-19 18:36:44 +02:00
2021-10-02 16:23:12 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir="$final_path"
2021-05-23 10:25:17 +02:00
2021-10-03 09:12:48 +02:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
ynh_script_progression --message="Upgrading dependencies..." --weight=8
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
ynh_exec_warn_less curl -fsSL https://crystal-lang.org/install.sh | bash -s -- --channel=stable
2020-11-09 22:28:22 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=5
2021-06-13 08:45:44 +02:00
pushd $final_path
2023-02-07 22:57:01 +01:00
ynh_exec_as $app git fetch
#git checkout master
ynh_exec_as $app git reset --hard --quiet $version_commit
ynh_exec_as $app git pull
ynh_exec_warn_less shards install --production
2021-10-03 09:12:48 +02:00
ynh_exec_warn_less crystal build $final_path/src/invidious.cr --release
2021-06-13 08:45:44 +02:00
popd
2020-11-09 22:28:22 +01:00
fi
2021-05-23 10:27:58 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2020-11-09 22:28:22 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=2
2022-03-04 10:46:43 +01:00
# Create a dedicated NGINX config
2020-11-09 22:28:22 +01:00
ynh_add_nginx_config
2021-07-27 13:59:54 +02:00
#=================================================
# MODIFY A CONFIG FILE
#=================================================
2022-03-04 10:56:24 +01:00
ynh_script_progression --message="Modifying a config file..."
2021-07-27 13:59:54 +02:00
2022-03-04 10:56:24 +01:00
ynh_add_config --template="../conf/config.yml" --destination="$final_path/config/config.yml"
chmod 600 $final_path/config/config.yml
2021-07-27 13:59:54 +02:00
2020-11-09 22:28:22 +01:00
#=================================================
# SETUP SYSTEMD
#=================================================
ynh_script_progression --message="Configuring a systemd service..." --weight=2
# Create a dedicated systemd config
ynh_add_systemd_config
2021-10-02 19:10:17 +02:00
#=================================================
# SETUP CRON
#=================================================
ynh_script_progression --message="Setuping a cron..." --weight=1
ynh_add_config --template="../conf/cron_invidious" --destination="/etc/cron.d/$app"
2021-10-03 07:40:37 +02:00
chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app"
2021-10-02 19:10:17 +02:00
2020-11-09 22:28:22 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..." --weight=3
2020-12-04 12:11:13 +01:00
yunohost service add $app --description="Invidious is an alternative front-end to YouTube" --log="/var/log/$app/$app.log"
2020-11-09 22:28:22 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-03-03 21:04:16 +01:00
ynh_systemd_action --service_name=$app --action=restart --log_path=systemd
2020-11-09 22:28:22 +01:00
#=================================================
# RELOAD NGINX
#=================================================
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of Invidious completed" --last