2021-03-16 23:36:39 +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)
|
|
|
|
|
|
|
|
#=================================================
|
2023-06-03 19:23:20 +02:00
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
2021-03-16 23:36:39 +01:00
|
|
|
#=================================================
|
2023-06-03 19:23:20 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
2021-03-16 23:36:39 +01:00
|
|
|
|
2023-06-03 19:23:20 +02:00
|
|
|
# If theme doesn't exist, create it
|
|
|
|
if [ -z "${theme:-}" ]; then
|
|
|
|
theme="Auto"
|
|
|
|
ynh_app_setting_set --app=$app --key=theme --value=$theme
|
|
|
|
fi
|
2021-03-16 23:36:39 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
2023-06-03 19:23:20 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
|
|
|
ynh_setup_source --dest_dir="$install_dir/nim-installation" --source_id="nim" --keep="nitter.conf"
|
2021-03-16 23:36:39 +01:00
|
|
|
fi
|
|
|
|
|
2023-06-03 19:23:20 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-03-16 23:36:39 +01:00
|
|
|
|
|
|
|
#=================================================
|
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
|
|
|
|
#=================================================
|
2023-07-10 21:16:29 +02:00
|
|
|
#ynh_script_progression --message="Updating a configuration file..."
|
2022-06-21 02:28:49 +02:00
|
|
|
|
2023-07-10 21:16:29 +02:00
|
|
|
#ynh_add_config --template="nitter.conf" --destination="$install_dir/nitter.conf"
|
2022-06-21 02:28:49 +02:00
|
|
|
|
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
|
|
|
|
#=================================================
|
2023-02-21 03:40:10 +01:00
|
|
|
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
|
2022-06-27 22:47:05 +02:00
|
|
|
|
|
|
|
# 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"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-03-18 04:45:54 +01:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|