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

104 lines
3.3 KiB
Text
Raw Normal View History

2021-12-27 18:31:01 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
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
#=================================================
domain=$YNH_APP_ARG_DOMAIN
2023-01-10 15:51:22 +01:00
path_url="/"
2021-12-31 12:17:58 +01:00
backend=$YNH_APP_ARG_BACKEND
is_public=$YNH_APP_ARG_IS_PUBLIC
2023-01-10 15:51:22 +01:00
app=$YNH_APP_INSTANCE_NAME
2021-12-27 18:31:01 +01:00
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2021-12-31 12:17:58 +01:00
ynh_script_progression --message="Validating installation parameters..." --weight=2
2021-12-27 18:31:01 +01:00
final_path=/var/www/$app
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
# Register (book) web path
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2023-01-10 16:15:44 +01:00
ynh_script_progression --message="Storing installation settings..." --weight=1
2021-12-27 18:31:01 +01:00
ynh_app_setting_set --app=$app --key=domain --value=$domain
2021-12-31 12:17:58 +01:00
ynh_app_setting_set --app=$app --key=backend --value=$backend
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2021-12-27 18:31:01 +01:00
#=================================================
2021-12-31 12:17:58 +01:00
# CREATE DEDICATED USER
2021-12-27 18:31:01 +01:00
#=================================================
2023-01-10 15:51:22 +01:00
ynh_script_progression --message="Configuring system user..." --weight=1
2021-12-27 18:31:01 +01:00
2021-12-31 12:17:58 +01:00
ynh_system_user_create --username=$app --home_dir="$final_path"
2021-12-27 18:31:01 +01:00
#=================================================
2023-01-10 15:51:22 +01:00
# STANDARD MODIFICATIONS
2021-12-27 18:31:01 +01:00
#=================================================
2023-01-10 15:51:22 +01:00
# SETUP SOURCE
2021-12-27 18:31:01 +01:00
#=================================================
2023-01-10 15:51:22 +01:00
ynh_script_progression --message="Setting up source files..." --weight=1
2021-12-27 18:31:01 +01:00
2023-01-10 15:51:22 +01:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
ynh_setup_source --dest_dir="$final_path"
2021-12-27 18:31:01 +01:00
2021-12-31 12:17:58 +01:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2021-12-27 18:31:01 +01:00
2023-01-10 15:51:22 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Configuring NGINX web server..." --weight=2
# Create a dedicated NGINX config
ynh_add_nginx_config
2021-12-27 18:31:01 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP SSOWAT
#=================================================
2023-01-10 16:15:44 +01:00
ynh_script_progression --message="Configuring permissions..." --weight=1
2021-12-27 18:31:01 +01:00
# Make app public if necessary
if [ $is_public -eq 1 ]
then
2021-12-31 12:17:58 +01:00
ynh_permission_update --permission="main" --add="visitors"
2021-12-27 18:31:01 +01:00
fi
#=================================================
# RELOAD NGINX
#=================================================
2023-01-10 16:15:44 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=2
2021-12-27 18:31:01 +01:00
ynh_systemd_action --service_name=nginx --action=reload
2023-01-10 15:54:19 +01:00
2021-12-27 18:31:01 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-12-31 12:17:58 +01:00
ynh_script_progression --message="Installation of $app completed" --last