1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/searx_ynh.git synced 2024-09-03 20:16:30 +02:00
searx_ynh/scripts/install

168 lines
5.9 KiB
Text
Raw Normal View History

2014-05-10 11:54:15 +02:00
#!/bin/bash
2016-07-04 21:16:34 +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
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
#=================================================
# 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
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
app=$YNH_APP_INSTANCE_NAME
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THIS ARGS
#=================================================
2019-05-18 20:15:36 +02:00
ynh_script_progression --message="Validating installation parameters..."
2014-05-10 11:54:15 +02:00
final_path="/opt/yunohost/$app"
2019-05-18 20:15:36 +02:00
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
2017-08-28 03:03:36 +02:00
# Register (book) web path
2019-05-18 20:15:36 +02:00
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
2017-08-28 03:03:36 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2019-05-18 20:15:36 +02:00
ynh_script_progression --message="Storing installation settings..." --weight=2
2014-05-29 13:06:31 +02:00
2019-05-18 20:15:36 +02:00
ynh_app_setting_set --app=$app --key=domain --value=$domain
ynh_app_setting_set --app=$app --key=path --value=$path_url
ynh_app_setting_set --app=$app --key=is_public --value=$is_public
2014-05-10 11:54:15 +02:00
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2019-05-18 20:15:36 +02:00
ynh_script_progression --message="Installing dependencies..." --weight=35
2019-04-13 00:38:47 +02:00
ynh_install_app_dependencies $pkg_dependencies
#=================================================
# NGINX CONFIGURATION
#=================================================
2019-05-18 20:15:36 +02:00
ynh_script_progression --message="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
#=================================================
# CREATE DEDICATED USER
#=================================================
2019-05-18 20:15:36 +02:00
ynh_script_progression --message="Configuring system user..." --weight=3
2014-05-10 11:54:15 +02:00
2017-08-28 03:03:36 +02:00
# Create a system user
2019-05-18 20:15:36 +02:00
ynh_system_user_create --username=$app
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-05-18 20:15:36 +02:00
ynh_script_progression --message="Setting up source files..." --weight=2
2019-05-18 20:15:36 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2017-08-28 03:03:36 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2019-05-18 20:15:36 +02:00
ynh_setup_source --dest_dir="$final_path"
2014-05-10 11:54:15 +02:00
#=================================================
# SPECIFIC SETUP
#=================================================
# INSTALL SEARX IN A VIRTUALENV
#=================================================
2019-08-05 11:59:35 +02:00
ynh_script_progression --message="Installing Searx..."
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
#=================================================
# CONFIGURE SEARX
#=================================================
2019-05-18 20:15:36 +02:00
ynh_script_progression --message="Configuring Searx..." --weight=2
# 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"
# 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"
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"
#=================================================
# SET PERMISSIONS ON SEARX DIRECTORY
#=================================================
2014-05-10 11:54:15 +02:00
2020-09-19 16:01:27 +02:00
chown -R $app: "$final_path"
2014-05-10 11:54:15 +02:00
#=================================================
# CONFIGURE UWSGI FOR SEARX
#=================================================
2019-05-18 20:15:36 +02:00
ynh_script_progression --message="Configuring uWSGI for Searx..."
2014-05-27 12:13:54 +02:00
2020-04-10 22:02:55 +02:00
ynh_add_uwsgi_service
#=================================================
2019-03-03 20:32:26 +01:00
# ADVERTISE SERVICE IN ADMIN PANEL
#=================================================
# 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"
2018-05-11 22:59:18 +02:00
#=================================================
# CHECK SEARX STARTING
#=================================================
2019-05-18 20:15:36 +02:00
ynh_script_progression --message="Starting Searx..." --weight=4
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=start --line_match="spawned uWSGI master process" --log_path="/var/log/uwsgi/$app/$app.log"
2018-05-11 22:59:18 +02:00
#=================================================
# GENERIC FINALISATION
#=================================================
# SETUP SSOWAT
#=================================================
2019-05-18 20:15:36 +02:00
ynh_script_progression --message="Configuring SSOwat..."
2020-09-19 16:01:27 +02:00
# Make app public if necessary or protect it
if [ $is_public -eq 1 ]
2014-05-27 12:13:54 +02:00
then
2020-09-19 16:01:27 +02:00
ynh_permission_update --permission "main" --add "visitors"
2014-05-27 12:13:54 +02:00
fi
2014-12-04 21:43:45 +01:00
#=================================================
# RELOAD NGINX
#=================================================
2020-09-19 16:01:27 +02:00
ynh_script_progression --message="Reloading NGINX web server..."
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="Installation of $app completed" --last