1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ttrss_ynh.git synced 2024-10-01 13:34:46 +02:00
ttrss_ynh/scripts/upgrade

167 lines
4.9 KiB
Text
Raw Normal View History

2013-12-06 17:19:45 +01:00
#!/bin/bash
2017-08-27 14:42:28 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2013-12-06 17:19:45 +01:00
source _common.sh
2017-08-27 14:42:28 +02:00
source /usr/share/yunohost/helpers
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)
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-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 () {
# Delete any created temporary folder
if [ -v tmpdir ] && [ -d $tmpdir ]; then
ynh_secure_remove $tmpdir
fi
2017-08-27 14:42:28 +02:00
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.
2017-12-18 12:14:16 +01:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY BIS
#=================================================
# Remove old cron job
ynh_secure_remove "/etc/cron.d/$app"
2017-08-27 14:42:28 +02:00
#=================================================
# CHECK THE PATH
#=================================================
# Normalize the URL path syntax
path_url=$(ynh_normalize_url_path $path_url)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
# Create a temporary directory
tmpdir="$(ynh_smart_mktemp 10)"
2017-08-27 14:42:28 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source "$tmpdir"
2017-08-27 14:42:28 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
# Create a dedicated nginx config
ynh_add_nginx_config
2018-05-27 21:19:10 +02:00
if [ "$path_url" != "/" ]
then
ynh_replace_string "^#sub_path_only" "" "/etc/nginx/conf.d/$domain.d/$app.conf"
fi
ynh_store_file_checksum "/etc/nginx/conf.d/$domain.d/$app.conf"
2017-08-27 14:42:28 +02:00
#=================================================
# 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
#=================================================
# Backup the config file in the temp dir
cp -a "$final_path/config.php" "$tmpdir/config.php"
# Replace the old ttrss by the new one
ynh_secure_remove "$final_path"
mv "$tmpdir" "$final_path"
ynh_secure_remove "$tmpdir"
2017-08-27 14:42:28 +02:00
# 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
chmod 0755 $final_path
2017-08-27 14:42:28 +02:00
chown -R $app $final_path/{cache,feed-icons,lock}
2013-12-06 17:19:45 +01:00
#=================================================
# UPGRADE SERVICE
#=================================================
ynh_add_systemd_config
2017-08-28 21:41:37 +02:00
systemctl restart $app
#=================================================
# ADVERTISE SERVICE IN ADMIN PANEL
#=================================================
yunohost service add $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