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

167 lines
5.9 KiB
Text
Raw Normal View History

2021-03-16 23:36:39 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2021-03-18 04:45:54 +01:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2021-03-16 23:36:39 +01:00
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)
2021-03-18 04:45:54 +01:00
port=$(ynh_app_setting_get --app=$app --key=port)
title=$(ynh_app_setting_get --app=$app --key=title)
theme=$(ynh_app_setting_get --app=$app --key=theme)
replace_youtube=$(ynh_app_setting_get --app=$app --key=replace_youtube)
replace_instagram=$(ynh_app_setting_get --app=$app --key=replace_instagram)
2022-06-19 13:32:12 +02:00
replace_reddit=$(ynh_app_setting_get --app=$app --key=replace_reddit)
2021-03-18 04:45:54 +01:00
hmac_key=$(ynh_app_setting_get --app=$app --key=hmac_key)
2021-03-16 23:36:39 +01:00
#=================================================
# CHECK VERSION
#=================================================
2022-06-21 02:28:49 +02:00
ynh_script_progression --message="Checking version..."
2021-03-16 23:36:39 +01:00
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2021-03-18 04:45:54 +01:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
2021-03-16 23:36:39 +01:00
# Backup the current version of the app
ynh_backup_before_upgrade
2022-06-27 22:47:05 +02:00
ynh_clean_setup() {
2022-06-21 02:28:49 +02:00
ynh_clean_check_starting
2021-03-16 23:36:39 +01:00
# 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
#=================================================
2021-03-18 04:45:54 +01:00
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2021-03-16 23:36:39 +01:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
2022-06-21 02:28:49 +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-03-16 23:36:39 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2022-06-27 22:47:05 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]; then
2021-03-18 04:45:54 +01:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2021-03-16 23:36:39 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2022-01-02 18:21:06 +01:00
ynh_setup_source --dest_dir="$final_path" --source_id="app"
2022-06-19 14:02:12 +02:00
ynh_setup_source --dest_dir="$final_path/nim-installation" --source_id=$YNH_ARCH --keep="$final_path/nitter.conf"
2021-03-16 23:36:39 +01:00
fi
2022-06-21 02:28:49 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2021-03-16 23:36:39 +01:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2021-03-18 04:45:54 +01:00
ynh_script_progression --message="Upgrading dependencies..." --weight=1
2021-03-16 23:36:39 +01:00
ynh_install_app_dependencies $pkg_dependencies
#=================================================
2022-06-21 02:28:49 +02:00
# NGINX CONFIGURATION
2021-03-16 23:36:39 +01:00
#=================================================
2022-06-21 02:28:49 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
2021-03-16 23:36:39 +01:00
2022-06-21 02:28:49 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2021-03-16 23:36:39 +01:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
2021-03-18 04:45:54 +01:00
# COMPILE NITTER
2021-03-16 23:36:39 +01:00
#=================================================
2021-03-18 04:45:54 +01:00
ynh_script_progression --message="Compiling Nitter..." --weight=30
2021-04-18 03:40:36 +02:00
build_nitter
2021-03-16 23:36:39 +01:00
2022-06-21 02:28:49 +02:00
#=================================================
# UPDATE A CONFIG FILE
#=================================================
ynh_script_progression --message="Updating a configuration file..."
ynh_add_config --template="nitter.conf" --destination="$final_path/nitter.conf"
2021-03-16 23:36:39 +01:00
#=================================================
# SETUP SYSTEMD
#=================================================
2021-03-18 04:45:54 +01:00
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
2021-03-16 23:36:39 +01:00
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set permissions on app files
2021-04-18 03:40:36 +02:00
set_permissions
2022-06-21 02:28:49 +02:00
#=================================================
# GENERIC FINALIZATION
2022-06-27 22:47:05 +02:00
#=================================================
# SETUP LOGROTATE
#=================================================
ynh_script_progression --message="Upgrading logrotate configuration..." --time --weight=1
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
2021-03-16 23:36:39 +01:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2021-03-18 04:45:54 +01:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2021-03-16 23:36:39 +01:00
2021-03-18 04:45:54 +01:00
yunohost service add $app --description="Alternative front-end for Twitter that respects your privacy" --log="/var/log/$app/$app.log"
2021-03-16 23:36:39 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-03-18 04:45:54 +01:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-03-16 23:36:39 +01:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# RELOAD NGINX
#=================================================
2021-03-18 04:45:54 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2021-03-16 23:36:39 +01:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2021-03-18 04:45:54 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last