1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/cops_ynh.git synced 2024-09-03 18:25:57 +02:00
cops_ynh/scripts/install

162 lines
5.3 KiB
Text
Raw Normal View History

2016-12-21 18:46:36 +01:00
#!/bin/bash
2021-08-04 12:23:13 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2016-12-21 18:46:36 +01:00
2021-08-04 12:23:13 +02:00
source _common.sh
2016-12-21 18:46:36 +01:00
source /usr/share/yunohost/helpers
2021-08-04 12:23:13 +02:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
### Remove this function if there's nothing to clean before calling the remove script.
true
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2016-12-21 18:46:36 +01:00
domain=$YNH_APP_ARG_DOMAIN
2021-08-04 12:23:13 +02:00
path_url=$YNH_APP_ARG_PATH
2016-12-21 18:46:36 +01:00
is_public=$YNH_APP_ARG_IS_PUBLIC
2021-08-04 12:23:13 +02:00
language=$YNH_APP_ARG_LANGUAGE
timezone="$(cat /etc/timezone)"
2021-08-04 13:31:31 +02:00
calibre=$YNH_APP_ARG_CALIBRE
2016-12-24 03:00:25 +01:00
2021-08-04 12:23:13 +02:00
app=$YNH_APP_INSTANCE_NAME
2016-12-21 18:46:36 +01:00
2021-08-04 12:23:13 +02:00
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2021-08-04 12:50:02 +02:00
ynh_script_progression --message="Validating installation parameters..." --weight=1
2016-12-21 18:46:36 +01:00
2021-08-04 12:23:13 +02:00
final_path=/var/www/$app
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
2016-12-23 23:55:35 +01:00
2021-08-04 12:23:13 +02:00
# Register (book) web path
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
2016-12-23 23:55:35 +01:00
2021-08-04 12:23:13 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2021-08-04 12:50:02 +02:00
ynh_script_progression --message="Storing installation settings..." --weight=1
2016-12-21 18:46:36 +01:00
2021-08-04 12:23:13 +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=language --value=$language
2021-08-04 13:31:31 +02:00
ynh_app_setting_set --app=$app --key=calibre --value=$calibre
2016-12-23 22:01:37 +01:00
2021-08-04 12:23:13 +02:00
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# FIND AND OPEN A PORT
#=================================================
2021-08-04 12:50:02 +02:00
ynh_script_progression --message="Finding an available port..." --weight=1
2016-12-21 18:46:36 +01:00
2021-08-04 12:23:13 +02:00
# Find an available port
port=$(ynh_find_port --port=8095)
ynh_app_setting_set --app=$app --key=port --value=$port
2016-12-21 18:46:36 +01:00
2021-08-04 12:23:13 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2021-08-04 12:50:02 +02:00
ynh_script_progression --message="Configuring system user..." --weight=1
2016-12-21 18:46:36 +01:00
2021-08-04 12:23:13 +02:00
# Create a system user
ynh_system_user_create --username=$app --home_dir="$final_path"
2016-12-21 18:46:36 +01:00
2021-08-04 12:23:13 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-08-04 12:50:02 +02:00
ynh_script_progression --message="Setting up source files..." --weight=1
2017-02-24 14:43:49 +01:00
2021-08-04 12:23:13 +02: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"
2016-12-21 18:46:36 +01:00
2021-08-04 12:23:13 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2016-12-21 18:46:36 +01:00
2021-08-04 12:23:13 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-08-04 12:50:02 +02:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
2021-08-04 12:23:13 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2016-12-22 14:08:07 +01:00
2021-08-04 12:23:13 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2021-08-04 12:50:02 +02:00
ynh_script_progression --message="Configuring PHP-FPM..." --weight=1
2021-08-04 12:23:13 +02:00
# Create a dedicated PHP-FPM config
ynh_add_fpm_config
2021-08-04 12:23:13 +02:00
#=================================================
# CREATE DATA DIRECTORY
#=================================================
2021-08-04 12:50:02 +02:00
ynh_script_progression --message="Creating a data directory..." --weight=1
2017-02-24 17:06:06 +01:00
2021-08-04 12:23:13 +02:00
datadir=/home/yunohost.app/$app
ynh_app_setting_set --app=$app --key=datadir --value=$datadir
2017-02-24 17:06:06 +01:00
2021-08-04 12:23:13 +02:00
mkdir -p $datadir
2021-08-04 12:23:13 +02:00
chmod 750 "$datadir"
chmod -R o-rwx "$datadir"
chown -R $app:www-data "$datadir"
#=================================================
# ADD A CONFIGURATION
#=================================================
ynh_script_progression --message="Adding a configuration file..." --weight=1
ynh_add_config --template="../conf/config_local.php" --destination="$final_path/config_local.php"
2021-08-04 12:23:13 +02:00
chmod 400 "$final_path/config_local.php"
chown $app "$final_path/config_local.php"
2016-12-21 18:46:36 +01:00
2021-08-04 12:23:13 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
ynh_script_progression --message="Configuring log rotation..." --weight=1
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
#=================================================
# SETUP SSOWAT
#=================================================
2021-08-04 12:50:02 +02:00
ynh_script_progression --message="Configuring permissions..." --weight=1
2016-12-21 18:46:36 +01:00
# Make app public if necessary
2021-08-04 12:23:13 +02:00
if [ $is_public -eq 1 ]
2016-12-21 18:46:36 +01:00
then
2021-08-04 12:23:13 +02:00
ynh_permission_update --permission="main" --add="visitors"
2016-12-21 18:46:36 +01:00
fi
2021-08-04 12:23:13 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2021-08-04 12:50:02 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2021-08-04 12:23:13 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2021-08-04 12:50:02 +02:00
ynh_script_progression --message="Installation of $app completed" --last