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

117 lines
4.2 KiB
Text
Raw Permalink 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-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
# In older version, the admin setting was admin_user
if [ -v admin ]; then
ynh_app_setting_delete --app=$app --key=admin
2017-02-17 20:40:27 +01:00
fi
if [ -v admin_user ]; then
2019-05-18 14:04:40 +02:00
ynh_app_setting_delete --app=$app --key=admin_user
2017-02-17 20:40:27 +01:00
fi
# If db_admin_user doesn't exist, create it
2019-05-18 14:04:40 +02:00
if [ -z "$db_admin_user" ]; then
# 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
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
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
fi
fi
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
ynh_setup_source --dest_dir="$install_dir" --keep="config.inc.php" --full_replace=1
2019-04-13 18:26:29 +02:00
fi
2017-02-17 20:40:27 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-07-10 22:32:23 +02:00
2017-08-29 02:34:05 +02:00
#=================================================
2023-11-02 18:44:07 +01:00
# REAPPLY SYSTEM CONFIGURATIONS
2017-08-29 02:34:05 +02:00
#=================================================
2023-11-02 18:44:07 +01:00
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
2020-09-24 13:44:38 +02:00
# Create a dedicated NGINX config
2017-08-29 02:34:05 +02:00
ynh_add_nginx_config
2020-09-24 13:44:38 +02:00
# Create a dedicated PHP-FPM config
ynh_add_fpm_config
2017-08-29 02:34:05 +02:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
# UPGRADE THE DATABASE
#=================================================
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
ynh_replace_string --match_string="phpmyadmin" --replace_string="$db_name" --target_file=$install_dir/sql/upgrade_column_info_4_3_0+.sql
2019-05-18 14:04:40 +02:00
ynh_mysql_connect_as --user="$db_name" --password="$db_pwd" --database="$db_name" \
< $install_dir/sql/upgrade_column_info_4_3_0+.sql > /dev/null 2>&1 || true
2019-04-13 18:26:29 +02:00
# Upgrade from last version (don't ignore failures)
ynh_replace_string --match_string="phpmyadmin" --replace_string="$db_name" --target_file=$install_dir/sql/upgrade_tables_4_7_0+.sql
2019-05-18 14:04:40 +02:00
ynh_mysql_connect_as --user="$db_name" --password="$db_pwd" --database="$db_name" \
< $install_dir/sql/upgrade_tables_4_7_0+.sql
2017-08-29 02:34:05 +02:00
ynh_replace_string --match_string="phpmyadmin" --replace_string="$db_name" --target_file=$install_dir/sql/create_tables.sql
2019-05-18 14:04:40 +02:00
ynh_mysql_connect_as --user="$db_name" --password="$db_pwd" --database="$db_name" \
< $install_dir/sql/create_tables.sql
2019-04-13 18:26:29 +02:00
fi
2017-08-29 02:34:05 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Setup phpMyAdmin temporary folder
mkdir -p $install_dir/tmp
chown -R $app: $install_dir/tmp
2019-02-17 20:58:14 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-07-08 08:42:29 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last