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

303 lines
10 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2019-04-03 03:27:49 +02:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --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)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
port=$(ynh_app_setting_get --app=$app --key=port)
2021-01-13 20:59:06 +01:00
rtmp_port=$(ynh_app_setting_get --app=$app --key=rtmp_port)
2021-02-26 03:34:51 +01:00
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
2021-03-04 08:15:15 +01:00
db_user=$app
2021-02-26 03:34:51 +01:00
db_pwd=$(ynh_app_setting_get --app=$app --key=db_pwd)
2020-09-27 19:00:21 +02:00
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
2021-03-03 14:42:35 +01:00
admin=$(ynh_app_setting_get --app=$app --key=admin)
admin_email=$(ynh_user_get_info --username=$admin --key="mail")
2019-06-03 22:37:54 +02:00
#=================================================
# CHECK VERSION
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Checking version..."
2019-06-03 22:37:54 +02:00
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Ensuring downward compatibility..."
2021-02-26 04:16:57 +01:00
ynh_app_setting_delete --app=$app --key=admin_pass
2021-03-03 14:42:35 +01:00
ynh_app_setting_delete --app=$app --key=admin_email
2021-02-26 04:16:57 +01:00
2021-02-26 03:34:51 +01:00
# If db_name doesn't exist, create it
if [ -z "$db_name" ]; then
db_name="peertube_${app}"
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
fi
# If db_pwd doesn't exist, create it
if [ -z "$db_pwd" ]; then
db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
ynh_app_setting_set --app=$app --key=db_pwd --value=$db_pwd
fi
2020-09-27 19:00:21 +02:00
if [ -z "$datadir" ];
then
2021-02-26 03:34:51 +01:00
datadir="/home/yunohost.app/${app}/storage"
ynh_app_setting_set --app=$app --key=datadir --value=$datadir
2020-09-27 19:00:21 +02:00
fi
2019-04-03 04:44:26 +02:00
# Close a port
if yunohost firewall list | grep -q "\- $port$"
then
2020-06-01 03:40:44 +02:00
ynh_script_progression --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
2021-01-13 20:59:06 +01:00
if [ -z "$rtmp_port" ];
then
2021-02-26 03:34:51 +01:00
rtmp_port=1935
ynh_port_available --port=$rtmp_port || ynh_die "Port $rtmp_port is needs to be available for this app"
ynh_app_setting_set --app=$app --key=rtmp_port --value=$rtmp_port
# Open the port
ynh_script_progression --message="Configuring firewall..."
ynh_exec_warn_less yunohost firewall allow TCP $rtmp_port
fi
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all
ynh_app_setting_delete --app=$app --key=is_public
2021-01-13 20:59:06 +01:00
fi
# Create a permission if needed
if ! ynh_permission_exists --permission="api"; then
ynh_permission_create --permission="api" --url="/api" --allowed="visitors" --auth_header="false" --show_tile="false" --protected="true"
fi
#=================================================
2021-04-10 19:38:56 +02:00
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --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 () {
2021-04-09 23:37:52 +02:00
# 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
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Stopping a systemd service..."
2020-02-23 19:42:08 +01:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
2019-04-03 04:44:26 +02:00
2021-04-10 19:38:56 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Making sure dedicated system user exists..."
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir="$final_path"
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
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Upgrading source files..."
2021-02-26 03:34:51 +01:00
2019-06-03 22:37:54 +02:00
# Create a temporary directory
tmpdir="$(mktemp -d)"
2021-02-26 03:34:51 +01:00
2019-06-03 22:37:54 +02:00
# Backup the config file in the temp dir
cp -a "$final_path/config/production.yaml" "$tmpdir/production.yaml"
2020-02-13 20:02:14 +01:00
if [ -s "$final_path/config/local-production.json" ]
then
cp -a "$final_path/config/local-production.json" "$tmpdir/local-production.json"
fi
2021-02-26 03:34:51 +01:00
2019-06-03 22:37:54 +02:00
# Remove the app directory securely
ynh_secure_remove --file="$final_path"
2021-02-26 03:34:51 +01:00
2019-06-03 22:37:54 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
2021-02-26 03:34:51 +01:00
2019-10-16 01:33:56 +02:00
#Copy the admin saved settings from tmp directory to final path
cp -a "$tmpdir/production.yaml" "$final_path/config/production.yaml"
if [ -s "$tmpdir/local-production.json" ]
then
cp -a "$tmpdir/local-production.json" "$final_path/config/local-production.json"
else
cp ../conf/local-production.json "$final_path/config/local-production.json"
fi
2021-02-26 03:34:51 +01:00
2019-06-03 22:37:54 +02:00
# Remove the tmp directory securely
ynh_secure_remove --file="$tmpdir"
fi
2021-04-10 19:38:56 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R root:$app "$final_path"
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-09-11 14:20:57 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..."
2021-04-09 23:37:52 +02:00
# Create a dedicated NGINX config
2020-09-27 19:00:21 +02:00
ynh_add_nginx_config "datadir"
2019-04-03 02:30:56 +02:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Upgrading dependencies..."
2019-04-03 02:30:56 +02:00
2019-04-03 02:43:43 +02:00
# Install nodejs
2020-06-01 03:40:44 +02:00
ynh_install_nodejs --nodejs_version=$YNH_NODEJS_VERSION
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
2020-06-01 03:40:44 +02:00
# Remove hook
ynh_secure_remove --file="/usr/share/yunohost/hooks/conf_regen/15-nginx_$app"
yunohost tools regen-conf nginx
2019-04-03 02:30:56 +02:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
2020-06-01 03:40:44 +02:00
# CREATE THE DATA DIRECTORY
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Creating the data directory..."
2021-04-10 19:38:56 +02:00
# Create app folders
mkdir -p "$datadir"
2021-04-10 19:38:56 +02:00
chmod 750 "$datadir"
chmod -R o-rwx "$datadir"
chown -R root:$app "$datadir"
#=================================================
2021-04-10 19:38:56 +02:00
# UPDATE A CONFIG FILE
#=================================================
2021-04-10 19:38:56 +02:00
ynh_script_progression --message="Updating a config file..."
2021-02-26 03:48:49 +01:00
ynh_add_config --template="../conf/production.yaml" --destination="$final_path/config/production.yaml"
2020-06-01 03:40:44 +02:00
2021-04-10 19:38:56 +02:00
chmod 400 "$final_path/config/production.yaml"
chown $app:$app "$final_path/config/production.yaml"
ynh_add_config --template="../conf/local-production.json" --destination="$final_path/config/local-production.json"
chmod 400 "$final_path/config/local-production.json"
chown $app:$app "$final_path/config/local-production.json"
2019-06-03 22:37:54 +02:00
#=================================================
# BUILD YARN DEPENDENCIES
#=================================================
2020-09-11 14:20:57 +02:00
ynh_script_progression --message="Building Yarn dependencies..."
2019-06-03 22:37:54 +02:00
chown -R "$app":"$app" $final_path
2019-06-03 22:37:54 +02:00
pushd "$final_path"
2019-06-23 16:13:13 +02:00
ynh_use_nodejs
2021-03-31 02:56:34 +02:00
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH yarn install --production --pure-lockfile
2019-06-03 22:37:54 +02:00
popd
2021-03-30 22:58:26 +02:00
#=================================================
# INSTALL LDAP PLUGIN
#=================================================
ynh_script_progression --message="Installing LDAP plugin..."
pushd "$final_path"
NODE_CONFIG_DIR="$final_path/config" NODE_ENV=production npm run plugin:install -- --npm-name peertube-plugin-auth-ldap
popd
#=================================================
# SETUP SYSTEMD
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Upgrading systemd configuration..."
2019-04-03 01:30:38 +02:00
# Create a dedicated systemd config
2020-06-01 03:40:44 +02:00
ynh_add_systemd_config --others_var="ynh_node_load_PATH"
2019-04-03 02:30:56 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
ynh_script_progression --message="Upgrading logrotate configuration..."
# 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..."
2021-04-09 23:37:52 +02:00
yunohost service add $app --description="$app daemon for Peertube" --log="$datadir/logs/peertube.log" --needs_exposed_ports $rtmp_port
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..."
2021-03-30 22:58:26 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="HTTP 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
#=================================================
2020-09-11 14:20:57 +02:00
ynh_script_progression --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
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Upgrade of $app completed"