mirror of
https://github.com/YunoHost-Apps/helloworld_ynh.git
synced 2024-09-03 19:15:57 +02:00
86 lines
2.8 KiB
Text
86 lines
2.8 KiB
Text
|
#!/bin/bash
|
||
|
|
||
|
#=================================================
|
||
|
# GENERIC START
|
||
|
#=================================================
|
||
|
# IMPORT GENERIC HELPERS
|
||
|
#=================================================
|
||
|
|
||
|
source /usr/share/yunohost/helpers
|
||
|
|
||
|
#=================================================
|
||
|
# MANAGE SCRIPT FAILURE
|
||
|
#=================================================
|
||
|
|
||
|
# Exit if an error occurs during the execution of the script
|
||
|
ynh_abort_if_errors
|
||
|
|
||
|
#=================================================
|
||
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
||
|
#=================================================
|
||
|
|
||
|
app=$YNH_APP_INSTANCE_NAME
|
||
|
domain=$YNH_APP_ARG_DOMAIN
|
||
|
path_url=$YNH_APP_ARG_PATH
|
||
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
||
|
|
||
|
# Final path is the classic name for "where we will put the source of the app"
|
||
|
final_path=/var/www/$app
|
||
|
|
||
|
#=================================================
|
||
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
||
|
#=================================================
|
||
|
ynh_script_progression --message="Validating installation parameters..." --weight=1
|
||
|
|
||
|
# Check final_path availability
|
||
|
test ! -e "$final_path" || ynh_die "$final_path already exists, aborting"
|
||
|
|
||
|
# Register (book) the web path
|
||
|
ynh_webpath_register $app $domain $path_url
|
||
|
|
||
|
#=================================================
|
||
|
# STORE SETTINGS FROM MANIFEST
|
||
|
#=================================================
|
||
|
ynh_script_progression --message="Storing installation settings..." --weight=1
|
||
|
|
||
|
ynh_app_setting_set $app is_public $is_public
|
||
|
ynh_app_setting_set $app final_path $final_path
|
||
|
|
||
|
#=================================================
|
||
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
||
|
#=================================================
|
||
|
ynh_script_progression --message="Setting up source files..." --weight=1
|
||
|
|
||
|
mkdir -p "$final_path"
|
||
|
echo "Hello world!" > $final_path/index.html
|
||
|
chown -R www-data: "$final_path"
|
||
|
|
||
|
#=================================================
|
||
|
# NGINX CONFIGURATION
|
||
|
#=================================================
|
||
|
ynh_script_progression --message="Configuring nginx web server..." --weight=1
|
||
|
|
||
|
# Create a dedicated nginx config
|
||
|
ynh_add_nginx_config
|
||
|
|
||
|
#=================================================
|
||
|
# SETUP SSOWAT
|
||
|
#=================================================
|
||
|
ynh_script_progression --message="Configuring SSOwat..." --weight=1
|
||
|
|
||
|
# Make app public if necessary or protect it
|
||
|
if [ $is_public -eq 1 ]
|
||
|
then
|
||
|
# unprotected_uris allows SSO credentials to be passed anyway.
|
||
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
||
|
fi
|
||
|
|
||
|
#=================================================
|
||
|
# RELOAD NGINX
|
||
|
#=================================================
|
||
|
ynh_script_progression --message="Reloading nginx web server..." --weight=1
|
||
|
|
||
|
ynh_systemd_action --action=reload --service_name=nginx
|
||
|
|
||
|
ynh_script_progression --message="Installation of $app completed" --last
|