1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jirafeau_ynh.git synced 2024-09-03 19:35:53 +02:00
jirafeau_ynh/scripts/install

192 lines
6.8 KiB
Text
Raw Normal View History

2014-01-13 13:50:38 +01:00
#!/bin/bash
2017-09-28 18:02:10 +02:00
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-02-13 21:13:59 +01:00
source _common.sh
2017-09-28 18:02:10 +02:00
source /usr/share/yunohost/helpers
#=================================================
2019-02-13 21:13:59 +01:00
# MANAGE SCRIPT FAILURE
2017-09-28 18:02:10 +02:00
#=================================================
2019-02-13 21:13:59 +01:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-09-28 18:02:10 +02:00
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
domain=$YNH_APP_ARG_DOMAIN
2017-09-28 18:02:10 +02:00
path_url=$YNH_APP_ARG_PATH
admin_user=$YNH_APP_ARG_ADMIN_USER
upload_password=$YNH_APP_ARG_UPLOAD_PASSWORD
is_public=$YNH_APP_ARG_IS_PUBLIC
2022-05-23 12:39:33 +02:00
phpversion=$YNH_PHP_VERSION
2014-01-13 13:50:38 +01:00
2017-09-28 18:02:10 +02:00
app=$YNH_APP_INSTANCE_NAME
2014-01-13 13:50:38 +01:00
2017-09-28 18:02:10 +02:00
#=================================================
2019-02-13 21:13:59 +01:00
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
2017-09-28 18:02:10 +02:00
#=================================================
ynh_script_progression --message="Validating installation parameters..." --weight=1
2015-01-31 23:01:16 +01:00
2017-09-28 18:02:10 +02:00
final_path=/var/www/$app
test ! -e "$final_path" || ynh_die "This path already contains a folder"
# Register (book) web path
2019-05-06 14:14:36 +02:00
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
2017-09-28 18:02:10 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
ynh_script_progression --message="Storing installation settings..." --weight=1
2017-09-28 18:02:10 +02:00
2019-05-06 14:14:36 +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=admin --value=$admin_user
ynh_app_setting_set --app=$app --key=is_public --value=$is_public
2017-09-28 18:02:10 +02:00
2022-05-23 12:39:33 +02:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
ynh_script_progression --message="Installing dependencies..." --weight=2
ynh_install_app_dependencies $pkg_dependencies
2021-11-04 20:15:49 +01:00
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Configuring system user..." --weight=2
# Create a system user
ynh_system_user_create --username=$app --home_dir="$final_path"
2017-09-28 18:02:10 +02:00
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-05-06 14:14:36 +02:00
ynh_script_progression --message="Setting up source files..." --weight=3
2017-09-28 18:02:10 +02:00
2019-05-06 14:14:36 +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"
2017-09-28 18:02:10 +02:00
2021-11-04 20:15:49 +01:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2017-09-28 18:02:10 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Configuring NGINX web server..."
2017-09-28 18:02:10 +02:00
2020-11-09 16:04:43 +01:00
# Create a dedicated NGINX config
2017-09-28 18:02:10 +02:00
ynh_add_nginx_config
2017-09-28 18:02:10 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression --message="Configuring PHP-FPM..." --weight=2
2017-09-28 18:02:10 +02:00
# Create a dedicated PHP-FPM config
2020-11-09 16:04:43 +01:00
ynh_add_fpm_config
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2017-09-28 18:02:10 +02:00
#=================================================
# SPECIFIC SETUP
#=================================================
# SET AND SAVE THE UPLOAD PASSWORD
#=================================================
jirafeauconfigfile="$final_path/lib/config.local.php"
cp "../conf/config.local.php" "$jirafeauconfigfile"
2014-01-13 13:50:38 +01:00
# Set and save upload password, allowing an empty one
2017-09-28 18:02:10 +02:00
if [ -z "$upload_password" ]
then
2021-04-11 18:58:39 +02:00
ynh_replace_string --match_string="__UPLOAD_PASSWORD__" --replace_string="" --target_file="$jirafeauconfigfile"
2019-05-06 14:14:36 +02:00
ynh_app_setting_set --app=$app --key=upload_password --value=""
else
2021-04-11 18:58:39 +02:00
ynh_replace_special_string --match_string="__UPLOAD_PASSWORD__" --replace_string="'$upload_password'" --target_file="$jirafeauconfigfile"
2019-05-06 14:14:36 +02:00
ynh_app_setting_set --app=$app --key=upload_password --value="$upload_password"
fi
2021-11-04 20:15:49 +01:00
#=================================================
# CREATE DATA DIRECTORY
#=================================================
ynh_script_progression --message="Creating a data directory..." --weight=1
datadir=/home/yunohost.app/$app
ynh_app_setting_set --app=$app --key=datadir --value=$datadir
mkdir -p $datadir/{files,links,async,block}
chmod 750 "$datadir"
chmod -R o-rwx "$datadir"
chown -R $app:www-data "$datadir"
2017-09-28 18:02:10 +02:00
#=================================================
# CONFIGURE JIRAFEAU
#=================================================
ynh_script_progression --message="Configuring Jirafeau..." --weight=2
2017-09-28 18:02:10 +02:00
2021-04-11 18:58:39 +02:00
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="$jirafeauconfigfile"
2017-09-28 18:02:10 +02:00
if [ "$path_url" = "/" ]
then
2021-04-11 18:58:39 +02:00
ynh_replace_string --match_string="__PATH__" --replace_string="" --target_file="$jirafeauconfigfile"
else
2021-04-11 18:58:39 +02:00
ynh_replace_string --match_string="__PATH__" --replace_string="$path_url" --target_file="$jirafeauconfigfile"
fi
2021-11-04 20:15:49 +01:00
ynh_replace_string --match_string="__DATADIR__" --replace_string="$datadir" --target_file="$jirafeauconfigfile"
2021-04-11 18:58:39 +02:00
ynh_replace_string --match_string="__ADMIN_USER__" --replace_string="$admin_user" --target_file="$jirafeauconfigfile"
2017-09-28 18:02:10 +02:00
# Calculate and store the config file checksum into the app settings
2019-05-06 14:14:36 +02:00
ynh_store_file_checksum --file="$jirafeauconfigfile"
2017-09-28 18:02:10 +02:00
# Remove the install.php
2019-05-17 10:44:19 +02:00
ynh_secure_remove --file=$final_path/install.php
2017-09-28 18:02:10 +02:00
2021-11-04 20:15:49 +01:00
chmod 400 "$jirafeauconfigfile"
chown $app:$app "$jirafeauconfigfile"
2020-03-03 20:23:09 +01:00
#=================================================
# SET THE CRON FILE
#=================================================
ynh_script_progression --message="Configuring the cron file..." --weight=2
2020-03-03 20:23:09 +01:00
2021-04-11 18:58:39 +02:00
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
2021-11-04 20:15:49 +01:00
chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app"
2017-09-28 18:02:10 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
2021-02-14 11:27:24 +01:00
ynh_script_progression --message="Configuring permissions..." --weight=2
ynh_permission_update --permission="main" --add="visitors"
2017-09-28 18:02:10 +02:00
if [ $is_public -eq 0 ]
2014-01-13 13:50:38 +01:00
then
2017-09-28 18:02:10 +02:00
domain_regex=$(echo "$domain" | sed 's@-@.@g')
[ "$path_url" = "/" ] && path_url=""
2019-05-06 14:14:36 +02:00
ynh_app_setting_set --app=$app --key=protected_regex --value="$domain_regex$path_url/$","$domain_regex$path_url/admin.php.*$"
2014-01-13 13:50:38 +01:00
fi
2017-09-28 18:02:10 +02:00
#=================================================
# RELOAD NGINX
#=================================================
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2017-09-28 18:02:10 +02:00
2019-05-06 14:14:36 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-17 20:55:13 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Installation of Jirafeau completed" --last