2020-11-09 22:28:22 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
|
|
|
2023-03-11 22:28:46 +01:00
|
|
|
if [ -z "${registration_enabled:-}" ]; then
|
2022-01-14 19:09:22 +01:00
|
|
|
registration_enabled="true"
|
|
|
|
ynh_app_setting_set --app=$app --key=registration_enabled --value=$registration_enabled
|
|
|
|
fi
|
|
|
|
|
2023-03-11 22:28:46 +01:00
|
|
|
if [ -z "${login_enabled:-}" ]; then
|
2022-01-14 19:09:22 +01:00
|
|
|
login_enabled="true"
|
|
|
|
ynh_app_setting_set --app=$app --key=login_enabled --value=$login_enabled
|
|
|
|
fi
|
|
|
|
|
2023-03-11 22:28:46 +01:00
|
|
|
if [ -z "${captcha_enabled:-}" ]; then
|
2022-01-14 19:09:22 +01:00
|
|
|
captcha_enabled="true"
|
|
|
|
ynh_app_setting_set --app=$app --key=captcha_enabled --value=$captcha_enabled
|
|
|
|
fi
|
|
|
|
|
2021-10-03 09:12:48 +02:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading dependencies..." --weight=8
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2023-03-11 22:28:46 +01:00
|
|
|
pushd $install_dir
|
|
|
|
chown -R $app:www-data "$install_dir"
|
|
|
|
git config --system --add safe.directory $install_dir
|
2023-02-14 20:56:21 +01:00
|
|
|
|
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
|
2022-02-25 19:27:51 +01:00
|
|
|
ynh_exec_warn_less shards install --production
|
2023-03-11 22:28:46 +01:00
|
|
|
ynh_exec_warn_less crystal build $install_dir/src/invidious.cr --release
|
2021-06-13 08:45:44 +02:00
|
|
|
popd
|
2020-11-09 22:28:22 +01:00
|
|
|
fi
|
|
|
|
|
2023-03-11 22:28:46 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-05-23 10:27:58 +02:00
|
|
|
|
2020-11-09 22:28:22 +01:00
|
|
|
#=================================================
|
2023-03-11 22:28:46 +01:00
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
2020-11-09 22:28:22 +01:00
|
|
|
#=================================================
|
2023-03-11 22:28:46 +01:00
|
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
|
2020-11-09 22:28:22 +01:00
|
|
|
|
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
|
|
|
|
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
2021-10-02 19:10:17 +02:00
|
|
|
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
|
|
|
ynh_use_logrotate --non-append
|
|
|
|
|
2023-03-11 22:28:46 +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
|
|
|
#=================================================
|
2023-03-11 22:28:46 +01:00
|
|
|
# MODIFY A CONFIG FILE
|
2020-11-09 22:28:22 +01:00
|
|
|
#=================================================
|
2023-03-11 22:28:46 +01:00
|
|
|
ynh_script_progression --message="Modifying a config file..."
|
2020-11-09 22:28:22 +01:00
|
|
|
|
2023-03-11 22:28:46 +01:00
|
|
|
ynh_add_config --template="../conf/config.yml" --destination="$install_dir/config/config.yml"
|
|
|
|
chmod 600 $install_dir/config/config.yml
|
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
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Upgrade of Invidious completed" --last
|