2014-09-23 12:04:43 +02:00
|
|
|
#!/bin/bash
|
2016-07-04 21:16:34 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC STARTING
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-07-04 21:16:34 +02:00
|
|
|
|
2020-04-15 20:29:35 +02:00
|
|
|
source _common.sh
|
2020-04-16 02:18:06 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
source _ynh_secure_remove.sh
|
2014-09-23 12:04:43 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-05-18 20:15:36 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2016-07-04 21:16:34 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2014-07-22 12:04:58 +02:00
|
|
|
|
2019-05-18 20:15:36 +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)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
2015-03-03 13:20:04 +01:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
2019-03-03 20:32:26 +01:00
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
2019-05-18 20:15:36 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..."
|
2014-07-21 23:53:27 +02:00
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
# Fix is_public as a boolean value
|
2019-05-18 20:15:36 +02:00
|
|
|
if [ "$is_public" = "Yes" ]; then
|
|
|
|
ynh_app_setting_set --app=$app --key=is_public --value=1
|
2017-05-01 15:47:20 +02:00
|
|
|
is_public=1
|
2019-05-18 20:15:36 +02:00
|
|
|
elif [ "$is_public" = "No" ]; then
|
|
|
|
ynh_app_setting_set --app=$app --key=is_public --value=0
|
2017-05-01 15:47:20 +02:00
|
|
|
is_public=0
|
|
|
|
fi
|
2014-05-29 14:20:44 +02:00
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
# If final_path doesn't exist, create it
|
2019-05-18 20:15:36 +02:00
|
|
|
if [ -z "$final_path" ]; then
|
|
|
|
final_path=/var/www/$app
|
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2014-07-21 23:53:27 +02:00
|
|
|
fi
|
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2019-08-05 12:04:07 +02:00
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=2
|
2017-05-01 15:47:20 +02:00
|
|
|
|
2019-03-03 20:32:26 +01:00
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
2017-05-01 15:47:20 +02:00
|
|
|
ynh_clean_setup () {
|
2019-03-03 20:32:26 +01:00
|
|
|
# restore it if the upgrade fails
|
|
|
|
ynh_restore_upgradebackup
|
2017-05-01 15:47:20 +02:00
|
|
|
}
|
2019-03-03 20:32:26 +01:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK THE PATH
|
|
|
|
#=================================================
|
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
# Normalize the URL path syntax
|
2019-05-18 20:15:36 +02:00
|
|
|
path_url=$(ynh_normalize_url_path --path_url=$path_url)
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
2018-05-28 00:30:42 +02:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
2019-05-18 20:15:36 +02:00
|
|
|
ynh_script_progression --message="Upgrading dependencies..." --weight=7
|
2018-05-28 00:30:42 +02:00
|
|
|
|
2019-04-13 00:38:47 +02:00
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2018-05-28 00:30:42 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-18 20:15:36 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2019-05-21 12:39:42 +02:00
|
|
|
# Verify the checksum and backup the file if it's different
|
|
|
|
ynh_backup_if_checksum_is_different --file="$final_path/searx/settings.yml"
|
2019-05-18 20:15:36 +02:00
|
|
|
|
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=3
|
2017-11-30 19:39:06 +01:00
|
|
|
|
2019-05-18 20:15:36 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
|
|
|
fi
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-09-19 16:09:37 +02:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..."
|
2017-05-01 15:47:20 +02:00
|
|
|
|
2019-03-03 20:32:26 +01:00
|
|
|
path_no_root=${path_url%/}
|
2020-09-19 16:09:37 +02:00
|
|
|
# Create a dedicated NGINX config
|
2019-03-03 20:32:26 +01:00
|
|
|
ynh_add_nginx_config "path_no_root"
|
2014-07-21 23:53:27 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2019-05-18 20:15:36 +02:00
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..."
|
2014-07-21 23:53:27 +02:00
|
|
|
|
2019-03-03 20:32:26 +01:00
|
|
|
# Create a dedicated user (if not existing)
|
2019-05-18 20:15:36 +02:00
|
|
|
ynh_system_user_create --username=$app
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
|
|
|
#=================================================
|
|
|
|
# UPGRADE SEARX IN ITS VIRTUALENV
|
|
|
|
#=================================================
|
2019-05-18 20:15:36 +02:00
|
|
|
ynh_script_progression --message="Upgrading Searx..." --weight=7
|
2017-05-01 15:47:20 +02:00
|
|
|
|
2020-04-10 21:31:50 +02:00
|
|
|
# Clean venv if it still on python2
|
2020-09-19 16:33:03 +02:00
|
|
|
if [ ! -e $final_path/bin/python3.7 ]
|
2020-04-16 02:18:06 +02:00
|
|
|
then
|
|
|
|
ynh_secure_remove --file=$final_path/lib/ --regex='python[^/.]*'
|
|
|
|
ynh_secure_remove --file=$final_path/lib64/ --regex='python[^/.]*'
|
2020-04-11 14:19:29 +02:00
|
|
|
ynh_secure_remove --file=$final_path/share/python-wheels
|
2020-04-16 02:18:06 +02:00
|
|
|
fi
|
2020-09-19 16:33:03 +02:00
|
|
|
ynh_secure_remove --file=$final_path/lib/python3.7/site-packages/setuptools
|
|
|
|
ynh_secure_remove --file=$final_path/lib/python3.7/site-packages/ --regex='setuptools-[^/.]*'
|
2020-04-10 22:02:55 +02:00
|
|
|
python3 -m venv --system-site-packages "$final_path"
|
2018-06-29 19:21:14 +02:00
|
|
|
set +u; source $final_path/bin/activate; set -u
|
2020-04-11 14:19:29 +02:00
|
|
|
pip3 install -U setuptools
|
2020-04-10 21:31:50 +02:00
|
|
|
pip3 install --requirement $final_path/requirements-ynh.txt --upgrade
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CONFIGURE SEARX
|
|
|
|
#=================================================
|
2019-05-18 20:15:36 +02:00
|
|
|
ynh_script_progression --message="Reconfiguring Searx..." --weight=2
|
2017-05-01 15:47:20 +02:00
|
|
|
|
2017-11-30 19:39:06 +01:00
|
|
|
# Change instance name
|
2019-05-18 20:15:36 +02:00
|
|
|
ynh_replace_string --match_string="instance_name : \"searx\"" --replace_string="instance_name : \"YunoSearx\"" --target_file="$final_path/searx/settings.yml"
|
2014-07-21 23:53:27 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
# Generate a secret key
|
2019-05-18 20:15:36 +02:00
|
|
|
ynh_replace_string --match_string="secret_key : \"ultrasecretkey\"" --replace_string="secret_key : \"$(ynh_string_random)\"" --target_file="$final_path/searx/settings.yml"
|
2017-05-01 15:47:20 +02:00
|
|
|
|
2019-05-18 20:15:36 +02:00
|
|
|
# Modify the base_url parameter
|
|
|
|
ynh_replace_string --match_string="base_url : False" --replace_string="base_url : https://${domain}${path_url%/}/" --target_file="$final_path/searx/settings.yml"
|
|
|
|
|
|
|
|
ynh_store_file_checksum --file="$final_path/searx/settings.yml"
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALISATION
|
|
|
|
#=================================================
|
|
|
|
# SECURING FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
|
|
|
|
2020-09-19 16:09:37 +02:00
|
|
|
chown -R $app: "$final_path"
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CONFIGURE UWSGI FOR SEARX
|
|
|
|
#=================================================
|
2019-05-18 20:15:36 +02:00
|
|
|
ynh_script_progression --message="Reconfiguring uWSGI for Searx..."
|
2017-05-01 15:47:20 +02:00
|
|
|
|
2020-04-10 22:02:55 +02:00
|
|
|
# Clean old files
|
|
|
|
ynh_secure_remove --file="/etc/uwsgi/apps-enabled/$app.ini"
|
|
|
|
ynh_secure_remove --file="/etc/uwsgi/apps-available/$app.ini"
|
|
|
|
ynh_add_uwsgi_service
|
2018-05-11 22:59:18 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK SEARX STARTING
|
|
|
|
#=================================================
|
2019-05-18 20:15:36 +02:00
|
|
|
ynh_script_progression --message="Restarting Searx..." --weight=3
|
2018-05-11 22:59:18 +02:00
|
|
|
|
|
|
|
# Wait for searx to be fully started
|
2020-04-10 22:02:55 +02:00
|
|
|
ynh_systemd_action --service_name=uwsgi-app@$app.service --action=restart --line_match="spawned uWSGI master process" --log_path="/var/log/uwsgi/$app/$app.log"
|
2014-07-21 23:53:27 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2020-09-19 16:09:37 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..."
|
2014-07-23 00:14:40 +02:00
|
|
|
|
2019-05-18 20:15:36 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-03-03 20:33:02 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-18 20:15:36 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|