mirror of
https://github.com/YunoHost-Apps/phpmyadmin_ynh.git
synced 2024-09-03 19:56:46 +02:00
99 lines
3.9 KiB
Bash
99 lines
3.9 KiB
Bash
#!/bin/bash
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
#=================================================
|
|
ynh_script_progression "Ensuring downward compatibility..."
|
|
|
|
# In older version, the admin setting was admin_user
|
|
if [ -v admin ]; then
|
|
ynh_app_setting_delete --key=admin
|
|
fi
|
|
|
|
if [ -v admin_user ]; then
|
|
ynh_app_setting_delete --key=admin_user
|
|
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 --key=db_admin_user --value=$db_admin_user
|
|
db_admin_pwd="$(ynh_string_random)"
|
|
ynh_app_setting_set --key=db_admin_pwd --value=$db_admin_pwd
|
|
|
|
if ! ynh_mysql_user_exists --user=$db_admin_user
|
|
then
|
|
ynh_mysql_create_user $db_admin_user "$db_admin_pwd"
|
|
ynh_mysql_db_shell <<< "GRANT ALL PRIVILEGES ON *.* TO '$db_admin_user'@'localhost' IDENTIFIED BY '$db_admin_pwd' WITH GRANT OPTION; FLUSH PRIVILEGES;" --database=mysql
|
|
fi
|
|
fi
|
|
|
|
#=================================================
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
#=================================================
|
|
|
|
# FIXME: this is still supported but the recommendation is now to *always* re-setup the app sources wether or not the upstream sources changed
|
|
if ynh_app_upstream_version_changed
|
|
then
|
|
ynh_script_progression "Upgrading source files..."
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
ynh_setup_source --dest_dir="$install_dir" --keep="config.inc.php" --full_replace
|
|
fi
|
|
|
|
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod 750 "$install_dir"
|
|
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod -R o-rwx "$install_dir"
|
|
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chown -R $app:www-data "$install_dir"
|
|
#=================================================
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
|
#=================================================
|
|
ynh_script_progression "Upgrading system configurations related to $app..."
|
|
|
|
# Create a dedicated NGINX config
|
|
ynh_config_add_nginx
|
|
|
|
# Create a dedicated PHP-FPM config
|
|
ynh_config_add_phpfpm
|
|
|
|
#=================================================
|
|
# UPGRADE THE DATABASE
|
|
#=================================================
|
|
|
|
# FIXME: this is still supported but the recommendation is now to *always* re-setup the app sources wether or not the upstream sources changed
|
|
if ynh_app_upstream_version_changed
|
|
then
|
|
ynh_script_progression "Upgrading database..."
|
|
|
|
# Handle upgrade from a version before latest version
|
|
# Ignore warnings and failures that will occur if already on latest version
|
|
ynh_replace --match="phpmyadmin" --replace="$db_name" --file=$install_dir/sql/upgrade_column_info_4_3_0+.sql
|
|
ynh_mysql_db_shell \
|
|
< $install_dir/sql/upgrade_column_info_4_3_0+.sql > /dev/null 2>&1 || true
|
|
|
|
# Upgrade from last version (don't ignore failures)
|
|
ynh_replace --match="phpmyadmin" --replace="$db_name" --file=$install_dir/sql/upgrade_tables_4_7_0+.sql
|
|
ynh_mysql_db_shell \
|
|
< $install_dir/sql/upgrade_tables_4_7_0+.sql
|
|
|
|
ynh_replace --match="phpmyadmin" --replace="$db_name" --file=$install_dir/sql/create_tables.sql
|
|
ynh_mysql_db_shell \
|
|
< $install_dir/sql/create_tables.sql
|
|
fi
|
|
|
|
#=================================================
|
|
# SECURE FILES AND DIRECTORIES
|
|
#=================================================
|
|
|
|
# Setup phpMyAdmin temporary folder
|
|
mkdir -p $install_dir/tmp
|
|
chown -R $app: $install_dir/tmp
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression "Upgrade of $app completed"
|