2018-06-17 00:50:26 +02: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
|
2020-02-22 01:28:06 +01:00
|
|
|
path_url=$YNH_APP_ARG_PATH
|
2018-06-17 00:50:26 +02:00
|
|
|
admin=$YNH_APP_ARG_ADMIN
|
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
2020-06-11 00:45:03 +02:00
|
|
|
random_key=$(ynh_string_random --length=32)
|
2021-02-08 08:58:17 +01:00
|
|
|
email=$(ynh_user_get_info --username=$admin --key=mail)
|
2021-11-29 10:34:02 +01:00
|
|
|
phpversion=$YNH_PHP_VERSION
|
2022-04-05 20:42:54 +02:00
|
|
|
tag=$(ynh_app_upstream_version)
|
2021-11-22 07:34:00 +01:00
|
|
|
|
2018-06-17 00:50:26 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
2020-06-11 13:38:18 +02:00
|
|
|
ynh_script_progression --message="Validating installation parameters..."
|
2018-06-17 00:50:26 +02:00
|
|
|
|
|
|
|
final_path=/var/www/$app
|
2019-06-23 01:22:06 +02:00
|
|
|
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
|
2018-06-17 00:50:26 +02:00
|
|
|
|
|
|
|
# Register (book) web path
|
2019-06-23 01:22:06 +02:00
|
|
|
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
|
2018-06-17 00:50:26 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2020-06-11 13:38:18 +02:00
|
|
|
ynh_script_progression --message="Storing installation settings..."
|
2018-06-17 00:50:26 +02:00
|
|
|
|
2019-06-23 01:22:06 +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
|
|
|
|
ynh_app_setting_set --app=$app --key=random_key --value=$random_key
|
2021-11-29 10:34:02 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=phpversion --value=$phpversion
|
2018-06-17 00:50:26 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2020-06-11 13:38:18 +02:00
|
|
|
ynh_script_progression --message="Installing dependencies..."
|
2018-06-17 00:50:26 +02:00
|
|
|
|
2020-06-11 00:45:03 +02:00
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2018-06-17 00:50:26 +02:00
|
|
|
|
2021-07-23 14:55:35 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring system user..."
|
|
|
|
|
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
|
|
|
|
2018-06-17 00:50:26 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE A MYSQL DATABASE
|
|
|
|
#=================================================
|
2020-06-11 13:38:18 +02:00
|
|
|
ynh_script_progression --message="Creating a MySQL database..."
|
2018-06-17 00:50:26 +02:00
|
|
|
|
2019-06-23 01:22:06 +02:00
|
|
|
db_name=$(ynh_sanitize_dbid --db_name=$app)
|
|
|
|
db_user=$db_name
|
|
|
|
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
|
|
|
|
ynh_mysql_setup_db --db_user=$db_user --db_name=$db_name
|
2018-06-17 00:50:26 +02:00
|
|
|
|
2021-06-04 09:15:08 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring system user..."
|
|
|
|
|
|
|
|
# Create a system user
|
2021-06-04 09:27:29 +02:00
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
2021-06-04 09:15:08 +02:00
|
|
|
|
2018-06-17 00:50:26 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2021-05-25 17:42:51 +02:00
|
|
|
ynh_script_progression --message="Cloning Firefly-iii..."
|
2018-06-17 00:50:26 +02:00
|
|
|
|
2019-06-23 01:22:06 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2021-05-25 17:42:51 +02:00
|
|
|
|
2021-11-29 13:30:26 +01:00
|
|
|
git clone --quiet -b $tag --depth 1 https://github.com/firefly-iii/firefly-iii.git $final_path
|
2018-06-17 00:50:26 +02:00
|
|
|
|
2021-07-23 14:55:35 +02:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:www-data "$final_path"
|
|
|
|
chmod -R 775 $final_path/storage
|
|
|
|
|
2018-06-17 00:50:26 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-29 09:59:46 +01:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..."
|
2018-06-17 00:50:26 +02:00
|
|
|
|
2020-11-29 09:59:46 +01:00
|
|
|
# Create a dedicated NGINX config
|
2018-06-17 00:50:26 +02:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
2020-06-11 00:45:03 +02:00
|
|
|
# PHP-FPM CONFIGURATION
|
2018-06-17 00:50:26 +02:00
|
|
|
#=================================================
|
2020-11-29 09:59:46 +01:00
|
|
|
ynh_script_progression --message="Configuring PHP-FPM..."
|
2020-02-22 01:28:06 +01:00
|
|
|
|
2020-11-29 09:59:46 +01:00
|
|
|
# Create a dedicated PHP-FPM config
|
2021-11-22 07:34:00 +01:00
|
|
|
ynh_add_fpm_config --usage=low --footprint=low
|
2018-06-17 00:50:26 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
2020-06-11 00:45:03 +02:00
|
|
|
# INSTALL COMPOSER DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Installing composer dependencies..."
|
2018-06-17 00:50:26 +02:00
|
|
|
|
2020-06-11 00:45:03 +02:00
|
|
|
ynh_exec_warn_less ynh_install_composer --phpversion="$phpversion" --workdir="$final_path"
|
2019-06-23 01:22:06 +02:00
|
|
|
|
2018-06-17 01:06:59 +02:00
|
|
|
#=================================================
|
|
|
|
# MODIFY A CONFIG FILE
|
|
|
|
#=================================================
|
2020-06-11 00:45:03 +02:00
|
|
|
ynh_script_progression --message="Modifying a config file..."
|
|
|
|
|
2021-07-23 14:55:35 +02:00
|
|
|
ynh_add_config --template="../conf/.env" --destination="$final_path/.env"
|
|
|
|
chmod 400 "$final_path/.env"
|
|
|
|
chown $app "$final_path/.env"
|
2018-06-17 00:50:26 +02:00
|
|
|
|
2020-06-11 00:45:03 +02:00
|
|
|
#=================================================
|
|
|
|
# DEPLOY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Deploying..."
|
2019-06-23 01:22:06 +02:00
|
|
|
|
2020-06-11 00:45:03 +02:00
|
|
|
pushd "$final_path"
|
|
|
|
php$phpversion artisan migrate:refresh --seed
|
|
|
|
php$phpversion artisan firefly-iii:upgrade-database
|
|
|
|
php$phpversion artisan passport:install
|
|
|
|
popd
|
|
|
|
|
2018-06-17 00:50:26 +02:00
|
|
|
#=================================================
|
2021-02-07 18:42:41 +01:00
|
|
|
# SETUP A CRON
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Setuping a cron..."
|
|
|
|
|
2021-07-23 14:55:35 +02:00
|
|
|
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
|
|
|
|
chown root: "/etc/cron.d/$app"
|
|
|
|
chmod 644 "/etc/cron.d/$app"
|
2021-02-07 18:42:41 +01:00
|
|
|
|
2018-06-17 00:50:26 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2021-02-08 07:48:49 +01:00
|
|
|
ynh_script_progression --message="Configuring permissions..."
|
2018-06-17 00:50:26 +02:00
|
|
|
|
|
|
|
# Make app public if necessary
|
|
|
|
if [ $is_public -eq 1 ]
|
|
|
|
then
|
2021-02-08 07:48:49 +01:00
|
|
|
ynh_permission_update --permission="main" --add="visitors"
|
2018-06-17 00:50:26 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2020-11-29 09:59:46 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..."
|
2019-06-23 01:22:06 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-06-11 00:45:03 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|