2016-04-29 17:52:21 +02:00
|
|
|
#!/bin/bash
|
2017-07-18 13:03:45 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
source _common.sh
|
2017-09-05 20:28:27 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2021-06-30 19:03:49 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
2016-04-29 17:52:21 +02:00
|
|
|
|
2017-07-19 13:10:43 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2021-06-30 17:01:55 +02:00
|
|
|
|
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
path_url=$(ynh_app_setting_get --app=$app --key=path)
|
|
|
|
admin=$(ynh_app_setting_get --app=$app --key=admin)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
2021-11-18 14:41:26 +01:00
|
|
|
port=$(ynh_app_setting_get --app=$app --key=port)
|
2021-11-19 13:47:53 +01:00
|
|
|
password=$(ynh_app_setting_get --app=$app --key=password)
|
|
|
|
admin=$(ynh_app_setting_get --app=$app --key=admin)
|
|
|
|
email=$(ynh_app_setting_get --app=$app --key=email)
|
2022-07-26 21:05:19 +02:00
|
|
|
mongo_version=$(ynh_app_setting_get --app=$app --key=mongo_version)
|
2021-06-30 17:01:55 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
2021-11-13 23:08:51 +01:00
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2022-10-01 19:11:02 +02:00
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=45
|
2021-11-13 23:08:51 +01:00
|
|
|
|
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
|
|
|
ynh_clean_setup () {
|
2022-06-26 20:30:44 +02:00
|
|
|
ynh_clean_check_starting
|
2021-11-13 23:08:51 +01:00
|
|
|
# Restore it if the upgrade fails
|
|
|
|
ynh_restore_upgradebackup
|
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2022-06-26 20:30:44 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=1
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
|
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2021-06-30 19:03:49 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
2021-06-30 17:01:55 +02:00
|
|
|
|
|
|
|
# If final_path doesn't exist, create it
|
2021-06-30 19:03:49 +02:00
|
|
|
if [ -z "$final_path" ]; then
|
|
|
|
final_path=/var/www/$app
|
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
|
|
|
fi
|
2021-06-30 17:01:55 +02: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
|
|
|
|
|
2022-07-26 21:05:19 +02:00
|
|
|
# If mongo_version doesn't exist, create it
|
|
|
|
if [ -z "$mongo_version" ]; then
|
|
|
|
mongo_version="$(mongod --version | grep -oP 'db version v\K.{0,3}')"
|
|
|
|
ynh_app_setting_set --app=$app --key=mongo_version --value=$mongo_version
|
|
|
|
fi
|
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2021-06-30 19:03:49 +02:00
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=4
|
2021-06-30 17:01:55 +02:00
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2019-01-25 23:34:56 +01:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2022-10-01 19:11:02 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=22
|
2021-06-30 19:03:49 +02:00
|
|
|
# Remove the app directory securely
|
|
|
|
ynh_secure_remove --file="$final_path"
|
2021-06-30 17:01:55 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
|
|
|
fi
|
2017-07-18 11:48:53 +02:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
2021-11-19 13:47:53 +01:00
|
|
|
chown -R $app:$app "$final_path"
|
2018-01-10 17:21:46 +01:00
|
|
|
|
2022-06-26 20:30:44 +02:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading dependencies..." --weight=7
|
|
|
|
|
|
|
|
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
|
|
|
|
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
|
2022-07-26 21:05:19 +02:00
|
|
|
ynh_exec_warn_less ynh_install_mongo --mongo_version=$mongo_version
|
2022-07-11 08:26:57 +02:00
|
|
|
ynh_exec_warn_less ynh_install_extra_app_dependencies --repo="deb https://dl.yarnpkg.com/debian/ stable main" --package="yarn" --key="https://dl.yarnpkg.com/debian/pubkey.gpg"
|
2022-06-26 20:30:44 +02:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-06-30 19:03:49 +02:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=2
|
2021-06-30 17:01:55 +02:00
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2021-06-30 19:03:49 +02:00
|
|
|
#=================================================
|
2022-06-26 20:30:44 +02:00
|
|
|
# SPECIFIC UPGRADE
|
2022-06-27 02:49:41 +02:00
|
|
|
#=================================================
|
|
|
|
# CONFIGURE MONGOD
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring mongod..." --weight=1
|
|
|
|
|
2022-07-12 09:33:07 +02:00
|
|
|
ynh_replace_string --match_string="# engine:" --replace_string=" engine: wiredTiger" --target_file="/etc/mongod.conf"
|
|
|
|
ynh_replace_string --match_string="#replication:" --replace_string="replication:\n replSetName: rs01" --target_file="/etc/mongod.conf"
|
2022-06-27 02:49:41 +02:00
|
|
|
|
2022-07-12 09:33:07 +02:00
|
|
|
ynh_exec_warn_less systemctl enable mongod --quiet
|
|
|
|
ynh_systemd_action --service_name=mongod --action=restart --log_path=/var/log/mongodb/mongod.log --line_match="Waiting for connections"
|
2022-06-27 02:49:41 +02:00
|
|
|
|
2022-06-28 22:52:55 +02:00
|
|
|
if ynh_exec_warn_less ynh_mongo_exec --command="printjson(rs.status())" | grep -q "no replset config has been received"; then
|
|
|
|
ynh_exec_warn_less ynh_mongo_exec --command="printjson(rs.initiate())" --eval
|
|
|
|
fi
|
2022-06-27 02:49:41 +02:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
#==============================================
|
|
|
|
# INSTALL ROCKETCHAT
|
|
|
|
#==============================================
|
2022-10-01 19:11:02 +02:00
|
|
|
ynh_script_progression --message="Building $app... (this will take some time and resources!)" --weight=29
|
2021-06-30 17:01:55 +02:00
|
|
|
|
|
|
|
pushd $final_path/programs/server
|
2022-06-27 02:49:41 +02:00
|
|
|
ynh_use_nodejs
|
2022-07-11 08:26:57 +02:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn install --unsafe-perm
|
2021-06-30 17:01:55 +02:00
|
|
|
popd
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
2021-06-30 19:03:49 +02:00
|
|
|
ynh_script_progression --message="Upgrading systemd configuration..." --weight=2
|
2021-06-30 17:01:55 +02:00
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
2022-06-26 20:30:44 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
2021-11-14 09:52:08 +01:00
|
|
|
# SETUP LOGROTATE
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
2021-11-14 09:52:08 +01:00
|
|
|
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
|
2021-06-30 17:01:55 +02:00
|
|
|
|
2021-11-14 09:52:08 +01:00
|
|
|
# Use logrotate to manage app-specific logfile(s)
|
|
|
|
ynh_use_logrotate --non-append
|
2021-06-30 17:01:55 +02:00
|
|
|
|
|
|
|
#=================================================
|
2021-06-30 19:03:49 +02:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
2021-06-30 19:03:49 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2017-11-27 21:45:46 +01:00
|
|
|
|
2022-06-27 02:49:41 +02:00
|
|
|
yunohost service add $app --description="Team collaboration communication platform"
|
2017-07-18 11:48:53 +02:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
2021-06-30 19:03:49 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
2022-10-01 19:11:02 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=19
|
2017-07-21 14:35:08 +02:00
|
|
|
|
2022-06-26 20:30:44 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="SERVER RUNNING"
|
2021-06-30 17:01:55 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2021-06-30 19:03:49 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2021-06-30 17:01:55 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2017-07-18 11:48:53 +02:00
|
|
|
|
2021-06-30 19:03:49 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|