1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/phpmyadmin_ynh.git synced 2024-09-03 19:56:46 +02:00
phpmyadmin_ynh/scripts/upgrade

212 lines
7.1 KiB
Text
Raw Normal View History

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
source _common.sh
source /usr/share/yunohost/helpers
2019-02-28 00:02:46 +01:00
# Overload the helper ynh_handle_getopts_args to have fixes from unstable.
# Needed for composer helpers
source _getopts_fix.sh
2017-08-29 02:34:05 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2019-02-17 20:58:14 +01:00
ynh_print_info "Loading installation settings..."
2017-08-29 02:34:05 +02:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get $app domain)
2017-08-29 02:34:05 +02:00
path_url=$(ynh_app_setting_get $app path)
2017-02-15 02:14:31 +01:00
admin=$(ynh_app_setting_get $app admin)
final_path=$(ynh_app_setting_get $app final_path)
2017-08-29 02:34:05 +02:00
db_name=$(ynh_app_setting_get $app db_name)
db_admin_user=$(ynh_app_setting_get $app db_admin_user)
db_admin_pwd=$(ynh_app_setting_get $app db_admin_pwd)
2017-08-29 02:34:05 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2019-02-17 20:58:14 +01:00
ynh_print_info "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
if [ -z $db_name ]; then
# In older version, db_name was always phpmyadmin
db_name=phpmyadmin
ynh_app_setting_set $app db_name $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
if [ -z $final_path ]; then
2017-09-03 23:11:27 +02:00
final_path="/var/www/$app"
2017-08-29 02:34:05 +02:00
ynh_app_setting_set $app final_path $final_path
2017-02-17 20:40:27 +01:00
fi
# In older version, the admin setting was admin_user
2017-08-29 02:34:05 +02:00
if [ -z $admin ]; then
admin=$(ynh_app_setting_get $app admin_user)
ynh_app_setting_set "$app" admin "$admin"
ynh_app_setting_delete $app admin_user
2017-02-17 20:40:27 +01:00
fi
# If db_admin_user doesn't exist, create it
if [ -z $db_admin_user ]; then
# Setup a privileged user for phpmyadmin (to prevent using MySQL root user)
db_admin_user="${app}_root"
ynh_app_setting_set $app db_admin_user $db_admin_user
db_admin_pwd="$(ynh_string_random)"
ynh_app_setting_set $app db_admin_pwd $db_admin_pwd
if ! ynh_mysql_user_exists "$db_admin_user" ; then
ynh_mysql_create_user "$db_admin_user" "$db_admin_pwd"
ynh_mysql_execute_as_root "GRANT ALL PRIVILEGES ON *.* TO '$db_admin_user'@'localhost' IDENTIFIED BY '$db_admin_pwd' WITH GRANT OPTION;
FLUSH PRIVILEGES;" mysql
fi
fi
2017-08-29 02:34:05 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2019-02-17 20:58:14 +01:00
ynh_print_info "Backing up the app before upgrading (may take a while)..."
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
path_url=$(ynh_normalize_url_path $path_url)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-02-17 20:58:14 +01:00
ynh_print_info "Upgrading source files..."
2017-08-29 02:34:05 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source "$final_path"
2017-02-17 20:40:27 +01:00
2017-08-29 02:34:05 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2019-02-17 20:58:14 +01:00
ynh_print_info "Upgrading nginx web server configuration..."
2017-08-29 02:34:05 +02:00
# Create a dedicated nginx config
ynh_add_nginx_config
2017-08-29 02:34:05 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2019-02-17 20:58:14 +01:00
ynh_print_info "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)
2017-08-29 02:34:05 +02:00
ynh_system_user_create $app
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2019-02-17 20:58:14 +01:00
ynh_print_info "Upgrading php-fpm configuration..."
2017-08-29 02:34:05 +02:00
# Create a dedicated php-fpm config
ynh_add_fpm_config
#=================================================
# SPECIFIC UPGRADE
#=================================================
# UPGRADE THE DATABASE
#=================================================
2019-02-17 20:58:14 +01:00
ynh_print_info "Upgrading database..."
2017-08-29 02:34:05 +02:00
db_pwd=$(ynh_app_setting_get $app mysqlpwd)
# Handle upgrade from a version before latest version
# Ignore warnings and failures that will occur if already on latest version
2017-08-29 02:34:05 +02:00
ynh_replace_string "phpmyadmin" "$db_name" $final_path/sql/upgrade_column_info_4_3_0+.sql
ynh_mysql_connect_as "$db_name" "$db_pwd" "$db_name" \
< $final_path/sql/upgrade_column_info_4_3_0+.sql > /dev/null 2>&1 || true
# Upgrade from last version (don't ignore failures)
2017-08-29 02:34:05 +02:00
ynh_replace_string "phpmyadmin" "$db_name" $final_path/sql/upgrade_tables_4_7_0+.sql
ynh_mysql_connect_as "$db_name" "$db_pwd" "$db_name" \
< $final_path/sql/upgrade_tables_4_7_0+.sql
ynh_replace_string "phpmyadmin" "$db_name" $final_path/sql/create_tables.sql
ynh_mysql_connect_as "$db_name" "$db_pwd" "$db_name" \
< $final_path/sql/create_tables.sql
#=================================================
# CONFIGURE PHPMYADMIN
#=================================================
2019-02-17 20:58:14 +01:00
ynh_print_info "Reconfiguring phpmyadmin..."
2017-08-29 02:34:05 +02:00
# Verify the checksum and backup the file if it's different
ynh_backup_if_checksum_is_different "$final_path/config.inc.php"
2019-02-17 15:42:09 +01:00
ynh_replace_string "__YNH_PMA_ADMIN_USER__" "$db_admin_user" ../conf/config.inc.php
ynh_replace_string "__YNH_PMA_ADMIN_PASSWORD__" "$db_admin_pwd" ../conf/config.inc.php
ynh_replace_string "__YNH_PMA_USER__" "$db_name" ../conf/config.inc.php
ynh_replace_string "__YNH_PMA_PASSWORD__" "$db_pwd" ../conf/config.inc.php
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
ynh_store_file_checksum "$final_path/config.inc.php"
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2019-02-17 20:58:14 +01:00
ynh_print_info "Upgrading dependencies with Composer..."
# Install composer
2019-02-28 00:02:46 +01:00
ynh_install_composer
# Install dependencies
2019-02-28 00:02:46 +01:00
ynh_exec_warn_less ynh_composer_exec --commands=\"update --no-dev\"
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
# Setup phpMyAdmin temporary folder
mkdir -p $final_path/tmp
chown -R $app: $final_path/tmp
2017-08-29 02:34:05 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
2019-02-17 20:58:14 +01:00
ynh_print_info "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-02-17 20:58:14 +01:00
ynh_print_info "Reloading nginx web server..."
2017-08-29 02:34:05 +02:00
systemctl reload nginx
2019-02-17 20:58:14 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info "Upgrade of $app completed"