2015-08-11 12:26:57 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-07-10 16:24:09 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2016-07-10 16:24:09 +02:00
|
|
|
|
2022-01-31 08:47:43 +01:00
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2024-03-23 21:37:39 +01:00
|
|
|
ynh_script_progression --message="Stopping $app's systemd service..."
|
2022-01-31 08:47:43 +01:00
|
|
|
|
2024-03-23 21:37:39 +01:00
|
|
|
ynh_systemd_action --service_name="$app" --action="stop" --log_path="systemd"
|
2022-01-31 08:47:43 +01:00
|
|
|
|
2018-08-10 16:36:04 +02:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2022-01-31 08:47:43 +01:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..."
|
2018-08-10 16:36:04 +02:00
|
|
|
|
2023-01-10 17:16:59 +01:00
|
|
|
# If fpm_footprint doesn't exist, create it
|
2024-01-29 17:29:15 +01:00
|
|
|
if [ -z "${fpm_footprint:-}" ]; then
|
2023-01-10 17:16:59 +01:00
|
|
|
fpm_footprint=low
|
2024-01-29 17:29:15 +01:00
|
|
|
ynh_app_setting_set --app="$app" --key=fpm_footprint --value="$fpm_footprint"
|
2023-01-10 17:16:59 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# If fpm_free_footprint doesn't exist, create it
|
2024-01-29 17:29:15 +01:00
|
|
|
if [ -z "${fpm_free_footprint:-}" ]; then
|
2023-01-10 17:16:59 +01:00
|
|
|
fpm_free_footprint=0
|
2024-01-29 17:29:15 +01:00
|
|
|
ynh_app_setting_set --app="$app" --key=fpm_free_footprint --value="$fpm_free_footprint"
|
2023-01-10 17:16:59 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# If fpm_usage doesn't exist, create it
|
2024-01-29 17:29:15 +01:00
|
|
|
if [ -z "${fpm_usage:-}" ]; then
|
2023-01-10 17:16:59 +01:00
|
|
|
fpm_usage=low
|
2024-01-29 17:29:15 +01:00
|
|
|
ynh_app_setting_set --app="$app" --key=fpm_usage --value="$fpm_usage"
|
2021-02-21 22:20:08 +01:00
|
|
|
fi
|
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2024-01-29 17:29:15 +01:00
|
|
|
ynh_script_progression --message="Upgrading source files..."
|
2018-08-10 15:55:41 +02:00
|
|
|
|
2024-01-29 17:29:15 +01:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$install_dir" --full_replace=1 --keep="config/db.inc.php"
|
2020-07-24 12:46:55 +02:00
|
|
|
|
2024-01-29 17:29:15 +01:00
|
|
|
# Temporary workaround to fix movim.ERROR: Error: Call to undefined function GuzzleHttp\Psr7\uri_for()
|
|
|
|
ynh_replace_string --match_string="0.3.5" --replace_string="0.4.1" --target_file="$install_dir/composer.json"
|
2018-08-12 00:59:39 +02:00
|
|
|
|
2024-01-29 17:21:02 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
2024-01-29 17:29:15 +01:00
|
|
|
chown -R "$app:www-data" "$install_dir"
|
2022-06-20 01:52:27 +02:00
|
|
|
|
2022-01-31 08:47:43 +01:00
|
|
|
#=================================================
|
|
|
|
# UPDATE A CONFIG FILE
|
2020-11-23 23:39:34 +01:00
|
|
|
#=================================================
|
2024-03-23 21:37:39 +01:00
|
|
|
ynh_script_progression --message="Updating $ap's configuration file..."
|
2022-01-31 08:47:43 +01:00
|
|
|
|
2024-01-29 17:57:25 +01:00
|
|
|
ynh_add_config --template="db.example.inc.php" --destination="$install_dir/config/db.inc.php"
|
2020-11-23 23:39:34 +01:00
|
|
|
|
2024-01-29 17:21:02 +01:00
|
|
|
chmod 400 "$install_dir/config/db.inc.php"
|
2024-01-29 17:29:15 +01:00
|
|
|
chown "$app:$app" "$install_dir/config/db.inc.php"
|
2020-11-23 23:39:34 +01:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
2022-01-31 08:47:43 +01:00
|
|
|
# BUILD MOVIM
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
2022-01-31 08:47:43 +01:00
|
|
|
ynh_script_progression --message="Building Movim..."
|
2018-08-10 15:55:41 +02:00
|
|
|
|
2024-03-23 21:13:25 +01:00
|
|
|
ynh_exec_warn_less ynh_install_composer
|
|
|
|
|
|
|
|
ynh_exec_warn_less ynh_composer_exec --commands="config --global discard-changes true --quiet"
|
|
|
|
ynh_exec_warn_less ynh_composer_exec --commands="update --no-interaction --quiet"
|
|
|
|
ynh_exec_warn_less ynh_composer_exec --commands="movim:migrate --quiet"
|
2015-08-11 12:26:57 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
2024-01-29 17:29:15 +01:00
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
2024-01-29 17:29:15 +01:00
|
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
|
2018-08-10 15:55:41 +02:00
|
|
|
|
2024-01-29 17:29:15 +01:00
|
|
|
# Create a dedicated PHP-FPM config
|
2024-03-23 21:13:25 +01:00
|
|
|
ynh_add_fpm_config --usage="$fpm_usage" --footprint="$fpm_footprint"
|
2015-08-19 11:25:29 +02:00
|
|
|
|
2024-01-29 17:29:15 +01:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
2022-01-31 08:47:43 +01:00
|
|
|
|
2024-01-29 17:29:15 +01:00
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
yunohost service add "$app" --description="Responsive web-based XMPP client"
|
2022-01-31 08:47:43 +01:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
2020-07-24 12:46:55 +02:00
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2024-03-23 21:37:39 +01:00
|
|
|
ynh_script_progression --message="Starting $app's systemd service..."
|
2020-07-24 12:46:55 +02:00
|
|
|
|
2024-01-29 17:29:15 +01:00
|
|
|
# Start a systemd service
|
|
|
|
ynh_systemd_action --service_name="$app" --action="start" --log_path="systemd" --line_match="Movim daemon launched"
|
2020-07-24 12:46:55 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
|
2022-01-31 08:47:43 +01:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed"
|