2018-03-26 05:50:46 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
2019-04-03 03:27:49 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2018-03-26 05:50:46 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2023-03-21 23:12:02 +01:00
|
|
|
|
2022-06-10 01:21:56 +02:00
|
|
|
admin_mail=$(ynh_user_get_info --username=$admin --key="mail")
|
2019-06-03 22:37:54 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
2018-03-26 05:50:46 +02:00
|
|
|
|
2021-06-29 22:13:41 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Stopping a systemd service..."
|
|
|
|
|
2023-08-04 02:53:38 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd" --line_match="Stopped"
|
2021-06-29 22:13:41 +02:00
|
|
|
|
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
|
2022-06-10 01:21:56 +02:00
|
|
|
ynh_app_setting_delete --app=$app --key=admin_mail
|
2021-02-26 04:16:57 +01:00
|
|
|
|
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
|
|
|
|
|
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"
|
|
|
|
|
2022-01-30 21:34:03 +01:00
|
|
|
# Remove hook
|
|
|
|
ynh_secure_remove --file="/usr/share/yunohost/hooks/conf_regen/15-nginx_$app"
|
|
|
|
yunohost tools regen-conf nginx
|
|
|
|
|
2022-02-08 01:41:44 +01:00
|
|
|
# Remove old log file
|
2023-03-21 23:33:23 +01:00
|
|
|
ynh_secure_remove --file="$data_dir/logs"
|
2022-02-08 01:41:44 +01:00
|
|
|
mkdir -p "/var/log/$app"
|
|
|
|
chown -R $app:$app "/var/log/$app"
|
|
|
|
|
2023-08-04 02:20:17 +02:00
|
|
|
# Remove Prosody
|
|
|
|
ynh_remove_apps
|
|
|
|
|
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
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-03-21 23:12:02 +01:00
|
|
|
ynh_setup_source --full_replace=1 --dest_dir="$install_dir" \
|
2022-11-18 13:54:59 +01:00
|
|
|
--keep="config/production.yaml config/local-production.json config/local.yaml"
|
2019-06-03 22:37:54 +02:00
|
|
|
fi
|
2018-05-21 12:10:41 +02:00
|
|
|
|
2023-03-21 23:12:02 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-04-10 19:38:56 +02:00
|
|
|
|
2019-04-03 02:30:56 +02:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
2023-03-21 23:33:23 +01:00
|
|
|
ynh_script_progression --message="Upgrading dependencies..."
|
2019-04-03 02:30:56 +02:00
|
|
|
|
2022-07-31 19:15:34 +02:00
|
|
|
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
|
2019-04-03 02:30:56 +02:00
|
|
|
|
2022-06-10 01:21:56 +02:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
2022-02-06 02:01:51 +01:00
|
|
|
|
2023-09-13 18:43:40 +02:00
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
|
|
|
mkdir -p "/var/log/$app"
|
|
|
|
chown -R $app:$app "/var/log/$app"
|
|
|
|
|
|
|
|
# Use logrotate to manage app-specific logfile(s)
|
|
|
|
ynh_use_logrotate --non-append
|
|
|
|
|
|
|
|
yunohost service add $app --description="$app daemon for Peertube" --log="/var/log/$app/$app.log" --needs_exposed_ports $port_rtmp
|
|
|
|
|
2022-12-15 11:11:11 +01:00
|
|
|
#=================================================
|
|
|
|
# Generate secrets if they don't exist
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ -z "$secrets_peertube" ]; then
|
2022-12-21 22:00:36 +01:00
|
|
|
ynh_print_info --message="Generating and storing PeerTube secrets..."
|
2022-12-19 17:54:52 +01:00
|
|
|
secrets_peertube=$(ynh_string_random --length=24)
|
2022-12-15 11:11:11 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=secrets_peertube --value=$secrets_peertube
|
|
|
|
fi
|
|
|
|
|
2022-07-31 19:15:34 +02:00
|
|
|
#=================================================
|
|
|
|
# BUILD YARN DEPENDENCIES
|
|
|
|
#=================================================
|
2023-03-21 23:33:23 +01:00
|
|
|
ynh_script_progression --message="Building Yarn dependencies..."
|
2022-07-31 19:15:34 +02:00
|
|
|
|
2023-03-21 23:12:02 +01:00
|
|
|
pushd "$install_dir"
|
2022-07-31 19:15:34 +02:00
|
|
|
ynh_use_nodejs
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn install --production --pure-lockfile
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn cache clean
|
|
|
|
popd
|
|
|
|
|
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
|
|
|
|
2023-03-21 23:12:02 +01:00
|
|
|
ynh_add_config --template="../conf/production.yaml" --destination="$install_dir/config/production.yaml"
|
2020-06-01 03:40:44 +02:00
|
|
|
|
2023-03-21 23:12:02 +01:00
|
|
|
chmod 400 "$install_dir/config/production.yaml"
|
|
|
|
chown $app:$app "$install_dir/config/production.yaml"
|
2021-04-10 19:38:56 +02:00
|
|
|
|
2023-03-21 23:12:02 +01:00
|
|
|
ynh_backup_if_checksum_is_different --file="$install_dir/config/local-production.json"
|
2022-07-31 19:15:34 +02:00
|
|
|
|
2023-03-21 23:12:02 +01:00
|
|
|
chmod 600 "$install_dir/config/local-production.json"
|
|
|
|
chown $app:$app "$install_dir/config/local-production.json"
|
2019-06-06 23:16:31 +02:00
|
|
|
|
2021-03-30 22:58:26 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALL LDAP PLUGIN
|
|
|
|
#=================================================
|
2023-09-13 18:43:40 +02:00
|
|
|
ynh_script_progression --message="Installing $app plugin..."
|
2021-03-30 22:58:26 +02:00
|
|
|
|
2023-03-21 23:12:02 +01:00
|
|
|
pushd "$install_dir"
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH NODE_CONFIG_DIR="$install_dir/config" NODE_ENV=production $ynh_npm run plugin:install -- --npm-name peertube-plugin-auth-ldap
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH NODE_CONFIG_DIR="$install_dir/config" NODE_ENV=production $ynh_npm run plugin:install -- --npm-name peertube-plugin-livechat
|
2023-09-13 18:43:40 +02:00
|
|
|
|
2021-03-30 22:58:26 +02:00
|
|
|
popd
|
|
|
|
|
2022-01-07 04:42:28 +01:00
|
|
|
#=================================================
|
2022-06-10 01:21:56 +02:00
|
|
|
# PEERTUBE UPGRADE MIGRATION SCRIPT
|
2022-01-07 04:42:28 +01:00
|
|
|
#=================================================
|
|
|
|
|
|
|
|
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..."
|
2023-03-21 23:12:02 +01:00
|
|
|
pushd "$install_dir"
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH NODE_CONFIG_DIR="$install_dir/config" NODE_ENV=production $ynh_node dist/scripts/migrations/peertube-4.0.js
|
2022-01-07 04:42:28 +01:00
|
|
|
popd
|
|
|
|
fi
|
|
|
|
|
2022-06-10 00:45:32 +02:00
|
|
|
if ynh_compare_current_package_version --comparison lt --version 4.2.0~ynh1; then
|
|
|
|
ynh_script_progression --message="Running Peertube 4.2.0 migration script..."
|
2023-03-21 23:12:02 +01:00
|
|
|
pushd "$install_dir"
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH NODE_CONFIG_DIR="$install_dir/config" NODE_ENV=production $ynh_node dist/scripts/migrations/peertube-4.2.js
|
2022-06-10 00:45:32 +02:00
|
|
|
popd
|
|
|
|
fi
|
|
|
|
|
2021-01-02 20:17:30 +01:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..."
|
|
|
|
|
2023-08-04 02:53:38 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Started"
|
2021-01-02 20:17:30 +01:00
|
|
|
|
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"
|