1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/peertube_ynh.git synced 2024-09-03 19:56:29 +02:00
peertube_ynh/scripts/upgrade

252 lines
9 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source ynh_add_extra_apt_repos__3
2019-04-03 03:27:49 +02:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2019-06-03 22:37:54 +02:00
ynh_print_info --message="Loading installation settings..."
app=$YNH_APP_INSTANCE_NAME
2019-06-03 22:37:54 +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)
admin_email=$(ynh_app_setting_get --app=$app --key=admin_email)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
port=$(ynh_app_setting_get --app=$app --key=port)
db_name=$(ynh_app_setting_get --app=$app --key=psql_db)
db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2019-06-03 22:37:54 +02:00
ynh_print_info --message="Ensuring downward compatibility..."
# Fix is_public as a boolean value
if [ "$is_public" = "Yes" ]; then
2019-06-03 22:37:54 +02:00
ynh_app_setting_set --app=$app --key=is_public --value=1
is_public=1
elif [ "$is_public" = "No" ]; then
2019-06-03 22:37:54 +02:00
ynh_app_setting_set --app=$app --key=is_public --value=0
is_public=0
fi
2019-04-03 04:44:26 +02:00
# Close a port
if yunohost firewall list | grep -q "\- $port$"
then
2019-06-03 22:37:54 +02:00
ynh_print_info --message="Closing port $port"
2019-04-03 04:44:26 +02:00
ynh_exec_warn_less yunohost firewall disallow TCP $port
fi
2019-06-03 22:37:54 +02:00
# Add PostgreSQL extension for v1.0.0-beta.10.pre.1
ynh_psql_execute_as_root --sql="CREATE EXTENSION IF NOT EXISTS unaccent;" --database=$db_name
ynh_psql_execute_as_root --sql="CREATE EXTENSION IF NOT EXISTS pg_trgm;" --database=$db_name
2019-04-03 02:43:43 +02:00
# Remove repository
2019-06-03 22:37:54 +02:00
ynh_secure_remove --file="/etc/apt/sources.list.d/jessie-backports.list"
ynh_secure_remove --file="/etc/apt/sources.list.d/yarn.list"
2019-04-03 02:43:43 +02:00
2019-06-03 22:37:54 +02:00
# Define app's data directory
datadir="/home/yunohost.app/${app}/storage"
# Create app folders
mkdir -p "$datadir"
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2019-06-03 22:37:54 +02:00
ynh_print_info --message="Backing up the app before upgrading (may take a while)..."
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
# restore it if the upgrade fails
2019-04-03 03:21:30 +02:00
ynh_clean_check_starting
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2019-04-03 02:30:56 +02:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
2019-06-03 22:37:54 +02:00
# STOP SYSTEMD SERVICE
#=================================================
2019-06-03 22:37:54 +02:00
ynh_print_info --message="Stopping a systemd service..."
2019-06-03 22:37:54 +02:00
ynh_systemd_action --service_name=$app --action="stop"
2019-04-03 04:44:26 +02:00
2019-04-03 06:24:02 +02:00
#=================================================
2019-06-03 22:37:54 +02:00
# DOWNLOAD, CHECK AND UNPACK SOURCE
2019-04-03 06:24:02 +02:00
#=================================================
2019-06-03 22:37:54 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_print_info --message="Upgrading source files..."
# Create a temporary directory
tmpdir="$(mktemp -d)"
# Backup the config file in the temp dir
cp -a "$final_path/config/local-production.json" "$tmpdir/local-production.json"
cp -a "$final_path/config/production.yaml" "$tmpdir/production.yaml"
# Remove the app directory securely
ynh_secure_remove --file="$final_path"
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
#Copy the admin saved settings from tmp directory to final path
cp -a "$tmpdir/local-production.json" "$final_path/config/local-production.json"
cp -a "$tmpdir/production.yaml" "$final_path/config/production.yaml"
# Remove the tmp directory securely
ynh_secure_remove --file="$tmpdir"
fi
#=================================================
# NGINX CONFIGURATION
#=================================================
2019-06-03 22:37:54 +02:00
ynh_print_info --message="Upgrading nginx web server configuration..."
# Create a dedicated nginx config
ynh_add_nginx_config
2019-04-03 02:30:56 +02:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2019-06-03 22:37:54 +02:00
ynh_print_info --message="Upgrading dependencies..."
2019-04-03 02:30:56 +02:00
2019-04-03 02:43:43 +02:00
# Install nodejs
2019-06-03 22:37:54 +02:00
ynh_install_nodejs --nodejs_version=8
2019-04-03 02:30:56 +02:00
2019-04-03 02:43:43 +02:00
# Install dependencies
ynh_install_app_dependencies $pkg_dependencies
# Install ffmpeg from backports for Debian Jessie and from main for others
2019-04-03 02:30:56 +02:00
if [ "$(lsb_release --codename --short)" == "jessie" ]; then
2019-04-03 02:43:43 +02:00
ynh_install_extra_app_dependencies --repo="deb http://httpredir.debian.org/debian jessie-backports main" --package="ffmpeg"
else
ynh_add_app_dependencies --package="ffmpeg"
2019-04-03 02:30:56 +02:00
fi
2019-04-03 02:43:43 +02:00
# Install Yarn
ynh_install_extra_app_dependencies --repo="deb https://dl.yarnpkg.com/debian/ stable main" --package="yarn" --key="https://dl.yarnpkg.com/debian/pubkey.gpg"
2019-04-03 02:30:56 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2019-06-03 22:37:54 +02:00
ynh_print_info --message="Making sure dedicated system user exists..."
2019-04-03 02:30:56 +02:00
# Create a system user
ynh_system_user_create "$app"
#=================================================
# SPECIFIC UPGRADE
#=================================================
2019-06-03 22:37:54 +02:00
# MODIFY A CONFIG FILE
#=================================================
2019-06-03 22:37:54 +02:00
ynh_backup_if_checksum_is_different --file="$final_path/config/local-production.json"
ynh_backup_if_checksum_is_different --file="$final_path/config/production.yaml"
cp ../conf/production.yaml "$final_path/config/production.yaml"
ynh_replace_string --match_string="__domain__" --replace_string="$domain" --target_file="$final_path/config/production.yaml"
ynh_replace_string --match_string="__db_name__" --replace_string="$app" --target_file="$final_path/config/production.yaml"
ynh_replace_string --match_string="__app__" --replace_string="$app" --target_file="$final_path/config/production.yaml"
ynh_replace_string --match_string="__db_pwd__" --replace_string="$db_pwd" --target_file="$final_path/config/production.yaml"
ynh_replace_string --match_string="__email__" --replace_string="$admin_email" --target_file="$final_path/config/production.yaml"
ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_file="$final_path/config/production.yaml"
2019-04-03 04:44:26 +02:00
# Recalculate and store the checksum of the file for the next upgrade.
2019-06-01 17:38:59 +02:00
ynh_store_file_checksum "$final_path/config/local-production.json"
ynh_store_file_checksum "$final_path/config/production.yaml"
#=================================================
# FIX NGINX DOMAIN CONFIGURATION
#=================================================
ynh_replace_string --match_string="X-Frame-Options : SAMEORIGIN" --replace_string="X-Frame-Options : ALLOWALL" --target_file="/etc/nginx/conf.d/$domain.conf"
2019-06-03 22:37:54 +02:00
#=================================================
# BUILD YARN DEPENDENCIES
#=================================================
pushd "$final_path"
yarn install --production --pure-lockfile
popd
#=================================================
# SETUP LOGROTATE
#=================================================
2019-06-03 22:37:54 +02:00
ynh_print_info --message="Upgrading logrotate configuration..."
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
#=================================================
# SETUP SYSTEMD
#=================================================
2019-06-03 22:37:54 +02:00
ynh_print_info --message="Upgrading systemd configuration..."
2019-04-03 01:30:38 +02:00
2019-06-03 22:37:54 +02:00
ynh_replace_string --match_string="__ENV_PATH__" --replace_string="$PATH" --target_file="../conf/systemd.service"
# Create a dedicated systemd config
ynh_add_systemd_config
2019-04-03 02:30:56 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
2019-04-03 04:44:26 +02:00
# Set permissions on app files
chown -R "$app":"$app" "$final_path"
chown -R "$app":"$app" "$datadir"
#=================================================
# SETUP SSOWAT
#=================================================
2019-06-03 22:37:54 +02:00
ynh_print_info --message="Upgrading SSOwat configuration..."
# Make app public if necessary
2019-06-03 22:37:54 +02:00
if [ $is_public -eq 1 ]
then
# unprotected_uris allows SSO credentials to be passed anyway
2019-06-03 22:37:54 +02:00
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
fi
#=================================================
2019-06-03 22:37:54 +02:00
# START SYSTEMD SERVICE
#=================================================
2019-06-03 22:37:54 +02:00
ynh_print_info --message="Start $app service..."
2019-06-03 22:37:54 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Server listening on localhost"
2019-04-03 02:30:56 +02:00
#=================================================
2019-06-03 22:37:54 +02:00
# RELOAD NGINX
2019-04-03 02:30:56 +02:00
#=================================================
2019-06-03 22:37:54 +02:00
ynh_print_info --message="Reloading nginx web server..."
2019-04-03 02:30:56 +02:00
2019-06-03 22:37:54 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-04-03 01:30:38 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2019-06-03 22:37:54 +02:00
ynh_print_info --message="Upgrade of $app completed"