2014-01-14 22:57:44 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-08-29 02:34:05 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2014-01-14 22:57:44 +01:00
|
|
|
|
2017-10-20 13:20:55 +02:00
|
|
|
source _common.sh
|
2017-02-15 00:52:24 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-08-29 02:34:05 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-04-13 18:26:29 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=2
|
2017-08-29 02:34:05 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-05-18 14:04:40 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
path_url=$(ynh_app_setting_get --app=$app --key=path)
|
|
|
|
admin=$(ynh_app_setting_get --app=$app --key=admin)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
|
|
db_admin_user=$(ynh_app_setting_get --app=$app --key=db_admin_user)
|
|
|
|
db_admin_pwd=$(ynh_app_setting_get --app=$app --key=db_admin_pwd)
|
2017-02-15 00:52:24 +01:00
|
|
|
|
2019-04-13 18:26:29 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
2017-08-29 02:34:05 +02:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2019-04-13 18:26:29 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..."
|
2014-04-03 15:34:56 +02:00
|
|
|
|
2017-08-29 02:34:05 +02:00
|
|
|
# If db_name doesn't exist, create it
|
2019-05-18 14:04:40 +02:00
|
|
|
if [ -z "$db_name" ]; then
|
2017-08-29 02:34:05 +02:00
|
|
|
# In older version, db_name was always phpmyadmin
|
|
|
|
db_name=phpmyadmin
|
2019-05-18 14:04:40 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
|
2017-02-17 20:40:27 +01:00
|
|
|
fi
|
|
|
|
|
2017-08-29 02:34:05 +02:00
|
|
|
# If final_path doesn't exist, create it
|
2019-05-18 14:04:40 +02:00
|
|
|
if [ -z "$final_path" ]; then
|
2017-09-03 23:11:27 +02:00
|
|
|
final_path="/var/www/$app"
|
2019-05-18 14:04:40 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2017-02-17 20:40:27 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# In older version, the admin setting was admin_user
|
2019-05-18 14:04:40 +02:00
|
|
|
if [ -z "$admin" ]; then
|
|
|
|
admin=$(ynh_app_setting_get --app=$app --key=admin_user)
|
|
|
|
ynh_app_setting_set --app=$app --key=admin --value=$admin
|
|
|
|
ynh_app_setting_delete --app=$app --key=admin_user
|
2017-02-17 20:40:27 +01:00
|
|
|
fi
|
|
|
|
|
2018-05-23 19:09:15 +02:00
|
|
|
# If db_admin_user doesn't exist, create it
|
2019-05-18 14:04:40 +02:00
|
|
|
if [ -z "$db_admin_user" ]; then
|
2018-05-23 19:09:15 +02:00
|
|
|
# Setup a privileged user for phpmyadmin (to prevent using MySQL root user)
|
|
|
|
db_admin_user="${app}_root"
|
2019-05-18 14:04:40 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=db_admin_user --value=$db_admin_user
|
2018-05-23 19:09:15 +02:00
|
|
|
db_admin_pwd="$(ynh_string_random)"
|
2019-05-18 14:04:40 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=db_admin_pwd --value=$db_admin_pwd
|
2018-05-23 19:09:15 +02:00
|
|
|
|
2019-05-18 14:04:40 +02:00
|
|
|
if ! ynh_mysql_user_exists --user=$db_admin_user
|
|
|
|
then
|
|
|
|
ynh_mysql_create_user $db_admin_user "$db_admin_pwd"
|
|
|
|
ynh_mysql_execute_as_root --sql="GRANT ALL PRIVILEGES ON *.* TO '$db_admin_user'@'localhost' IDENTIFIED BY '$db_admin_pwd' WITH GRANT OPTION;
|
|
|
|
FLUSH PRIVILEGES;" --database=mysql
|
2018-05-23 19:09:15 +02:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2017-08-29 02:34:05 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2019-04-13 18:26:29 +02:00
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=15
|
2017-08-29 02:34:05 +02:00
|
|
|
|
2019-02-17 15:42:09 +01:00
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
2017-08-29 02:34:05 +02:00
|
|
|
ynh_clean_setup () {
|
2019-02-17 15:42:09 +01:00
|
|
|
# restore it if the upgrade fails
|
|
|
|
ynh_restore_upgradebackup
|
2017-08-29 02:34:05 +02:00
|
|
|
}
|
2019-02-17 15:42:09 +01:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
2017-08-29 02:34:05 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK THE PATH
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Normalize the URL path syntax
|
2019-05-18 14:04:40 +02:00
|
|
|
path_url=$(ynh_normalize_url_path --path_url=$path_url)
|
2017-08-29 02:34:05 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
2019-04-13 18:26:29 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=5
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2019-05-18 14:04:40 +02:00
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
2019-04-13 18:26:29 +02:00
|
|
|
fi
|
2017-02-17 20:40:27 +01:00
|
|
|
|
2017-08-29 02:34:05 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2019-04-13 18:26:29 +02:00
|
|
|
ynh_script_progression --message="Upgrading nginx web server configuration..." --weight=3
|
2014-03-03 00:56:13 +01:00
|
|
|
|
2017-08-29 02:34:05 +02:00
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
2017-08-03 17:24:48 +02:00
|
|
|
|
2017-08-29 02:34:05 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2019-04-13 18:26:29 +02:00
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..."
|
2017-08-29 02:34:05 +02:00
|
|
|
|
2019-02-17 15:42:09 +01:00
|
|
|
# Create a dedicated user (if not existing)
|
2019-05-18 14:04:40 +02:00
|
|
|
ynh_system_user_create --username=$app
|
2017-08-29 02:34:05 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2019-04-13 18:26:29 +02:00
|
|
|
ynh_script_progression --message="Upgrading php-fpm configuration..." --weight=4
|
2017-08-29 02:34:05 +02:00
|
|
|
|
|
|
|
# Create a dedicated php-fpm config
|
|
|
|
ynh_add_fpm_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
|
|
|
#=================================================
|
|
|
|
# UPGRADE THE DATABASE
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-18 14:04:40 +02:00
|
|
|
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
|
2019-05-03 13:07:08 +02:00
|
|
|
|
2019-04-13 18:26:29 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading database..." --weight=2
|
|
|
|
|
|
|
|
# Handle upgrade from a version before latest version
|
|
|
|
# Ignore warnings and failures that will occur if already on latest version
|
2019-05-18 14:04:40 +02:00
|
|
|
ynh_replace_string --match_string="phpmyadmin" --replace_string="$db_name" --target_file=$final_path/sql/upgrade_column_info_4_3_0+.sql
|
|
|
|
ynh_mysql_connect_as --user="$db_name" --password="$db_pwd" --database="$db_name" \
|
2019-04-13 18:26:29 +02:00
|
|
|
< $final_path/sql/upgrade_column_info_4_3_0+.sql > /dev/null 2>&1 || true
|
2017-08-03 17:24:48 +02:00
|
|
|
|
2019-04-13 18:26:29 +02:00
|
|
|
# Upgrade from last version (don't ignore failures)
|
2019-05-18 14:04:40 +02:00
|
|
|
ynh_replace_string --match_string="phpmyadmin" --replace_string="$db_name" --target_file=$final_path/sql/upgrade_tables_4_7_0+.sql
|
|
|
|
ynh_mysql_connect_as --user="$db_name" --password="$db_pwd" --database="$db_name" \
|
2019-04-13 18:26:29 +02:00
|
|
|
< $final_path/sql/upgrade_tables_4_7_0+.sql
|
2017-08-29 02:34:05 +02:00
|
|
|
|
2019-05-18 14:04:40 +02:00
|
|
|
ynh_replace_string --match_string="phpmyadmin" --replace_string="$db_name" --target_file=$final_path/sql/create_tables.sql
|
|
|
|
ynh_mysql_connect_as --user="$db_name" --password="$db_pwd" --database="$db_name" \
|
2019-04-13 18:26:29 +02:00
|
|
|
< $final_path/sql/create_tables.sql
|
|
|
|
fi
|
2017-08-29 02:34:05 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CONFIGURE PHPMYADMIN
|
|
|
|
#=================================================
|
2019-04-13 18:26:29 +02:00
|
|
|
ynh_script_progression --message="Reconfiguring phpmyadmin..."
|
2017-08-29 02:34:05 +02:00
|
|
|
|
|
|
|
# Verify the checksum and backup the file if it's different
|
2019-05-18 14:04:40 +02:00
|
|
|
ynh_backup_if_checksum_is_different --file="$final_path/config.inc.php"
|
2017-08-29 02:34:05 +02:00
|
|
|
|
2019-05-18 14:04:40 +02:00
|
|
|
ynh_replace_string --match_string="__YNH_PMA_ADMIN_USER__" --replace_string="$db_admin_user" --target_file=../conf/config.inc.php
|
|
|
|
ynh_replace_string --match_string="__YNH_PMA_ADMIN_PASSWORD__" --replace_string="$db_admin_pwd" --target_file=../conf/config.inc.php
|
|
|
|
ynh_replace_string --match_string="__YNH_PMA_USER__" --replace_string="$db_name" --target_file=../conf/config.inc.php
|
|
|
|
ynh_replace_string --match_string="__YNH_PMA_PASSWORD__" --replace_string="$db_pwd" --target_file=../conf/config.inc.php
|
2019-02-17 15:42:09 +01:00
|
|
|
|
2017-08-29 02:34:05 +02:00
|
|
|
cp ../conf/config.inc.php $final_path
|
|
|
|
|
|
|
|
# Recalculate and store the config file checksum into the app settings
|
2019-05-18 14:04:40 +02:00
|
|
|
ynh_store_file_checksum --file="$final_path/config.inc.php"
|
2017-08-29 02:34:05 +02:00
|
|
|
|
2017-10-20 13:20:55 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
|
2019-04-13 18:26:29 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
|
|
|
|
ynh_script_progression --message="Upgrading dependencies with Composer..." --weight=19
|
2017-10-20 13:20:55 +02:00
|
|
|
|
2019-04-13 18:26:29 +02:00
|
|
|
# Install composer
|
|
|
|
ynh_install_composer
|
|
|
|
|
|
|
|
# Install dependencies
|
|
|
|
ynh_exec_warn_less ynh_composer_exec --commands=\"update --no-dev\"
|
|
|
|
fi
|
2017-10-20 13:20:55 +02:00
|
|
|
|
2017-08-29 02:34:05 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Set permissions to app files
|
|
|
|
chown -R root: $final_path
|
2014-07-22 15:58:29 +02:00
|
|
|
# config.inc.php contains sensitive data, restrict its access
|
2017-08-29 02:34:05 +02:00
|
|
|
chown root:$app $final_path/config.inc.php
|
|
|
|
chmod 640 $final_path/config.inc.php
|
2018-05-24 20:31:58 +02:00
|
|
|
# Setup phpMyAdmin temporary folder
|
2018-05-24 22:22:52 +02:00
|
|
|
mkdir -p $final_path/tmp
|
2018-10-05 21:04:30 +02:00
|
|
|
chown -R $app: $final_path/tmp
|
2017-08-29 02:34:05 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2019-04-13 18:26:29 +02:00
|
|
|
ynh_script_progression --message="Upgrading SSOwat configuration..."
|
2017-08-29 02:34:05 +02:00
|
|
|
|
|
|
|
# Restrict access to admin only
|
|
|
|
yunohost app addaccess --users=$admin $app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2019-04-13 18:26:29 +02:00
|
|
|
ynh_script_progression --message="Reloading nginx web server..." --weight=2
|
2017-08-29 02:34:05 +02:00
|
|
|
|
2019-04-13 18:26:29 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-02-17 20:58:14 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-04-13 18:26:29 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|