2014-05-10 11:54:15 +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
|
|
|
|
2018-05-11 22:59:18 +02:00
|
|
|
source _common.sh
|
2017-05-01 15:47:20 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE FAILURE OF THE SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-03-03 20:32:26 +01:00
|
|
|
ynh_clean_setup () {
|
|
|
|
ynh_clean_check_starting
|
|
|
|
}
|
2017-08-28 03:03:36 +02:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
2014-05-10 11:54:15 +02:00
|
|
|
|
2016-07-04 21:16:34 +02:00
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
2017-05-01 15:47:20 +02:00
|
|
|
path_url=$YNH_APP_ARG_PATH
|
2016-07-04 21:16:34 +02:00
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
2014-05-10 11:54:15 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2016-07-05 12:25:15 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THIS ARGS
|
|
|
|
#=================================================
|
2019-03-03 20:33:02 +01:00
|
|
|
ynh_print_info "Validating installation parameters..."
|
2014-05-10 11:54:15 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
final_path="/opt/yunohost/$app"
|
|
|
|
test ! -e "$final_path" || ynh_die "This path already contains a folder"
|
2016-04-24 18:05:52 +02:00
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
# Normalize the url path syntax
|
|
|
|
path_url=$(ynh_normalize_url_path $path_url)
|
|
|
|
|
|
|
|
# Register (book) web path
|
|
|
|
ynh_webpath_register $app $domain $path_url
|
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2019-03-03 20:33:02 +01:00
|
|
|
ynh_print_info "Storing installation settings..."
|
2014-05-29 13:06:31 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
ynh_app_setting_set $app domain $domain
|
|
|
|
ynh_app_setting_set $app path $path_url
|
|
|
|
ynh_app_setting_set $app is_public $is_public
|
2014-05-10 11:54:15 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2019-03-03 20:33:02 +01:00
|
|
|
ynh_print_info "Installing dependencies..."
|
2014-07-21 23:26:57 +02:00
|
|
|
|
2018-03-08 17:10:43 +01:00
|
|
|
ynh_install_app_dependencies git build-essential libxslt-dev python-dev python-virtualenv virtualenv python-babel zlib1g-dev libffi-dev libssl-dev python-lxml uwsgi uwsgi-plugin-python
|
2014-09-23 12:20:00 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2019-03-03 20:33:02 +01:00
|
|
|
ynh_print_info "Configuring nginx web server..."
|
2014-05-12 21:44:08 +02:00
|
|
|
|
2019-03-03 20:32:26 +01:00
|
|
|
path_no_root=${path_url%/}
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config "path_no_root"
|
2014-05-10 11:54:15 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2019-03-03 20:33:02 +01:00
|
|
|
ynh_print_info "Configuring system user..."
|
2014-05-10 11:54:15 +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
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2019-03-03 20:33:02 +01:00
|
|
|
ynh_print_info "Setting up source files..."
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
ynh_app_setting_set $app final_path $final_path
|
2017-08-28 03:03:36 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source "$final_path"
|
2014-05-10 11:54:15 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
|
|
|
# INSTALL SEARX IN A VIRTUALENV
|
|
|
|
#=================================================
|
2019-03-03 20:33:02 +01:00
|
|
|
ynh_print_info "Installing Searx..."
|
2017-05-01 15:47:20 +02:00
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
virtualenv --system-site-packages "$final_path"
|
2018-06-29 19:21:14 +02:00
|
|
|
set +u; source $final_path/bin/activate; set -u
|
|
|
|
pip install -U setuptools
|
|
|
|
pip install --requirement $final_path/requirements-ynh.txt
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CONFIGURE SEARX
|
|
|
|
#=================================================
|
2019-03-03 20:33:02 +01:00
|
|
|
ynh_print_info "Configuring Searx..."
|
2017-05-01 15:47:20 +02:00
|
|
|
|
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"
|
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-05-27 12:04:01 +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-05-27 12:04:01 +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-05-27 12:04:01 +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
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SET PERMISSIONS ON SEARX DIRECTORY
|
|
|
|
#=================================================
|
2014-05-10 11:54:15 +02:00
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
chown $app: --recursive "$final_path"
|
2014-05-10 11:54:15 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# CONFIGURE UWSGI FOR SEARX
|
|
|
|
#=================================================
|
2019-03-03 20:33:02 +01:00
|
|
|
ynh_print_info "Configuring uWSGI for Searx..."
|
2014-05-27 12:13:54 +02:00
|
|
|
|
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
|
|
|
ln -s /etc/uwsgi/apps-available/$app.ini /etc/uwsgi/apps-enabled/$app.ini
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
2019-03-03 20:32:26 +01:00
|
|
|
# ADVERTISE SERVICE IN ADMIN PANEL
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Ajoute le service au monitoring de Yunohost.
|
2017-08-28 03:03:36 +02:00
|
|
|
yunohost service add uwsgi --log "/var/log/uwsgi/app/$app.log"
|
2017-05-01 15:47:20 +02:00
|
|
|
|
2018-05-11 22:59:18 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK SEARX STARTING
|
|
|
|
#=================================================
|
2019-03-03 20:33:02 +01:00
|
|
|
ynh_print_info "Starting Searx..."
|
2018-05-11 22:59:18 +02:00
|
|
|
|
|
|
|
# Wait for searx to be fully started
|
2019-03-03 20:32:26 +01:00
|
|
|
ynh_systemd_action --service_name=uwsgi --action=restart --line_match="spawned uWSGI master process" --log_path="/var/log/uwsgi/app/$app.log"
|
2018-05-11 22:59:18 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALISATION
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2019-03-03 20:33:02 +01:00
|
|
|
ynh_print_info "Configuring SSOwat..."
|
2017-05-01 15:47:20 +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-05-27 12:13:54 +02:00
|
|
|
then
|
2017-05-01 15:47:20 +02:00
|
|
|
ynh_app_setting_set $app skipped_uris "/"
|
2014-05-27 12:13:54 +02:00
|
|
|
fi
|
2014-12-04 21:43:45 +01:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2019-03-03 20:33:02 +01:00
|
|
|
ynh_print_info "Reloading nginx web server..."
|
2017-05-01 15:47:20 +02:00
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
systemctl reload nginx
|
2019-03-03 20:33:02 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_print_info "Installation of $app completed"
|