2013-12-06 17:19:45 +01:00
|
|
|
#!/bin/bash
|
2016-05-10 14:21:26 +02:00
|
|
|
|
2017-08-27 14:42:28 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2013-12-06 17:19:45 +01:00
|
|
|
|
2017-08-27 15:34:30 +02:00
|
|
|
# source _common.sh
|
2017-08-27 14:42:28 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2017-02-19 13:54:21 +01:00
|
|
|
|
2017-08-27 14:42:28 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2013-12-06 17:19:45 +01:00
|
|
|
|
2017-08-27 14:42:28 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2013-12-06 17:19:45 +01:00
|
|
|
|
2017-08-27 14:42:28 +02:00
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
path_url=$(ynh_app_setting_get $app path)
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
|
|
db_name=$(ynh_app_setting_get $app db_name)
|
2016-05-04 14:53:55 +02:00
|
|
|
|
2017-08-27 14:42:28 +02:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2013-12-06 17:19:45 +01:00
|
|
|
|
2017-08-27 14:42:28 +02:00
|
|
|
if [ -z $final_path ]; then # If final_path doesn't exist, create it
|
|
|
|
final_path="/var/www/$app"
|
|
|
|
ynh_app_setting_set $app final_path $final_path
|
|
|
|
fi
|
2017-02-19 13:54:21 +01:00
|
|
|
|
2017-08-27 14:42:28 +02:00
|
|
|
if [ -z $db_name ]; then # If db_name doesn't exist, create it
|
|
|
|
db_name=$(ynh_sanitize_dbid $app)
|
|
|
|
ynh_app_setting_set $app db_name $db_name
|
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_backup_before_upgrade # Backup the current version of the app
|
|
|
|
ynh_clean_setup () {
|
|
|
|
ynh_restore_upgradebackup # restore it if the upgrade fails
|
|
|
|
}
|
|
|
|
ynh_abort_if_errors # Active trap pour arrêter le script si une erreur est détectée.
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK THE PATH
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Normalize the URL path syntax
|
|
|
|
path_url=$(ynh_normalize_url_path $path_url)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source "$final_path"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create $app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Create a dedicated php-fpm config
|
|
|
|
ynh_add_fpm_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
|
|
|
#=================================================
|
|
|
|
# CONFIGURE TTRSS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Verify the checksum and backup the file if it's different
|
|
|
|
ynh_backup_if_checksum_is_different "$final_path/config.php"
|
|
|
|
|
|
|
|
cp ../conf/config.php "$final_path/config.php"
|
2013-12-06 17:19:45 +01:00
|
|
|
|
|
|
|
# Change variables in ttrss configuration
|
2017-08-27 14:42:28 +02:00
|
|
|
ynh_replace_string "__DBNAME__" "$db_name" "$final_path/config.php"
|
|
|
|
db_pwd=$(ynh_app_setting_get $app mysqlpwd)
|
|
|
|
ynh_replace_string "__DBPWD__" "$db_pwd" "$final_path/config.php"
|
|
|
|
ynh_replace_string "__DOMAINPATH__" "https://$domain$path_url" "$final_path/config.php"
|
|
|
|
|
|
|
|
# Recalculate and store the config file checksum into the app settings
|
|
|
|
ynh_store_file_checksum "$final_path/config.php"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# UPGRADE DATABASE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
chown -R $app: $final_path
|
|
|
|
sudo -u $app php ${final_path}/update.php --update-schema
|
2013-12-06 17:19:45 +01:00
|
|
|
|
2017-08-27 14:42:28 +02:00
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
2013-12-06 17:19:45 +01:00
|
|
|
|
2017-08-27 14:42:28 +02:00
|
|
|
# Set permissions to app files
|
|
|
|
chown -R root: $final_path
|
|
|
|
chown -R $app $final_path/{cache,feed-icons,lock}
|
2013-12-06 17:19:45 +01:00
|
|
|
|
2017-08-27 16:42:26 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE OLD CRON JOB
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_secure_remove "/etc/cron.d/$app"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# UPGRADE SERVICE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_add_systemd_config
|
|
|
|
sudo systemctl restart $app
|
|
|
|
|
2017-08-27 14:42:28 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2014-12-17 10:44:31 +01:00
|
|
|
|
2017-08-27 14:42:28 +02:00
|
|
|
systemctl reload nginx
|