2015-08-23 17:33:13 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-04-30 20:24:17 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2015-08-23 17:33:13 +02:00
|
|
|
|
2018-04-30 20:24:17 +02:00
|
|
|
source _common.sh
|
2017-02-17 13:02:11 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2018-04-30 20:24:17 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2020-10-14 04:28:54 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2018-04-30 20:24:17 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2020-04-23 02:29:32 +02:00
|
|
|
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)
|
|
|
|
upload=$(ynh_app_setting_get --app=$app --key=upload)
|
2018-11-20 02:54:24 +01:00
|
|
|
version=$(grep STD_VERSION $final_path/boot.php | cut -c 38- | rev | cut -c 5- | rev)
|
|
|
|
last_update=$(grep update_time: /etc/yunohost/apps/$app/settings.yml | cut -c 14-)
|
2020-10-14 07:20:18 +02:00
|
|
|
database=$(ynh_app_setting_get --app=$app --key=database)
|
2020-10-14 04:28:54 +02:00
|
|
|
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
|
2018-11-20 02:47:48 +01:00
|
|
|
|
2019-04-04 18:32:01 +02:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# If db_name doesn't exist, create it
|
2020-04-23 00:03:42 +02:00
|
|
|
if [ -z "$db_name" ]; then
|
|
|
|
db_name=$(ynh_sanitize_dbid --db_name=$app)
|
|
|
|
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
|
2019-04-04 18:32:01 +02:00
|
|
|
fi
|
|
|
|
|
2018-04-30 20:24:17 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2020-10-14 04:28:54 +02:00
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
|
2019-04-04 18:32:01 +02:00
|
|
|
|
2018-04-30 20:24:17 +02:00
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
|
|
|
ynh_clean_setup () {
|
|
|
|
# restore it if the upgrade fails
|
|
|
|
ynh_restore_upgradebackup
|
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2021-03-15 00:26:10 +01:00
|
|
|
#=================================================
|
|
|
|
# Migrate legacy permissions to new system
|
|
|
|
#=================================================
|
|
|
|
if ynh_legacy_permissions_exists
|
|
|
|
then
|
|
|
|
ynh_legacy_permissions_delete_all
|
|
|
|
|
|
|
|
ynh_app_setting_delete --app=$app --key=is_public
|
|
|
|
fi
|
|
|
|
|
2019-04-04 18:32:01 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
2018-04-30 20:24:17 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
2019-04-04 18:32:01 +02:00
|
|
|
ynh_print_info "Upgrading source files..."
|
2020-11-13 11:25:58 +01:00
|
|
|
|
2018-04-30 20:24:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
# If final_path doesn't exist, create it
|
2020-04-23 00:03:42 +02:00
|
|
|
if [ -z "$final_path" ]; then
|
2018-04-30 20:24:17 +02:00
|
|
|
final_path=/var/www/$app
|
2020-04-23 00:03:42 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2018-04-30 20:24:17 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2020-10-14 04:28:54 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..."
|
2020-04-23 00:03:42 +02:00
|
|
|
|
2021-02-14 00:02:55 +01:00
|
|
|
if [ `cd $final_path && git rev-parse --is-inside-work-tree` ]; then
|
2021-02-14 01:09:24 +01:00
|
|
|
pushd "$final_path"
|
|
|
|
git pull
|
|
|
|
cd extend/addon/hzaddons
|
|
|
|
git pull
|
|
|
|
cd ../../..
|
|
|
|
filelist=(`ls extend/addon/hzaddons`)
|
|
|
|
cd addon
|
|
|
|
for a in "${filelist[@]}" ; do
|
|
|
|
base=`basename $a`
|
|
|
|
if [ $base = '.git' ]; then
|
|
|
|
#echo 'ignoring git'
|
|
|
|
continue;
|
|
|
|
fi
|
|
|
|
if [ ! -d ../extend/addon/hzaddons/$base ]; then
|
|
|
|
#echo $a 'not a directory'
|
|
|
|
continue;
|
|
|
|
fi
|
|
|
|
if [ -x $base ]; then
|
|
|
|
#echo $base 'file exists'
|
|
|
|
continue;
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo linking $base
|
|
|
|
|
|
|
|
ln -s ../extend/addon/hzaddons/$base $base
|
|
|
|
done
|
|
|
|
for x in `ls` ; do
|
|
|
|
if [ -L "$x" ] && ! [ -e "$x" ]; then
|
|
|
|
echo "removing dead symlink $x" ;
|
|
|
|
rm -- "$x";
|
|
|
|
fi;
|
|
|
|
done
|
|
|
|
popd
|
|
|
|
chmod -R 777 $final_path/store
|
2021-02-14 00:02:55 +01:00
|
|
|
else
|
|
|
|
|
|
|
|
# Create a temporary directory
|
|
|
|
tmpdir="$(ynh_smart_mktemp 6000)"
|
|
|
|
# Backup the config file in the temp dir
|
|
|
|
cp -a "$final_path/.htconfig.php" "$tmpdir/.htconfig.php"
|
|
|
|
cp -a "$final_path/store" "$tmpdir/store"
|
|
|
|
cp -a "$final_path/php.log" "$tmpdir/php.log"
|
|
|
|
|
|
|
|
# Remove the app directory securely
|
|
|
|
ynh_secure_remove "$final_path"
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
|
|
|
|
|
|
|
cp -a "$tmpdir/store" "${final_path}"
|
|
|
|
cp -a "$tmpdir/.htconfig.php" "${final_path}"
|
|
|
|
cp -a "$tmpdir/php.log" "${final_path}"
|
|
|
|
ynh_secure_remove "$tmpdir"
|
|
|
|
chmod -R 777 $final_path/store
|
|
|
|
mkdir $final_path/addon
|
|
|
|
ynh_setup_source --dest_dir="$final_path/addon" --source_id="app_addons"
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
2020-04-23 00:03:42 +02:00
|
|
|
|
2017-02-17 14:04:56 +01:00
|
|
|
|
2018-04-30 20:24:17 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-13 11:25:58 +01:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..."
|
2018-04-30 20:24:17 +02:00
|
|
|
|
2020-11-13 11:25:58 +01:00
|
|
|
# Create a dedicated NGINX config
|
2018-04-30 20:24:17 +02:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2020-10-14 04:28:54 +02:00
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..."
|
2018-04-30 20:24:17 +02:00
|
|
|
|
2019-04-04 18:32:01 +02:00
|
|
|
# Create a dedicated user (if not existing)
|
2020-04-23 00:03:42 +02:00
|
|
|
ynh_system_user_create --username=$app
|
2017-02-17 13:02:11 +01:00
|
|
|
|
2018-04-30 20:24:17 +02:00
|
|
|
# Set right permissions for curl install
|
|
|
|
chown -R $app: $final_path
|
2015-08-23 17:33:13 +02:00
|
|
|
|
2018-04-30 20:24:17 +02:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-13 11:25:58 +01:00
|
|
|
ynh_print_info "Upgrading PHP-FPM configuration..."
|
2015-08-23 17:33:13 +02:00
|
|
|
|
2018-04-30 20:24:17 +02:00
|
|
|
# Create a dedicated php-fpm config
|
2020-10-14 04:28:54 +02:00
|
|
|
ynh_add_fpm_config --package="$extra_php_dependencies"
|
2019-04-04 18:32:01 +02:00
|
|
|
|
|
|
|
### Verify the checksum of a file, stored by `ynh_store_file_checksum` in the install script.
|
|
|
|
### And create a backup of this file if the checksum is different. So the file will be backed up if the admin had modified it.
|
2020-10-14 04:28:54 +02:00
|
|
|
ynh_backup_if_checksum_is_different --file="$final_path/.htconfig.php.back"
|
2020-04-23 00:03:42 +02:00
|
|
|
# Recalculate and store the checksum of the file for the next upgrade.
|
|
|
|
ynh_store_file_checksum --file="$final_path/.htconfig.php"
|
2018-04-30 20:24:17 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
2020-10-14 04:28:54 +02:00
|
|
|
ynh_script_progression --message="Upgrading logrotate configuration..."
|
2018-04-30 20:24:17 +02:00
|
|
|
|
|
|
|
# Use logrotate to manage app-specific logfile(s)
|
2019-04-04 18:32:01 +02:00
|
|
|
ynh_use_logrotate --non-append
|
2015-08-23 17:33:13 +02:00
|
|
|
|
2020-04-23 00:03:42 +02:00
|
|
|
# UPGRADE FAIL2BAN
|
2018-11-08 11:08:11 +01:00
|
|
|
#=================================================
|
2020-11-13 11:25:58 +01:00
|
|
|
ynh_script_progression --message="Re-configure Fail2Ban..."
|
2020-04-23 00:03:42 +02:00
|
|
|
|
|
|
|
ynh_add_fail2ban_config --logpath="$final_path/php.log" --failregex="^.*auth\.php.*failed login attempt.*from IP <HOST>.*$" --max_retry="5"
|
2018-11-08 11:08:11 +01:00
|
|
|
|
2019-04-04 18:32:01 +02:00
|
|
|
# Set cron job
|
|
|
|
ynh_print_info "Setting up cron job..."
|
2020-04-23 00:03:42 +02:00
|
|
|
ynh_replace_string --match_string="YNH_WWW_PATH" --replace_string="$final_path" --target_file="../conf/poller-cron"
|
|
|
|
ynh_replace_string --match_string="__USER__" --replace_string="$app" --target_file="../conf/poller-cron"
|
2020-10-14 04:28:54 +02:00
|
|
|
ynh_replace_string --match_string="__PHP_VERSION__" --replace_string="$phpversion" --target_file="../conf/poller-cron"
|
2020-11-13 11:25:58 +01:00
|
|
|
cp -f ../conf/poller-cron /etc/cron.d/$app
|
2017-02-11 02:05:28 +01:00
|
|
|
|
2018-06-12 17:53:48 +02:00
|
|
|
#=================================================
|
2019-04-04 18:32:01 +02:00
|
|
|
# UPGRADE DEPENDENCIES
|
2018-06-12 17:53:48 +02:00
|
|
|
#=================================================
|
2020-10-14 04:28:54 +02:00
|
|
|
ynh_script_progression --message="Upgrading dependencies..."
|
|
|
|
if [ $database -eq 1 ]; then
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION FOR SPECIFIC MYSQL UPDATE
|
|
|
|
#=================================================
|
2019-04-04 18:32:01 +02:00
|
|
|
|
2020-11-13 16:59:16 +01:00
|
|
|
# Check version and if this version was a fresh install push mysql query
|
2020-10-14 04:28:54 +02:00
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
|
|
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
|
2020-11-13 01:14:46 +01:00
|
|
|
is_version_equal_three_eight_four=$(awk 'BEGIN{ print "'$version'"<"'3.8.4'" }')
|
|
|
|
if [ -z "$last_update" ] && [ "$is_version_equal_three_eight_four" -eq 1 ]; then
|
2020-10-14 04:28:54 +02:00
|
|
|
ynh_mysql_connect_as "$db_name" "$db_pwd" "$db_name" < "../conf/sql/385.sql"
|
|
|
|
fi
|
2018-06-12 17:53:48 +02:00
|
|
|
|
2020-10-14 04:28:54 +02:00
|
|
|
elif [ $database -eq 2 ]; then
|
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2018-11-20 02:47:48 +01:00
|
|
|
fi
|
2020-11-13 01:14:46 +01:00
|
|
|
is_version_less_then_five=$(awk 'BEGIN{ print "'$version'"<"'5.0.0'" }')
|
2018-05-25 18:49:15 +02:00
|
|
|
|
2020-11-13 01:14:46 +01:00
|
|
|
if [ "$is_version_less_then_five" -eq 1 ] && [ -f "$final_path/util/z6convert.php" ] ; then
|
2020-11-12 23:45:25 +01:00
|
|
|
pushd "$final_path"
|
2020-11-13 01:14:46 +01:00
|
|
|
php${YNH_PHP_VERSION} util/z6convert.php
|
2020-11-12 23:45:25 +01:00
|
|
|
popd
|
|
|
|
fi
|
2020-10-14 04:28:54 +02:00
|
|
|
|
2019-04-04 18:32:01 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
|
|
|
# As Hubzilla is social network and have its own permission there is no need to keep Hubzilla behind SSO
|
2020-10-14 04:28:54 +02:00
|
|
|
ynh_script_progression --message="Upgrading SSOwat configuration..."
|
2020-04-23 00:03:42 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
|
2015-08-23 17:33:13 +02:00
|
|
|
|
2018-04-30 20:24:17 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2020-11-13 11:25:58 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..."
|
2018-04-30 20:24:17 +02:00
|
|
|
|
2020-04-23 00:03:42 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-04-04 18:32:01 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-10-14 04:28:54 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed"
|