2014-01-13 13:50:38 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-09-28 18:02:10 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC STARTING
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2019-02-13 21:13:59 +01:00
|
|
|
source _common.sh
|
2017-09-28 18:02:10 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=2
|
2017-09-28 18:02:10 +02:00
|
|
|
|
2016-05-13 21:34:03 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-05-06 14:14:36 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
path_url=$(ynh_app_setting_get --app=$app --key=path)
|
|
|
|
admin_user=$(ynh_app_setting_get --app=$app --key=admin_user)
|
|
|
|
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2019-05-25 11:33:11 +02:00
|
|
|
ynh_print_OFF
|
2019-05-06 14:14:36 +02:00
|
|
|
upload_password=$(ynh_app_setting_get --app=$app --key=upload_password)
|
2019-05-25 11:33:11 +02:00
|
|
|
ynh_print_ON
|
2020-10-15 09:07:23 +02:00
|
|
|
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
|
2019-05-06 14:14:36 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
2017-09-28 18:02:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
2019-02-17 20:55:13 +01:00
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
2017-09-28 18:02:10 +02:00
|
|
|
#=================================================
|
2020-10-15 09:07:23 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
2017-09-28 18:02:10 +02:00
|
|
|
|
|
|
|
# Fix is_public as a boolean value
|
|
|
|
if [ "$is_public" = "Yes" ]; then
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=is_public --value=1
|
2017-09-28 18:02:10 +02:00
|
|
|
is_public=1
|
|
|
|
elif [ "$is_public" = "No" ]; then
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=is_public --value=0
|
2017-09-28 18:02:10 +02:00
|
|
|
is_public=0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If final_path doesn't exist, create it
|
2019-05-06 14:14:36 +02:00
|
|
|
if [ -z "$final_path" ]; then
|
2017-09-28 18:02:10 +02:00
|
|
|
final_path=/var/www/$app
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2017-09-28 18:02:10 +02:00
|
|
|
fi
|
|
|
|
|
2020-03-26 18:45:03 +01:00
|
|
|
# Migrate files from 3.4.1 to 4.1.1
|
|
|
|
current_version="$(ynh_app_upstream_version --manifest="/etc/yunohost/apps/$app/manifest.json")"
|
|
|
|
update_version="$(ynh_app_upstream_version)"
|
|
|
|
# If the upgrade if from a version 3 or less to 4 or more. Migrate the files
|
|
|
|
if [ ${current_version:0:1} -le 3 ] && [ ${update_version:0:1} -ge 4 ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Migrating files..." --weight=5
|
|
|
|
|
|
|
|
var_root=/home/yunohost.app/$app
|
|
|
|
|
|
|
|
# Migrate files and links to the new directory structure
|
|
|
|
for type in files links
|
|
|
|
do
|
|
|
|
while read file
|
|
|
|
do
|
|
|
|
# Ignore _count files
|
|
|
|
if echo "$file" | grep --quiet "_count$"; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove all directories before the file name
|
|
|
|
full_file="$file"
|
|
|
|
file=$(basename $file)
|
|
|
|
|
|
|
|
# Split the file name every 8 characters
|
|
|
|
split=0
|
|
|
|
full_path="$var_root/$type"
|
|
|
|
while [ $split -le ${#file} ]
|
|
|
|
do
|
|
|
|
part_dir="${file:$split:8}"
|
|
|
|
# Increment the point where with start reading of 8.
|
|
|
|
split=$((split+8))
|
|
|
|
full_path="$full_path/$part_dir"
|
|
|
|
done
|
|
|
|
|
|
|
|
# Create the new crazy directory structure
|
|
|
|
mkdir -p "$full_path"
|
|
|
|
# And move the file to this place
|
|
|
|
mv "$full_file" "$full_path/$file"
|
|
|
|
if [ "$type" = "files" ]; then
|
|
|
|
mv "${full_file}_count" "$full_path"
|
|
|
|
fi
|
2020-03-27 11:05:33 +01:00
|
|
|
done <<< "$(find "$var_root/$type" -type f)" # List all files, without directories
|
2020-03-26 18:45:03 +01:00
|
|
|
done
|
|
|
|
|
|
|
|
# And clean the old directories
|
|
|
|
for type in files links
|
|
|
|
do
|
|
|
|
while read file
|
|
|
|
do
|
|
|
|
# Remove all directories before the last one
|
|
|
|
dirname="$(basename $file)"
|
|
|
|
# Delete the directory if it's only one character long
|
|
|
|
if [ ${#dirname} -eq 1 ]
|
|
|
|
then
|
2020-11-10 20:47:22 +01:00
|
|
|
ynh_secure_remove --file="$file"
|
2020-03-26 18:45:03 +01:00
|
|
|
fi
|
2020-03-27 11:05:33 +01:00
|
|
|
done <<< "$(find "$var_root/$type" -maxdepth 1 -mindepth 1 -type d)" # List all first level directories
|
2020-03-26 18:45:03 +01:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2017-09-28 18:02:10 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2020-10-18 19:34:39 +02:00
|
|
|
ynh_script_progression --message="Backing up Jirafeau before upgrading (may take a while)..." --weight=3
|
2017-09-28 18:02:10 +02:00
|
|
|
|
2019-02-13 21:13:59 +01:00
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
2017-09-28 18:02:10 +02:00
|
|
|
ynh_clean_setup () {
|
2019-02-13 21:13:59 +01:00
|
|
|
# restore it if the upgrade fails
|
|
|
|
ynh_restore_upgradebackup
|
2017-09-28 18:02:10 +02:00
|
|
|
}
|
2019-02-13 21:13:59 +01:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
2017-09-28 18:02:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK THE PATH
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Normalize the URL path syntax
|
2019-05-06 14:14:36 +02:00
|
|
|
path_url=$(ynh_normalize_url_path --path_url=$path_url)
|
2017-09-28 18:02:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-06 14:14:36 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=2
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
|
|
|
fi
|
2017-09-28 18:02:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-10-15 09:07:23 +02:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=2
|
2017-09-28 18:02:10 +02:00
|
|
|
|
2020-10-15 09:07:23 +02:00
|
|
|
# Create a dedicated NGINX config
|
2017-09-28 18:02:10 +02:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2020-10-15 09:07:23 +02:00
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
|
2017-09-28 18:02:10 +02:00
|
|
|
|
2019-02-13 21:13:59 +01:00
|
|
|
# Create a dedicated user (if not existing)
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_system_user_create --username=$app
|
2014-01-13 13:50:38 +01:00
|
|
|
|
2017-09-28 18:02:10 +02:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-10-15 09:07:23 +02:00
|
|
|
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=2
|
2014-01-13 13:50:38 +01:00
|
|
|
|
2020-10-18 19:34:39 +02:00
|
|
|
# Create a dedicated PHP-FPM config
|
2017-09-28 18:02:10 +02:00
|
|
|
ynh_add_fpm_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
|
|
|
#=================================================
|
|
|
|
# SET THE UPLOAD PASSWORD
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
jirafeauconfigfile="$final_path/lib/config.local.php"
|
|
|
|
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_backup_if_checksum_is_different --file="$final_path/lib/config.local.php"
|
2017-09-28 18:02:10 +02:00
|
|
|
|
2019-02-13 21:13:59 +01:00
|
|
|
cp "../conf/config.local.php" "$final_path/lib/config.local.php"
|
2017-09-28 18:02:10 +02:00
|
|
|
|
|
|
|
# Set and save upload password, allowing an empty one
|
2019-05-25 11:33:11 +02:00
|
|
|
ynh_print_OFF
|
2017-09-28 18:02:10 +02:00
|
|
|
if [ -z "$upload_password" ]
|
|
|
|
then
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_replace_string --match_string="__YNH_UPLOAD_PASSWORD__" --replace_string="" --target_file="$jirafeauconfigfile"
|
|
|
|
ynh_app_setting_set --app=$app --key=upload_password --value=""
|
2015-07-13 22:28:21 +02:00
|
|
|
else
|
2019-06-24 12:09:40 +02:00
|
|
|
ynh_replace_special_string --match_string="__YNH_UPLOAD_PASSWORD__" --replace_string="'$upload_password'" --target_file="$jirafeauconfigfile"
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=upload_password --value="$upload_password"
|
2015-07-13 22:28:21 +02:00
|
|
|
fi
|
2019-05-25 11:33:11 +02:00
|
|
|
ynh_print_ON
|
2015-07-13 22:28:21 +02:00
|
|
|
|
2017-09-28 18:02:10 +02:00
|
|
|
#=================================================
|
|
|
|
# CONFIGURE JIRAFEAU
|
|
|
|
#=================================================
|
2020-10-15 09:07:23 +02:00
|
|
|
ynh_script_progression --message="Upgrading Jirafeau configuration..." --weight=2
|
2017-09-28 18:02:10 +02:00
|
|
|
|
2016-05-13 21:34:03 +02:00
|
|
|
var_root=/home/yunohost.app/$app
|
2019-02-13 21:13:59 +01:00
|
|
|
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_replace_string --match_string="__YNH_DOMAIN__" --replace_string="$domain" --target_file="$jirafeauconfigfile"
|
2017-09-28 18:02:10 +02:00
|
|
|
if [ "$path_url" = "/" ]
|
|
|
|
then
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_replace_string --match_string="__YNH_WWW_PATH__" --replace_string="" --target_file="$jirafeauconfigfile"
|
2017-09-28 18:02:10 +02:00
|
|
|
else
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_replace_string --match_string="__YNH_WWW_PATH__" --replace_string="$path_url" --target_file="$jirafeauconfigfile"
|
2017-09-28 18:02:10 +02:00
|
|
|
fi
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_replace_string --match_string="__YNH_VAR_ROOT__" --replace_string="$var_root" --target_file="$jirafeauconfigfile"
|
|
|
|
ynh_replace_string --match_string="__YNH_ADMIN_USER__" --replace_string="$admin_user" --target_file="$jirafeauconfigfile"
|
2017-09-28 18:02:10 +02:00
|
|
|
|
2019-02-13 21:13:59 +01:00
|
|
|
# Recalculate and store the checksum of the file for the next upgrade.
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_store_file_checksum --file="$jirafeauconfigfile"
|
2017-09-28 18:02:10 +02:00
|
|
|
|
|
|
|
# Remove the install.php
|
2019-05-17 10:44:19 +02:00
|
|
|
ynh_secure_remove --file=$final_path/install.php
|
2017-09-28 18:02:10 +02:00
|
|
|
|
2020-03-03 20:23:09 +01:00
|
|
|
#=================================================
|
|
|
|
# SET THE CRON FILE
|
|
|
|
#=================================================
|
2020-10-15 09:07:23 +02:00
|
|
|
ynh_script_progression --message="Configuring the cron file..." --weight=1
|
2020-03-03 20:23:09 +01:00
|
|
|
|
|
|
|
cp ../conf/cron /etc/cron.d/$app
|
|
|
|
ynh_replace_string --match_string="__FINALPATH__" --replace_string="$final_path" --target_file=/etc/cron.d/$app
|
|
|
|
ynh_replace_string --match_string="__APP__" --replace_string=$app --target_file=/etc/cron.d/$app
|
2020-10-18 19:28:13 +02:00
|
|
|
ynh_replace_string --match_string="__PHPVERSION__" --replace_string=$phpversion --target_file=/etc/cron.d/$app
|
2020-03-03 20:23:09 +01:00
|
|
|
|
2017-09-28 18:02:10 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALISATION
|
|
|
|
#=================================================
|
|
|
|
# SECURING FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
|
|
|
|
2019-02-13 21:13:59 +01:00
|
|
|
chown -R root: $final_path
|
2014-01-13 13:50:38 +01:00
|
|
|
|
2019-02-13 21:13:59 +01:00
|
|
|
mkdir -p $var_root/{files,links,async,block}
|
|
|
|
chown -R $app:root $var_root
|
|
|
|
chmod -R 700 $var_root
|
2014-01-13 13:50:38 +01:00
|
|
|
|
2017-09-28 18:02:10 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_script_progression --message="Upgrading SSOwat configuration..." --weight=2
|
2017-09-28 18:02:10 +02:00
|
|
|
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
|
2017-09-28 18:02:10 +02:00
|
|
|
if [ $is_public -eq 0 ]
|
2014-01-13 13:50:38 +01:00
|
|
|
then
|
2017-09-28 18:02:10 +02:00
|
|
|
domain_regex=$(echo "$domain" | sed 's@-@.@g')
|
|
|
|
[ "$path_url" = "/" ] && path_url=""
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=protected_regex --value="$domain_regex$path_url/$","$domain_regex$path_url/admin.php.*$"
|
2014-01-13 13:50:38 +01:00
|
|
|
fi
|
|
|
|
|
2017-09-28 18:02:10 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2020-10-15 09:07:23 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2014-03-07 01:37:42 +01:00
|
|
|
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-02-17 20:55:13 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-10-15 09:07:23 +02:00
|
|
|
ynh_script_progression --message="Upgrade of Jirafeau completed" --last
|