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
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE FAILURE OF THE SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_abort_if_errors # Active trap pour arrêter le script si une erreur est détectée.
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
|
|
|
#=================================================
|
2014-05-10 11:54:15 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
path_url=$(ynh_normalize_url_path $path_url) # Vérifie et corrige la syntaxe du path.
|
|
|
|
CHECK_DOMAINPATH # Vérifie la disponibilité du path et du domaine.
|
|
|
|
# Check final_path
|
|
|
|
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-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
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
|
|
|
|
#=================================================
|
2014-07-21 23:26:57 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
ynh_install_app_dependencies git build-essential libxslt-dev python-dev python-virtualenv virtualenv python-pybabel 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
|
|
|
|
#=================================================
|
2014-05-12 21:44:08 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
ynh_nginx_config
|
|
|
|
if [ "$path_url" = "/" ]
|
2014-05-27 12:13:54 +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
|
|
|
|
sudo sed --in-place '/#noroot*/d' /etc/nginx/conf.d/$domain.d/$app.conf
|
2014-07-21 23:42:32 +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:42:32 +02:00
|
|
|
fi
|
2017-06-13 15:47:47 +02:00
|
|
|
ynh_store_file_checksum "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2014-05-10 11:54:15 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2014-05-10 11:54:15 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
ynh_system_user_create $app # Créer un utilisateur système dédié à l'app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_app_setting_set $app final_path $final_path
|
2017-06-13 15:47:47 +02:00
|
|
|
ynh_setup_source "$final_path" # Télécharge la source, décompresse et copie dans $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
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
sudo virtualenv --system-site-packages "$final_path"
|
|
|
|
sudo bash -c "source $final_path/bin/activate && pip install --requirement $final_path/requirements-ynh.txt"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CONFIGURE SEARX
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
sudo cp ../conf/settings.yml "$final_path/searx/"
|
|
|
|
|
|
|
|
# Generate a secret key
|
|
|
|
ynh_replace_string "__SECRETKEY__" "$(ynh_string_random)" "$final_path/searx/settings.yml"
|
|
|
|
|
|
|
|
# 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-05-01 15:47:20 +02:00
|
|
|
ynh_replace_string "__BASEURL__" "https://${domain}${path_url}/" "$final_path/searx/settings.yml"
|
2014-05-27 12:04:01 +02:00
|
|
|
else
|
2017-05-01 15:47:20 +02:00
|
|
|
ynh_replace_string "__BASEURL__" "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-05-01 15:47:20 +02:00
|
|
|
sudo 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
|
|
|
|
#=================================================
|
2014-05-27 12:13:54 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
sudo cp ../conf/searx.ini /etc/uwsgi/apps-available/$app.ini
|
|
|
|
ynh_replace_string "__APP__" "$app" /etc/uwsgi/apps-available/$app.ini
|
|
|
|
ynh_replace_string "__FINALPATH__" "$final_path" /etc/uwsgi/apps-available/$app.ini
|
|
|
|
sudo ln -s /etc/uwsgi/apps-available/$app.ini /etc/uwsgi/apps-enabled/$app.ini
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ENABLE UWSGI SERVICE IN ADMIN PANEL
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
sudo systemctl restart uwsgi
|
|
|
|
# Ajoute le service au monitoring de Yunohost.
|
|
|
|
sudo yunohost service add uwsgi --log "/var/log/uwsgi/app/$app.log"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALISATION
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
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
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
sudo systemctl reload nginx
|