1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/roundcube_ynh.git synced 2024-09-03 20:16:28 +02:00
roundcube_ynh/scripts/upgrade

295 lines
11 KiB
Text
Raw Normal View History

#!/bin/bash
2017-08-26 03:24:41 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-06-02 17:15:57 +02:00
source _common.sh
source /usr/share/yunohost/helpers
2017-08-26 03:24:41 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2019-05-18 18:42:54 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=2
2017-08-26 03:24:41 +02:00
2017-06-02 17:15:57 +02:00
app=$YNH_APP_INSTANCE_NAME
2019-05-18 18:42:54 +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)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
with_carddav=$(ynh_app_setting_get --app=$app --key=with_carddav)
with_enigma=$(ynh_app_setting_get --app=$app --key=with_enigma)
2020-09-27 22:39:12 +02:00
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2020-11-20 22:06:07 +01:00
language=$(ynh_app_setting_get --app=$app --key=language)
2019-05-18 18:42:54 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2017-08-26 03:24:41 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2019-05-18 18:42:54 +02:00
ynh_script_progression --message="Ensuring downward compatibility..."
# If db_name doesn't exist, create it
2017-10-15 01:14:08 +02:00
if [ -z "$db_name" ]; then
2019-05-18 18:42:54 +02:00
db_name=$(ynh_sanitize_dbid --db_name=$app)
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
fi
# If final_path doesn't exist, create it
2017-10-15 01:14:08 +02:00
if [ -z "$final_path" ]; then
final_path=/var/www/$app
2019-05-18 18:42:54 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
fi
2019-03-03 18:12:41 +01:00
# If with_carddav doesn't exist, create it
if [ -z "$with_carddav" ]; then
if [ -f "$final_path/plugins/carddav/config.inc.php" ]
then
with_carddav=1
else
with_carddav=0
fi
2019-05-18 18:42:54 +02:00
ynh_app_setting_set --app=$app --key=with_carddav --value=$with_carddav
2019-03-03 18:12:41 +01:00
fi
# If with_enigma doesn't exist, create it
if [ -z "$with_enigma" ]; then
if [ -f "${final_path}/plugins/enigma/config.inc.php" ]
then
with_enigma=1
else
with_enigma=0
fi
2019-05-18 18:42:54 +02:00
ynh_app_setting_set --app=$app --key=with_enigma --value=$with_enigma
2019-03-03 18:12:41 +01:00
fi
2020-11-20 22:06:07 +01:00
# If language doesn't exist, create it
if [ -z "$language" ]; then
language="en_GB"
ynh_app_setting_set --app=$app --key=language --value=$language
fi
2017-08-26 03:24:41 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2020-11-02 17:47:49 +01:00
ynh_script_progression --message="Backing up $app before upgrading (may take a while)..." --weight=30
2017-08-26 03:24:41 +02:00
2019-03-03 18:12:41 +01:00
# Backup the current version of the app
ynh_backup_before_upgrade
2017-06-02 17:15:57 +02:00
ynh_clean_setup () {
2019-03-03 18:12:41 +01:00
# restore it if the upgrade fails
ynh_restore_upgradebackup
2017-06-02 17:15:57 +02:00
}
2019-03-03 18:12:41 +01:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-08-26 03:24:41 +02:00
#=================================================
# CHECK THE PATH
#=================================================
# Normalize the URL path syntax
2019-05-18 18:42:54 +02:00
path_url=$(ynh_normalize_url_path --path_url=$path_url)
2017-06-02 17:15:57 +02:00
2017-08-26 03:24:41 +02:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
# Get the current version of roundcube
oldversion=$(grep RCMAIL_VERSION "$final_path/program/include/iniset.php" | cut -d\' -f4)
2019-05-18 18:42:54 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=3
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
fi
2017-08-26 03:24:41 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-09-27 22:39:12 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..."
2017-08-26 03:24:41 +02:00
2020-09-27 22:39:12 +02:00
# Create a dedicated NGINX config
2017-08-26 03:24:41 +02:00
ynh_add_nginx_config
2019-03-03 18:12:41 +01:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2019-05-18 18:42:54 +02:00
ynh_script_progression --message="Making sure dedicated system user exists..."
2019-03-03 18:12:41 +01:00
# Create a dedicated user (if not existing)
2019-05-18 18:42:54 +02:00
ynh_system_user_create --username=$app
2019-03-03 18:12:41 +01:00
2017-08-26 03:24:41 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-09-27 22:39:12 +02:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=5
2020-09-27 22:39:12 +02:00
# Create a dedicated PHP-FPM config
2020-11-09 15:09:23 +01:00
ynh_add_fpm_config --package="$extra_php_dependencies"
2017-08-26 03:24:41 +02:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
2017-10-15 01:14:08 +02:00
# CONFIGURE ROUNDCUBE
2017-08-26 03:24:41 +02:00
#=================================================
2019-05-18 18:42:54 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
2019-03-03 18:12:41 +01:00
then
2020-09-27 22:39:12 +02:00
ynh_script_progression --message="Reconfiguring Roundcube..."
2019-05-18 18:42:54 +02:00
rc_conf="$final_path/config/config.inc.php"
# Verify the checksum and backup the file if it's different
ynh_backup_if_checksum_is_different "$rc_conf"
cp ../conf/config.inc.php "$rc_conf"
ynh_replace_string --match_string="__DESKEY__" --replace_string="$(ynh_string_random --length=24)" --target_file="$rc_conf"
ynh_replace_string --match_string="__DBUSER__" --replace_string=$db_name --target_file="$rc_conf"
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
ynh_replace_string --match_string="__DBPASS__" --replace_string="$db_pwd" --target_file="$rc_conf"
2020-11-02 17:47:49 +01:00
ynh_replace_string --match_string="__DBNAME__" --replace_string="$db_name" --target_file="$rc_conf"
2020-11-09 15:09:23 +01:00
ynh_replace_string --match_string="__LANGUAGE__" --replace_string="$language" --target_file="$rc_conf"
2019-05-18 18:42:54 +02:00
#=================================================
# UPDATE DEPENDENCIES WITH COMPOSER
#=================================================
2020-09-27 22:39:12 +02:00
ynh_script_progression --message="Updating dependencies with Composer..." --weight=30
2019-05-18 18:42:54 +02:00
# Upgrade composer itself
ynh_install_composer
2020-09-27 22:39:12 +02:00
# Check if dependencies need to be updated with Composer
2019-05-18 18:42:54 +02:00
if [ -f "$final_path/composer.json" ]
then
ynh_exec_warn_less ynh_composer_exec --commands=\"update --no-dev --prefer-dist\"
else
# Install composer.json
cp "$final_path/composer.json-dist" "$final_path/composer.json"
fi
#=================================================
# UPGRADE ADDITIONAL PLUGINS
#=================================================
ynh_script_progression --message="Upgrading additional plugins..." --weight=30
# Create logs and temp directories
mkdir -p "$final_path/"{logs,temp}
2020-04-24 13:59:22 +02:00
# Install net_LDAP
ynh_composer_exec --commands="require kolab/net_ldap3"
2019-05-18 18:42:54 +02:00
# Update or install contextmenu and automatic_addressbook plugins
# https://plugins.roundcube.net/packages/sblaisot/automatic_addressbook
# https://plugins.roundcube.net/packages/johndoh/contextmenu
ynh_composer_exec --commands="update --no-dev --prefer-dist \
johndoh/contextmenu $contextmenu_version \
sblaisot/automatic_addressbook $automatic_addressbook_version"
installed_plugins+=" 'contextmenu', 'automatic_addressbook',"
# Update or install CardDAV plugin
if [ $with_carddav -eq 1 ]
then
ynh_composer_exec --commands="require roundcube/carddav $carddav_version"
carddav_tmp_config="../conf/carddav.config.inc.php"
2020-04-24 13:34:42 +02:00
carddav_server=0
2019-05-18 18:42:54 +02:00
# Look for installed and supported CardDAV servers
2020-09-27 22:39:12 +02:00
for carddav_app in "nextcloud" "baikal"
2019-05-18 18:42:54 +02:00
do
carddav_app_id=$(yunohost app list --installed -f $carddav_app \
--output-as json | grep -Po '"id":[ ]?"\K.*?(?=")' | head -1)
if [ -n "$carddav_app_id" ]
then
2020-04-24 13:34:42 +02:00
carddav_server=1
2019-05-18 18:42:54 +02:00
# Retrieve app settings and enable relevant preset
carddav_domain=$(ynh_app_setting_get --app=$carddav_app_id --key=domain)
carddav_path=$(ynh_app_setting_get --app=$carddav_app_id --key=path)
carddav_url="https://${carddav_domain}${carddav_path%/}"
ynh_replace_string --match_string="{${carddav_app}_url}" --replace_string="$carddav_url" --target_file="$carddav_tmp_config"
ynh_replace_string --match_string="\/\* PRESET FOR: $carddav_app" --replace_string="" --target_file="$carddav_tmp_config"
ynh_replace_string --match_string="END: $carddav_app \*\/" --replace_string="" --target_file="$carddav_tmp_config"
fi
done
# Copy the plugin configuration file
cp "$carddav_tmp_config" ""$final_path/plugins/carddav/config.inc.php""
2020-09-27 22:39:12 +02:00
# Do not actually add the cardDAV plugin if there's no carddav server available...
2020-04-24 13:34:42 +02:00
if [ $carddav_server -eq 1 ]
then
installed_plugins+=" 'carddav',"
fi
2019-05-18 18:42:54 +02:00
fi
# Install Enigma plugin
if [ $with_enigma -eq 1 ]
then
2019-11-26 06:23:41 +01:00
enigma_tmp_config="../conf/enigma.config.inc.php"
ynh_replace_string --match_string="__DIR__" --replace_string="$final_path/plugins/enigma/home" --target_file="$enigma_tmp_config"
cp "$enigma_tmp_config" "$final_path/plugins/enigma/config.inc.php" \
2019-05-18 18:42:54 +02:00
&& installed_plugins+=" 'enigma'," \
|| ynh_print_warn --message="Unable to install Enigma plugin"
fi
#=================================================
# UPDATE ROUNDCUBE CONFIGURATION
#=================================================
2020-11-02 17:47:49 +01:00
ynh_script_progression --message="Updating $app configuration..." --weight=4
2019-05-18 18:42:54 +02:00
ynh_replace_string --match_string="^\s*// installed plugins" --replace_string="&\n $installed_plugins" --target_file="$rc_conf"
2020-09-27 22:39:12 +02:00
# Update JavaScript dependencies
2019-05-18 18:42:54 +02:00
(cd "$final_path"
/usr/bin/php -q ./bin/install-jsdeps.sh)
# Store the config file checksum into the app settings
ynh_store_file_checksum --file="$rc_conf"
#=================================================
# UPDATE ROUNDCUBE CORE
#=================================================
2020-11-02 17:47:49 +01:00
ynh_script_progression --message="Updating $app core..." --weight=4
2019-05-18 18:42:54 +02:00
( cd "$final_path"
ynh_exec_warn ./bin/update.sh --version=$oldversion -y)
2017-07-03 15:05:22 +02:00
fi
2017-08-26 03:24:41 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
2017-06-18 17:09:53 +02:00
2017-08-26 03:24:41 +02:00
# Set permissions to app files
chown -R root: "$final_path"
mkdir -p "$final_path/plugins/enigma/home"
2019-03-03 18:12:41 +01:00
chown -R $app: "$final_path/"{temp,logs,plugins/enigma/home}
2017-08-26 03:24:41 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2020-09-27 22:39:12 +02:00
ynh_script_progression --message="Reloading NGINX web server..."
2019-05-18 18:42:54 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-03-03 18:13:57 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2020-11-02 17:47:49 +01:00
ynh_script_progression --message="Installation of $app completed" --last