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
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
# source _common.sh
|
2017-05-01 15:47:20 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2014-09-23 12:04:43 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD 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
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
path_url=$(ynh_app_setting_get $app path)
|
|
|
|
is_public=$(ynh_app_setting_get $app is_public)
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
2015-03-03 13:20:04 +01:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# FIX OLD THINGS
|
|
|
|
#=================================================
|
2014-07-21 23:53:27 +02:00
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
# Fix is_public as a boolean value
|
2017-12-19 18:16:52 +01:00
|
|
|
if [ "${is_public,,}" = "yes" ]; then
|
2017-08-28 03:03:36 +02:00
|
|
|
ynh_app_setting_set $app is_public 1
|
2017-05-01 15:47:20 +02:00
|
|
|
is_public=1
|
2017-12-19 18:16:52 +01:00
|
|
|
elif [ "${is_public,,}" = "no" ]; then
|
2017-05-01 15:47:20 +02:00
|
|
|
ynh_app_setting_set $app is_public 0
|
|
|
|
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
|
|
|
|
if [ -z $final_path ]; then
|
2017-05-01 15:47:20 +02:00
|
|
|
final_path="/opt/yunohost/$app"
|
|
|
|
ynh_app_setting_set $app final_path $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
|
|
|
|
#=================================================
|
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
ynh_backup_before_upgrade # Backup the current version of the app
|
2017-05-01 15:47:20 +02:00
|
|
|
ynh_clean_setup () {
|
2017-08-28 03:03:36 +02:00
|
|
|
ynh_restore_upgradebackup # restore it if the upgrade fails
|
2017-05-01 15:47:20 +02:00
|
|
|
}
|
2017-08-28 03:03:36 +02:00
|
|
|
ynh_abort_if_errors # Exit if an error occurs during the execution of the script
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK THE PATH
|
|
|
|
#=================================================
|
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
# Normalize the URL path syntax
|
|
|
|
path_url=$(ynh_normalize_url_path $path_url)
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
2017-11-30 19:39:06 +01:00
|
|
|
# Verify the checksum and backup the file if it's different
|
|
|
|
ynh_backup_if_checksum_is_different "$final_path/searx/settings.yml"
|
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source "$final_path"
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
ynh_add_nginx_config
|
2017-05-01 15:47:20 +02:00
|
|
|
if [ "$path_url" = "/" ]
|
2014-07-21 23:53:27 +02:00
|
|
|
then
|
2017-05-01 15:47:20 +02:00
|
|
|
ynh_replace_string "__PATH_NO_ROOT__" "" /etc/nginx/conf.d/$domain.d/$app.conf
|
2017-08-28 03:03:36 +02:00
|
|
|
sed --in-place '/#noroot*/d' /etc/nginx/conf.d/$domain.d/$app.conf
|
2014-07-21 23:53:27 +02:00
|
|
|
else
|
2017-05-01 15:47:20 +02:00
|
|
|
ynh_replace_string "#noroot" "" /etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
ynh_replace_string "__PATH_NO_ROOT__" "$path_url" /etc/nginx/conf.d/$domain.d/$app.conf
|
2014-07-21 23:53:27 +02:00
|
|
|
fi
|
2017-06-13 15:47:47 +02:00
|
|
|
ynh_store_file_checksum "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2014-07-21 23:53:27 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2014-07-21 23:53:27 +02:00
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create $app
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
|
|
|
#=================================================
|
|
|
|
# UPGRADE SEARX IN ITS VIRTUALENV
|
|
|
|
#=================================================
|
|
|
|
|
2017-11-23 22:57:52 +01:00
|
|
|
rm -r $final_path/lib/python2.7/site-packages/{pip,setuptools} $final_path/lib/python2.7/site-packages/setuptools-* $final_path/lib/python2.7/site-packages/pip-*
|
2017-08-28 03:03:36 +02:00
|
|
|
virtualenv --system-site-packages "$final_path"
|
2017-11-23 22:57:52 +01:00
|
|
|
bash -c "source $final_path/bin/activate && pip install -U pip setuptools && pip install --requirement $final_path/requirements-ynh.txt --upgrade"
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CONFIGURE SEARX
|
|
|
|
#=================================================
|
|
|
|
|
2017-11-30 19:39:06 +01:00
|
|
|
# Change instance name
|
|
|
|
ynh_replace_string "instance_name : \"searx\"" "instance_name : \"YunoSearx\"" "$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
|
2017-11-30 19:39:06 +01:00
|
|
|
ynh_replace_string "secret_key : \"ultrasecretkey\"" "secret_key : \"$(ynh_string_random)\"" "$final_path/searx/settings.yml"
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
# Modify the base_url parameter, if it's installed in a subpath
|
|
|
|
if [ "$path_url" != "/" ]
|
2014-07-21 23:53:27 +02:00
|
|
|
then
|
2017-11-30 19:39:06 +01:00
|
|
|
ynh_replace_string "base_url : False" "base_url : https://${domain}${path_url}/" "$final_path/searx/settings.yml"
|
2014-07-21 23:53:27 +02:00
|
|
|
else
|
2017-11-30 19:39:06 +01:00
|
|
|
ynh_replace_string "base_url : False" "base_url : False" "$final_path/searx/settings.yml"
|
2014-07-21 23:53:27 +02:00
|
|
|
fi
|
2017-06-13 15:47:47 +02:00
|
|
|
ynh_store_file_checksum "$final_path/searx/settings.yml"
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALISATION
|
|
|
|
#=================================================
|
|
|
|
# SECURING FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
chown $app: --recursive "$final_path"
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CONFIGURE UWSGI FOR SEARX
|
|
|
|
#=================================================
|
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
cp ../conf/searx.ini /etc/uwsgi/apps-available/$app.ini
|
2017-05-01 15:47:20 +02:00
|
|
|
ynh_replace_string "__APP__" "$app" /etc/uwsgi/apps-available/$app.ini
|
|
|
|
ynh_replace_string "__FINALPATH__" "$final_path" /etc/uwsgi/apps-available/$app.ini
|
2017-08-28 03:03:36 +02:00
|
|
|
systemctl restart uwsgi
|
2014-07-21 23:53:27 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2014-07-21 23:53:27 +02:00
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
# Make app public if necessary
|
2017-05-01 15:47:20 +02:00
|
|
|
if [ $is_public -eq 1 ]
|
2014-07-21 23:53:27 +02:00
|
|
|
then
|
2017-05-01 15:47:20 +02:00
|
|
|
ynh_app_setting_set $app skipped_uris "/"
|
2014-07-21 23:53:27 +02:00
|
|
|
fi
|
2016-07-04 21:16:34 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2014-07-23 00:14:40 +02:00
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
systemctl reload nginx
|