2015-11-18 17:23:35 +01:00
|
|
|
#!/bin/bash
|
2017-02-04 19:14:21 +01:00
|
|
|
|
2017-10-11 12:13:37 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
source _common.sh
|
2017-02-04 19:20:51 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
2015-11-18 17:23:35 +01:00
|
|
|
|
2017-10-11 12:13:37 +02:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
2017-10-11 12:20:00 +02:00
|
|
|
ynh_clean_setup () {
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_clean_check_starting
|
2015-11-18 17:23:35 +01:00
|
|
|
}
|
2017-10-11 12:20:00 +02:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
2015-11-18 17:23:35 +01:00
|
|
|
|
2017-10-11 12:13:37 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# LOAD SETTINGS
|
2017-10-11 12:13:37 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=2
|
2017-10-11 12:13:37 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2017-10-12 12:47:51 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
path_url=$(ynh_app_setting_get --app=$app --key=path)
|
|
|
|
port=$(ynh_app_setting_get --app=$app --key=port)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
language=$(ynh_app_setting_get --app=$app --key=language)
|
2021-01-13 11:31:12 +01:00
|
|
|
version=$(ynh_app_setting_get --app=$app --key=version)
|
2021-09-16 11:39:20 +02:00
|
|
|
data_path=$(ynh_app_setting_get --app=$app --key=data_path)
|
2023-03-06 22:26:35 +01:00
|
|
|
team_display_name=$(ynh_app_setting_get --app=$app --key=team_display_name)
|
|
|
|
admin=$(ynh_app_setting_get --app=$app --key=admin)
|
|
|
|
password=$(ynh_app_setting_get --app=$app --key=password)
|
|
|
|
email=$(ynh_user_get_info --username=$admin --key=mail)
|
|
|
|
db_name=$(ynh_sanitize_dbid --db_name=$app)
|
|
|
|
db_user=$db_name
|
2017-09-12 11:59:47 +02:00
|
|
|
|
2017-10-11 12:13:37 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# CHECK VERSION
|
2017-10-11 12:13:37 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Checking version..." --weight=1
|
2017-10-11 12:13:37 +02:00
|
|
|
|
2021-06-07 08:14:32 +02:00
|
|
|
previous_upstream_version="$(ynh_app_upstream_version --manifest="/etc/yunohost/apps/$YNH_APP_INSTANCE_NAME/manifest.json")"
|
2021-01-11 23:46:48 +01:00
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
2015-11-18 17:23:35 +01:00
|
|
|
|
2021-09-16 11:39:20 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
|
|
|
|
|
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
|
|
|
ynh_clean_setup () {
|
|
|
|
# Restore it if the upgrade fails
|
|
|
|
ynh_restore_upgradebackup
|
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2018-01-29 08:19:04 +01:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
2018-01-29 08:19:04 +01:00
|
|
|
#=================================================
|
|
|
|
|
2018-01-29 13:40:03 +01:00
|
|
|
# Save the port used if not present
|
2021-01-14 08:36:16 +01:00
|
|
|
if [ -z "$port" ]; then
|
2018-01-29 13:40:03 +01:00
|
|
|
port=8065
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=port --value=$port
|
2018-01-29 13:40:03 +01:00
|
|
|
fi
|
|
|
|
|
2021-01-13 11:31:12 +01:00
|
|
|
# Save the language used if not present
|
2021-01-14 08:35:56 +01:00
|
|
|
if [ -z "$language" ]; then
|
2021-01-13 11:31:12 +01:00
|
|
|
language="en"
|
|
|
|
ynh_app_setting_set --app=$app --key=language --value=$language
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If version setting doesn't exist
|
|
|
|
if [ -z "$version" ]; then
|
|
|
|
version="Enterprise"
|
|
|
|
ynh_app_setting_set --app=$app --key=version --value=$version
|
|
|
|
fi
|
|
|
|
|
2021-01-31 11:30:25 +01:00
|
|
|
if [ -z "$db_name" ]; then
|
|
|
|
db_name="$app"
|
|
|
|
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
|
|
|
|
fi
|
|
|
|
|
2021-09-16 11:39:20 +02:00
|
|
|
# If final_path doesn't exist, create it
|
|
|
|
if [ -z "$data_path" ]; then
|
|
|
|
data_path="/home/yunohost.app/$app"
|
|
|
|
ynh_app_setting_set --app=$app --key=data_path --value=$data_path
|
|
|
|
fi
|
|
|
|
|
2021-03-17 20:59:57 +01:00
|
|
|
# Cleaning legacy permissions
|
|
|
|
if ynh_legacy_permissions_exists; then
|
|
|
|
ynh_legacy_permissions_delete_all
|
|
|
|
|
|
|
|
ynh_app_setting_delete --app=$app --key=is_public
|
|
|
|
fi
|
|
|
|
|
2023-03-06 22:26:35 +01:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading dependencies..." --weight=10
|
|
|
|
|
|
|
|
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MIGRATING DATABASE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Check if using MariaDB
|
|
|
|
# This migration should be done before the upgrade
|
|
|
|
if mysqlshow | grep -q "^| $db_name "; then
|
|
|
|
# Mattermost only support MySQL and PostgreSQL (not MariaDB...)
|
|
|
|
# Migrate the database from MariaDB to PostgreSQL
|
|
|
|
mariadb-to-pg
|
|
|
|
fi
|
|
|
|
|
2017-10-11 12:13:37 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# STANDARD UPGRADE STEPS
|
2017-10-11 12:13:37 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=3
|
2017-10-11 12:13:37 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_systemd_action --service_name=$app --action=stop --log_path="/var/log/$app/$app.log"
|
|
|
|
|
2021-09-16 11:39:20 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
|
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=2
|
|
|
|
|
|
|
|
# Create a temporary directory
|
|
|
|
tmpdir="$(mktemp -d)"
|
|
|
|
|
2021-12-26 09:54:59 +01:00
|
|
|
# Backup the config file and local plugins in the temp dir
|
2021-01-11 23:46:48 +01:00
|
|
|
cp -a "$final_path/config/config.json" "$tmpdir/config.json"
|
2021-12-26 09:54:59 +01:00
|
|
|
cp -ar "$final_path/plugins" "$tmpdir/plugins"
|
2021-01-11 23:46:48 +01:00
|
|
|
|
|
|
|
# Remove the app directory securely
|
|
|
|
ynh_secure_remove --file="$final_path"
|
|
|
|
|
2021-01-13 11:31:12 +01:00
|
|
|
if [ "$version" = "Enterprise" ]; then
|
2023-03-07 08:46:42 +01:00
|
|
|
ynh_setup_source --dest_dir="$final_path" --source_id="enterprise_$YNH_ARCH"
|
2021-01-13 11:31:12 +01:00
|
|
|
elif [ "$version" = "Team" ]; then
|
2023-03-07 08:46:42 +01:00
|
|
|
ynh_setup_source --dest_dir="$final_path" --source_id="team_$YNH_ARCH"
|
2021-01-13 11:31:12 +01:00
|
|
|
fi
|
2021-01-11 23:46:48 +01:00
|
|
|
|
2021-12-26 09:54:59 +01:00
|
|
|
# Copy the admin saved settings and plugins from tmp directory to final path
|
2021-01-11 23:46:48 +01:00
|
|
|
cp -a "$tmpdir/config.json" "$final_path/config/config.json"
|
2021-12-26 09:54:59 +01:00
|
|
|
cp -ar --no-clobber "$tmpdir/plugins" "$final_path/"
|
2021-01-11 23:46:48 +01:00
|
|
|
|
|
|
|
# Remove the tmp directory securely
|
|
|
|
ynh_secure_remove --file="$tmpdir"
|
|
|
|
fi
|
2015-11-18 17:23:35 +01:00
|
|
|
|
2021-09-16 11:39:20 +02:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:www-data "$final_path"
|
|
|
|
|
2017-10-12 12:47:51 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=5
|
2017-10-12 12:47:51 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
# Create a dedicated NGINX config
|
2017-10-12 12:47:51 +02:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2017-10-12 14:51:54 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# SETUP SYSTEMD
|
2017-10-12 14:51:54 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Upgrading systemd configuration..." --weight=2
|
2017-10-12 14:51:54 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
2017-10-12 14:51:54 +02:00
|
|
|
|
2023-03-06 22:26:35 +01:00
|
|
|
#=================================================
|
|
|
|
# Fix old migrations
|
|
|
|
#=================================================
|
|
|
|
# Crazy fix for old unupgraded version
|
|
|
|
# IMPORTANT: THIS fix should be done after setup new sources and running mattermost
|
|
|
|
if ynh_compare_current_package_version --comparison lt --version 5.37.1~ynh1
|
|
|
|
then
|
|
|
|
read -r -d '' fix_old_version_sql << EOM
|
|
|
|
ALTER TABLE ChannelMembers ALTER COLUMN mentioncountroot SET DEFAULT '0'::bigint;
|
|
|
|
UPDATE ChannelMembers SET mentioncountroot=0 WHERE mentioncountroot IS NULL;
|
|
|
|
ALTER TABLE ChannelMembers ALTER COLUMN msgcountroot SET DEFAULT '0'::bigint;
|
|
|
|
UPDATE ChannelMembers SET msgcountroot=0 WHERE msgcountroot IS NULL;
|
|
|
|
ALTER TABLE Channels ALTER COLUMN totalmsgcountroot SET DEFAULT '0'::bigint;
|
|
|
|
UPDATE Channels SET totalmsgcountroot=0 WHERE totalmsgcountroot IS NULL;
|
|
|
|
UPDATE SidebarCategories SET collapsed=False where collapsed IS NULL;
|
|
|
|
UPDATE SidebarCategories SET muted=False where muted IS NULL;
|
|
|
|
UPDATE SidebarCategories set sorting = 'manual' where sorting='';
|
|
|
|
UPDATE SidebarCategories set sorting = 'manual' where sorting IS NULL;
|
|
|
|
EOM
|
|
|
|
ynh_psql_execute_as_root --sql="$fix_old_version_sql" --database=$db_name
|
|
|
|
|
|
|
|
# Note: it's possible that some instances need other fixes
|
|
|
|
# If nothing is displayed in the sidebar it may be needed to change the Id of SidebarCategories...
|
|
|
|
fi
|
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
|
|
|
|
|
|
|
|
# Use logrotate to manage app-specific logfile(s)
|
|
|
|
ynh_use_logrotate --non-append
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
|
|
|
|
|
|
|
yunohost service add $app --description="Collaboration platform built for developers" --log="/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=2
|
|
|
|
|
|
|
|
# Start a systemd service
|
2021-03-17 20:59:57 +01:00
|
|
|
ynh_systemd_action --service_name=$app --action=start --log_path=systemd --line_match="Started Mattermost"
|
2015-11-18 17:23:35 +01:00
|
|
|
|
2017-10-11 12:13:37 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2017-10-11 12:13:37 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2017-10-11 12:13:37 +02:00
|
|
|
|
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# END OF SCRIPT
|
2017-10-11 12:13:37 +02:00
|
|
|
#=================================================
|
2017-07-21 22:08:33 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|