2019-01-28 19:15:11 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_print_info --message="Loading installation settings..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-04-24 03:11:53 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
path_url=$(ynh_app_setting_get --app=$app --key=path)
|
|
|
|
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
port=$(ynh_app_setting_get --app=$app --key=port)
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2019-05-15 01:57:52 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_print_info --message="Ensuring downward compatibility..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
|
|
|
# Fix is_public as a boolean value
|
|
|
|
if [ "$is_public" = "Yes" ]; then
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=is_public --value=1
|
2019-01-28 19:15:11 +01:00
|
|
|
is_public=1
|
|
|
|
elif [ "$is_public" = "No" ]; then
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=is_public --value=0
|
2019-01-28 19:15:11 +01:00
|
|
|
is_public=0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If final_path doesn't exist, create it
|
2019-05-15 01:57:52 +02:00
|
|
|
if [ -z "$final_path" ]; then
|
2019-01-28 19:15:11 +01:00
|
|
|
final_path=/var/www/$app
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2019-01-28 19:15:11 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_print_info --message="Backing up the app before upgrading (may take a while)..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
|
|
|
ynh_clean_setup () {
|
|
|
|
# restore it if the upgrade fails
|
|
|
|
ynh_restore_upgradebackup
|
2019-02-01 22:10:17 +01:00
|
|
|
ynh_clean_check_starting
|
2019-01-28 19:15:11 +01:00
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
2019-05-15 01:57:52 +02:00
|
|
|
# STANDARD UPGRADE STEPS
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
2019-05-15 01:57:52 +02:00
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Stopping a systemd service..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2019-05-15 01:57:52 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action=stop
|
2019-01-28 19:15:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_print_info --message="Upgrading source files..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2019-01-28 19:56:51 +01:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src#
|
2019-05-15 01:57:52 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading source files..." --time --weight=1
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
|
|
|
fi
|
2019-01-28 19:15:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_print_info --message="Upgrading nginx web server configuration..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_print_info --message="Upgrading dependencies..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2019-03-14 00:35:51 +01:00
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2019-05-15 01:57:52 +02:00
|
|
|
ynh_install_nodejs --nodejs_version="10"
|
2019-01-29 03:27:53 +01:00
|
|
|
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_print_info --message="Making sure dedicated system user exists..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_system_user_create --username=$app --home_dir=$final_path
|
2019-01-28 19:15:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
2019-05-15 01:57:52 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE LOG FOLDER
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Creating log folder..."
|
|
|
|
|
|
|
|
mkdir -p "/var/log/$app"
|
|
|
|
chown -R "$app":"$app" "/var/log/$app"
|
|
|
|
|
2019-02-02 20:47:00 +01:00
|
|
|
#=================================================
|
2019-03-07 23:59:59 +01:00
|
|
|
# CREATE STORAGE FOLDER
|
2019-02-02 20:47:00 +01:00
|
|
|
#=================================================
|
2019-05-15 01:57:52 +02:00
|
|
|
ynh_print_info --message="Creating storage folder..."
|
2019-02-02 20:47:00 +01:00
|
|
|
|
2019-02-09 02:57:23 +01:00
|
|
|
DIRECTORY="$final_path/db"
|
|
|
|
#Move old db
|
|
|
|
if [ -d "$DIRECTORY" ]; then
|
|
|
|
mv "$final_path/db" "$final_path/distbin-db"
|
|
|
|
fi
|
2019-02-02 20:47:00 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MAKE INSTALL
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
2019-05-15 01:57:52 +02:00
|
|
|
ynh_print_info --message="Making install..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2019-02-01 08:54:19 +01:00
|
|
|
chown -R "$app":"$app" "$final_path"
|
2019-01-29 03:27:53 +01:00
|
|
|
pushd $final_path
|
2019-02-02 21:20:25 +01:00
|
|
|
ynh_use_nodejs
|
2019-02-09 02:57:23 +01:00
|
|
|
sudo -u $app env PATH=$PATH npm install --ignore-scripts
|
|
|
|
sudo -u $app env PATH=$PATH npm run build
|
|
|
|
cp package* dist/
|
|
|
|
popd
|
|
|
|
|
|
|
|
pushd $final_path/dist
|
|
|
|
sudo -u $app env PATH=$PATH npm install --ignore-scripts --production
|
2019-01-29 03:27:53 +01:00
|
|
|
popd
|
|
|
|
|
2019-02-08 23:10:29 +01:00
|
|
|
#=================================================
|
|
|
|
# MODIFY A CONFIG FILE
|
|
|
|
#=================================================
|
2019-05-15 01:57:52 +02:00
|
|
|
ynh_print_info --message="Modifying config file..."
|
2019-02-08 23:10:29 +01:00
|
|
|
|
2019-06-01 06:55:42 +02:00
|
|
|
ynh_backup_if_checksum_is_different --file="$final_path/.env"
|
2019-02-08 23:10:29 +01:00
|
|
|
cp "../conf/.env" "$final_path/.env"
|
|
|
|
|
2019-03-20 23:59:18 +01:00
|
|
|
if [ "$path_url" == "/" ]
|
|
|
|
then
|
|
|
|
domain_uri="$domain"
|
|
|
|
else
|
|
|
|
domain_uri="$domain$path_url"
|
|
|
|
fi
|
|
|
|
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_replace_string --match_string="__NODEJS_PATH__" --replace_string="$nodejs_path" --target_file="$final_path/.env"
|
|
|
|
ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_file="$final_path/.env"
|
|
|
|
ynh_replace_string --match_string="__DOMAIN_URI__" --replace_string="$domain_uri" --target_file="$final_path/.env"
|
|
|
|
ynh_replace_string --match_string="__FINALPATH__" --replace_string="$final_path" --target_file="$final_path/.env"
|
2019-02-08 23:10:29 +01:00
|
|
|
|
2019-05-15 01:57:52 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE THE CONFIG FILE CHECKSUM
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Storing the config file checksum..."
|
|
|
|
|
2019-01-28 19:15:11 +01:00
|
|
|
# Recalculate and store the checksum of the file for the next upgrade.
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_store_file_checksum --file="$final_path/.env"
|
2019-01-28 19:15:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_print_info --message="Upgrading logrotate configuration..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
|
|
|
# Use logrotate to manage app-specific logfile(s)
|
|
|
|
ynh_use_logrotate --non-append
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_print_info --message="Upgrading systemd configuration..."
|
2019-02-05 18:07:39 +01:00
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
2019-01-28 19:15:11 +01:00
|
|
|
ynh_add_systemd_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
2019-05-15 01:57:52 +02:00
|
|
|
ynh_print_info --message="Securing files and directories..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
|
|
|
# Set permissions on app files
|
2019-01-29 01:59:40 +01:00
|
|
|
chown -R $app:$app $final_path
|
|
|
|
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_print_info --message="Upgrading SSOwat configuration..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
|
|
|
# Make app public if necessary
|
|
|
|
if [ $is_public -eq 1 ]
|
|
|
|
then
|
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
|
2019-01-28 19:15:11 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
2019-05-15 01:57:52 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
2019-05-15 01:57:52 +02:00
|
|
|
ynh_print_info --message="Starting a systemd service..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2019-05-15 01:57:52 +02:00
|
|
|
ynh_systemd_action --action=start --service_name=$app --log_path=systemd --line_match="Started Distbin Service"
|
|
|
|
sleep 10
|
2019-02-01 22:10:17 +01:00
|
|
|
|
|
|
|
#=================================================
|
2019-05-15 01:57:52 +02:00
|
|
|
# RELOAD NGINX
|
2019-02-01 22:10:17 +01:00
|
|
|
#=================================================
|
2019-05-15 01:57:52 +02:00
|
|
|
ynh_print_info --message="Reloading nginx web server..."
|
2019-02-01 22:10:17 +01:00
|
|
|
|
2019-05-15 01:57:52 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-02-11 04:34:08 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_print_info --message="Upgrade of $app completed"
|