2013-11-29 12:49:27 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-03-08 23:32:10 +01:00
|
|
|
#=================================================
|
2020-10-20 23:28:09 +02:00
|
|
|
# GENERIC START
|
2017-03-08 23:32:10 +01:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-05-13 22:29:15 +02:00
|
|
|
|
2020-10-20 23:28:09 +02:00
|
|
|
source _common.sh
|
2017-03-08 23:32:10 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
2015-05-28 14:58:23 +02:00
|
|
|
|
2017-03-08 23:32:10 +01:00
|
|
|
#=================================================
|
|
|
|
# MANAGE FAILURE OF THE SCRIPT
|
|
|
|
#=================================================
|
2016-05-13 22:29:15 +02:00
|
|
|
|
2020-10-20 23:28:09 +02:00
|
|
|
ynh_abort_if_errors
|
2013-11-29 12:49:27 +01:00
|
|
|
|
2017-03-08 23:32:10 +01:00
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
2020-11-22 22:11:36 +01:00
|
|
|
path_url=$YNH_APP_ARG_PATH
|
2017-03-08 23:32:10 +01:00
|
|
|
name=$YNH_APP_ARG_NAME
|
|
|
|
language=$YNH_APP_ARG_LANGUAGE
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2020-10-20 23:28:09 +02:00
|
|
|
|
2020-11-22 22:17:57 +01:00
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Validating installation parameters..." --weight=1
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2017-03-08 23:32:10 +01:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2020-11-22 22:11:36 +01:00
|
|
|
ynh_script_progression --message="Storing installation settings..." --weight=1
|
2015-05-28 14:58:23 +02:00
|
|
|
|
2020-11-22 22:11:36 +01: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=name --value=$name
|
|
|
|
ynh_app_setting_set --app=$app --key=language --value=$language
|
2017-03-08 23:32:10 +01:00
|
|
|
|
2021-06-20 18:24:46 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring system user..." --weight=1
|
|
|
|
|
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
|
|
|
|
2017-03-08 23:32:10 +01:00
|
|
|
#=================================================
|
2020-11-22 22:02:51 +01:00
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
2017-03-08 23:32:10 +01:00
|
|
|
#=================================================
|
2020-11-22 22:02:51 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=1
|
2017-03-08 23:32:10 +01:00
|
|
|
|
2020-11-22 22:02:51 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
2017-03-08 23:32:10 +01:00
|
|
|
|
2021-06-20 18:24:46 +02:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:www-data "$final_path"
|
2016-05-13 22:29:15 +02:00
|
|
|
|
2017-03-08 23:32:10 +01:00
|
|
|
#=================================================
|
2020-11-22 22:02:51 +01:00
|
|
|
# NGINX CONFIGURATION
|
2017-03-08 23:32:10 +01:00
|
|
|
#=================================================
|
2020-11-22 22:34:17 +01:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
|
2020-11-22 22:02:51 +01:00
|
|
|
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
2016-05-13 22:29:15 +02:00
|
|
|
|
2017-03-08 23:32:10 +01:00
|
|
|
#=================================================
|
2020-11-22 22:34:17 +01:00
|
|
|
# Set Jappix configuration
|
2017-03-08 23:32:10 +01:00
|
|
|
#=================================================
|
2016-05-13 22:29:15 +02:00
|
|
|
|
2021-06-20 18:24:46 +02:00
|
|
|
mkdir -p "$final_path/store/conf"
|
|
|
|
|
2021-04-13 20:08:47 +02:00
|
|
|
ynh_add_config --template="../conf/hosts.xml" --destination="$final_path/store/conf/hosts.xml"
|
|
|
|
ynh_add_config --template="../conf/main.xml" --destination="$final_path/store/conf/main.xml"
|
2021-06-20 18:24:46 +02:00
|
|
|
ynh_add_config --template="../conf/installed.xml" --destination="$final_path/store/conf/installed.xml"
|
2020-10-20 23:28:09 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2021-04-13 23:22:51 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2020-10-20 23:28:09 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
2017-03-08 23:32:10 +01:00
|
|
|
#=================================================
|
2020-10-20 23:28:09 +02:00
|
|
|
# END OF SCRIPT
|
2017-03-08 23:32:10 +01:00
|
|
|
#=================================================
|
|
|
|
|
2020-10-20 23:28:09 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|