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

150 lines
4.9 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
#=================================================
# 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-11-20 18:28:33 +01:00
phpversion=$YNH_PHP_VERSION
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
2016-12-23 22:01:37 +01:00
2021-11-20 09:25:38 +01:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
ynh_script_progression --message="Installing dependencies..." --weight=1
ynh_install_app_dependencies $pkg_dependencies
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-12-09 16:07:56 +01:00
ynh_script_progression --message="Creating a calibre directory..." --weight=1
2017-02-24 17:06:06 +01:00
2021-12-09 16:07:56 +01:00
#build multimedia directory
ynh_multimedia_build_main_dir
ynh_multimedia_addaccess $app
2017-02-24 17:06:06 +01:00
2021-12-09 16:07:56 +01:00
calibre_dir=/home/yunohost.multimedia/share/eBook
ynh_app_setting_set --app=$app --key=calibre_dir --value=$calibre_dir
2021-12-09 16:22:38 +01:00
# #Check if metadata.db file exists. If not create it (empty library)
# if [ ! -e "$calibre_dir"/metadata.db ]; then
# cp -a ../conf/metadata.db.empty $calibre_dir/metadata.db
# fi
2021-12-09 16:07:56 +01:00
2021-12-09 16:21:13 +01:00
chmod 750 "$calibre_dir"
chmod -R o-rwx "$calibre_dir"
chown -R $app:www-data "$calibre_dir"
2021-08-04 12:23:13 +02:00
#=================================================
# 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-11-05 15:41:41 +01:00
chmod 600 "$final_path/config_local.php"
2021-08-04 12:23:13 +02:00
chown $app "$final_path/config_local.php"
2016-12-21 18:46:36 +01:00
2021-08-04 12:23:13 +02:00
#=================================================
# 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