2018-03-26 05:50:46 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
2022-01-07 04:42:28 +01:00
|
|
|
source ynh_redis
|
2019-04-03 03:27:49 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2018-03-26 05:50:46 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2020-06-01 03:40:44 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2018-03-26 05:50:46 +02:00
|
|
|
|
|
|
|
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)
|
2022-01-07 04:42:28 +01:00
|
|
|
db_user=$(ynh_app_setting_get --app=$app --key=db_user)
|
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")
|
2021-12-24 09:22:23 +01:00
|
|
|
redis_db=$(ynh_app_setting_get --app=$app --key=redis_db)
|
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)
|
2018-03-26 05:50:46 +02:00
|
|
|
|
2021-06-29 22:13:41 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
|
|
|
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 () {
|
|
|
|
ynh_clean_check_starting
|
|
|
|
# Restore it if the upgrade fails
|
|
|
|
ynh_restore_upgradebackup
|
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Stopping a systemd service..."
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
|
|
|
|
|
2018-03-26 05:50:46 +02:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2020-06-01 03:40:44 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..."
|
2018-03-26 05:50:46 +02:00
|
|
|
|
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
|
|
|
|
|
2022-01-07 04:42:28 +01:00
|
|
|
# If db_user doesn't exist, create it
|
|
|
|
if [ -z "$db_user" ]; then
|
|
|
|
db_user=$app
|
|
|
|
ynh_app_setting_set --app=$app --key=db_user --value=$db_user
|
|
|
|
fi
|
|
|
|
|
2021-02-26 03:34:51 +01:00
|
|
|
# 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
|
2018-03-26 05:50:46 +02:00
|
|
|
fi
|
|
|
|
|
2021-12-24 09:22:23 +01:00
|
|
|
# If redis_db doesn't exist, create it
|
|
|
|
if [ -z "$redis_db" ]; then
|
|
|
|
redis_db=$(ynh_redis_get_free_db)
|
|
|
|
ynh_app_setting_set --app="$app" --key=redis_db --value="$redis_db"
|
|
|
|
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
|
2021-12-26 23:11:48 +01:00
|
|
|
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-06-03 22:37:54 +02:00
|
|
|
|
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/yarn.list"
|
2019-04-03 02:43:43 +02:00
|
|
|
|
2021-05-14 00:14:17 +02:00
|
|
|
# Remove not needed checksum
|
|
|
|
ynh_delete_file_checksum --file="../conf/msg_install"
|
|
|
|
|
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
|
|
|
|
|
2021-03-01 02:27:44 +01:00
|
|
|
# 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
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..."
|
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
2021-06-29 22:13:41 +02:00
|
|
|
ynh_system_user_create --username=$app --home_dir=$final_path
|
2021-04-10 19:38:56 +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
|
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
|
2021-04-14 20:55:31 +02:00
|
|
|
cp -af "$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
|
2021-04-14 20:55:31 +02:00
|
|
|
cp -af "$final_path/config/local-production.json" "$tmpdir/local-production.json"
|
2020-02-13 20:02:14 +01:00
|
|
|
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
|
|
|
|
2021-12-26 23:11:48 +01:00
|
|
|
#Copy the admin saved settings from tmp directory to final path
|
|
|
|
cp -af "$tmpdir/production.yaml" "$final_path/config/production.yaml"
|
2019-10-16 01:33:56 +02:00
|
|
|
|
|
|
|
if [ -s "$tmpdir/local-production.json" ]
|
|
|
|
then
|
2021-04-14 20:55:31 +02:00
|
|
|
cp -af "$tmpdir/local-production.json" "$final_path/config/local-production.json"
|
2019-10-16 01:33:56 +02:00
|
|
|
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
|
2018-05-21 12:10:41 +02:00
|
|
|
|
2021-04-17 18:31:58 +02:00
|
|
|
chmod 750 "$final_path"
|
2021-04-10 19:38:56 +02:00
|
|
|
chmod -R o-rwx "$final_path"
|
2021-06-18 01:12:10 +02:00
|
|
|
chown -R $app:www-data "$final_path"
|
2021-04-10 19:38:56 +02:00
|
|
|
|
2018-03-26 05:50:46 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-09-11 14:20:57 +02:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..."
|
2018-03-26 05:50:46 +02:00
|
|
|
|
2021-04-09 23:37:52 +02:00
|
|
|
# Create a dedicated NGINX config
|
2021-06-29 22:13:41 +02:00
|
|
|
ynh_add_nginx_config
|
2018-03-26 05:50:46 +02:00
|
|
|
|
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
|
2021-04-11 20:43:53 +02:00
|
|
|
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
|
2019-04-03 02:30:56 +02:00
|
|
|
|
2019-04-03 02:43:43 +02:00
|
|
|
# Install dependencies
|
2021-12-07 19:19:38 +01:00
|
|
|
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
|
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
|
2018-03-26 05:50:46 +02:00
|
|
|
#=================================================
|
2021-06-29 22:13:41 +02:00
|
|
|
# CREATE DATA DIRECTORY
|
2018-03-26 05:50:46 +02:00
|
|
|
#=================================================
|
2021-06-29 22:13:41 +02:00
|
|
|
ynh_script_progression --message="Creating a data directory..."
|
2018-03-26 05:50:46 +02:00
|
|
|
|
2021-06-29 22:13:41 +02:00
|
|
|
mkdir -p $datadir
|
2018-03-26 05:50:46 +02:00
|
|
|
|
2021-06-29 22:13:41 +02:00
|
|
|
chmod 750 "$datadir/.."
|
|
|
|
chmod -R o-rwx "$datadir/.."
|
|
|
|
chown -R $app:www-data "$datadir/.."
|
2018-03-26 05:50:46 +02:00
|
|
|
|
2019-06-06 23:16:31 +02:00
|
|
|
#=================================================
|
2021-04-10 19:38:56 +02:00
|
|
|
# UPDATE A CONFIG FILE
|
2019-06-06 23:16:31 +02:00
|
|
|
#=================================================
|
2021-04-10 19:38:56 +02:00
|
|
|
ynh_script_progression --message="Updating a config file..."
|
2019-06-06 23:16:31 +02:00
|
|
|
|
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"
|
|
|
|
|
2021-04-25 12:26:33 +02:00
|
|
|
chmod 600 "$final_path/config/local-production.json"
|
2021-04-10 19:38:56 +02:00
|
|
|
chown $app:$app "$final_path/config/local-production.json"
|
2019-06-06 23:16:31 +02:00
|
|
|
|
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
|
|
|
|
|
|
|
pushd "$final_path"
|
2019-06-23 16:13:13 +02:00
|
|
|
ynh_use_nodejs
|
2021-12-26 23:11:48 +01: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"
|
2021-06-29 22:13:41 +02:00
|
|
|
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH NODE_CONFIG_DIR="$final_path/config" NODE_ENV=production $ynh_npm run plugin:install -- --npm-name peertube-plugin-auth-ldap
|
2021-03-30 22:58:26 +02:00
|
|
|
popd
|
|
|
|
|
2022-01-07 04:42:28 +01:00
|
|
|
#=================================================
|
|
|
|
# PEERTUBE 4.0.0 UPGRADE MIGRATION SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if ynh_compare_current_package_version --comparison lt --version 4.0.0~ynh1; then
|
|
|
|
ynh_script_progression --message="Running Peertube 4.0.0 migration script..."
|
|
|
|
pushd "$final_path"
|
2022-01-10 20:44:44 +01:00
|
|
|
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH NODE_CONFIG_DIR="$final_path/config" NODE_ENV=production $ynh_node dist/scripts/migrations/peertube-4.0.js
|
2022-01-07 04:42:28 +01:00
|
|
|
popd
|
|
|
|
fi
|
|
|
|
|
2018-03-26 05:50:46 +02:00
|
|
|
#=================================================
|
|
|
|
# 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
|
|
|
|
2018-03-26 05:50:46 +02:00
|
|
|
# Create a dedicated systemd config
|
2021-05-13 22:41:53 +02:00
|
|
|
ynh_add_systemd_config
|
2018-03-26 05:50:46 +02:00
|
|
|
|
2019-04-03 02:30:56 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
2021-01-02 20:17:30 +01:00
|
|
|
#=================================================
|
|
|
|
# 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
|
2021-01-02 20:17:30 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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"
|
2021-01-02 20:17:30 +01:00
|
|
|
|
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"
|