1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/firefly-iii_ynh.git synced 2024-09-03 18:36:13 +02:00
firefly-iii_ynh/scripts/install

215 lines
8.7 KiB
Text
Raw Normal View History

2018-06-17 00:50:26 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2020-06-11 00:45:03 +02:00
source ynh_composer__2
2018-06-17 00:50:26 +02:00
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)
2020-06-11 00:45:03 +02:00
2018-06-17 00:50:26 +02:00
app=$YNH_APP_INSTANCE_NAME
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
ynh_script_progression --message="Validating installation parameters..."
2018-06-17 00:50:26 +02:00
final_path=/var/www/$app
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
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
2018-06-17 00:50:26 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
ynh_script_progression --message="Storing installation settings..."
2018-06-17 00:50:26 +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=is_public --value=$is_public
ynh_app_setting_set --app=$app --key=random_key --value=$random_key
2018-06-17 00:50:26 +02:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
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
#=================================================
# CREATE A MYSQL DATABASE
#=================================================
ynh_script_progression --message="Creating a MySQL database..."
2018-06-17 00:50:26 +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
#=================================================
# 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
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2021-05-25 17:42:51 +02:00
git clone https://github.com/firefly-iii/firefly-iii.git $final_path
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
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Configuring system user..."
2018-06-17 00:50:26 +02:00
# Create a system user
ynh_system_user_create --username=$app
2018-06-17 00:50:26 +02:00
#=================================================
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
2020-06-11 00:45:03 +02:00
ynh_add_fpm_config --usage=low --footprint=low --package="$extra_php_dependencies"
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
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"
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..."
config="$final_path/.env"
2020-11-19 10:11:49 +01:00
cp -f ../conf/.env "$config"
2020-10-31 20:25:24 +01:00
2020-10-31 20:33:56 +01:00
ynh_replace_string --match_string="SomeRandomStringOf32CharsExactly" --replace_string="$random_key" --target_file="$config"
2020-10-31 20:25:24 +01:00
ynh_replace_string --match_string="fireflyiiidb" --replace_string="127.0.0.1" --target_file="$config"
ynh_replace_string --match_string="DB_DATABASE=firefly" --replace_string="DB_DATABASE=$db_name" --target_file="$config"
2020-10-31 20:57:17 +01:00
ynh_replace_string --match_string="DB_USERNAME=firefly" --replace_string="DB_USERNAME=$db_name" --target_file="$config"
2020-10-31 20:25:24 +01:00
ynh_replace_string --match_string="secret_firefly_password" --replace_string="$db_pwd" --target_file="$config"
ynh_replace_string --match_string="MAIL_MAILER=log" --replace_string="MAIL_MAILER=smtp" --target_file="$config"
ynh_replace_string --match_string="MAIL_HOST=null" --replace_string="MAIL_HOST=127.0.0.1" --target_file="$config"
ynh_replace_string --match_string="MAIL_PORT=2525" --replace_string="MAIL_PORT=25" --target_file="$config"
ynh_replace_string --match_string="mail@example.com" --replace_string="$email" --target_file="$config"
ynh_replace_string --match_string="changeme@example.com" --replace_string="$app@$domain" --target_file="$config"
2021-05-25 17:42:51 +02:00
# These helpers are for reference purpose.Uncomment them once app gets support for LDAP. Put them directly in .env
2020-11-16 23:36:00 +01:00
# ynh_replace_string --match_string="ADLDAP_CONTROLLERS=" --replace_string="ADLDAP_CONTROLLERS=127.0.0.1" --target_file="$config"
# ynh_replace_string --match_string='ADLDAP_BASEDN=""' --replace_string='ADLDAP_BASEDN="dc=yunohost,dc=org"' --target_file="$config"
# ynh_replace_string --match_string="ADLDAP_ACCOUNT_PREFIX=" --replace_string='ADLDAP_ACCOUNT_PREFIX="uid="' --target_file="$config"
# ynh_replace_string --match_string="ADLDAP_ACCOUNT_SUFFIX=" --replace_string='ADLDAP_ACCOUNT_SUFFIX=",dc=yunohost,dc=org"' --target_file="$config"
# ynh_replace_string --match_string="distinguishedname" --replace_string="uid" --target_file="$config"
# ynh_replace_string --match_string="userprincipalname" --replace_string="uid" --target_file="$config"
2020-10-31 20:25:24 +01:00
ynh_replace_string --match_string="localhost" --replace_string="$domain$path_url" --target_file="$config"
2018-06-17 01:06:59 +02:00
2020-06-11 00:45:03 +02:00
#=================================================
# STORE THE CONFIG FILE CHECKSUM
#=================================================
ynh_script_progression --message="Storing the config file checksum..."
2018-06-17 00:50:26 +02:00
2020-06-11 00:45:03 +02:00
# Calculate and store the config file checksum into the app settings
ynh_store_file_checksum --file="$config"
2018-06-17 00:50:26 +02:00
2020-06-11 00:45:03 +02:00
#=================================================
# DEPLOY
#=================================================
ynh_script_progression --message="Deploying..."
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
#=================================================
# GENERIC FINALIZATION
2018-06-17 00:50:26 +02:00
#=================================================
2020-06-11 00:45:03 +02:00
# SECURE FILES AND DIRECTORIES
2018-06-17 00:50:26 +02:00
#=================================================
2020-06-11 00:45:03 +02:00
ynh_script_progression --message="Securing files and directories..."
2018-06-17 00:50:26 +02:00
# Set right permissions
2021-02-08 07:48:49 +01:00
chown -R $app: $final_path
chmod -R 775 $final_path/storage
2018-06-17 00:50:26 +02:00
#=================================================
# SETUP A CRON
#=================================================
ynh_script_progression --message="Setuping a cron..."
cp ../conf/cron /etc/cron.d/$app
ynh_replace_string --match_string="__FINALPATH__" --replace_string="$final_path" --target_file="/etc/cron.d/$app"
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="/etc/cron.d/$app"
ynh_replace_string --match_string="__PHPVERSION__" --replace_string="$phpversion" --target_file="/etc/cron.d/$app"
2018-06-17 00:50:26 +02:00
#=================================================
2020-06-11 00:45:03 +02:00
# SETUP LOGROTATE
2018-06-17 00:50:26 +02:00
#=================================================
ynh_script_progression --message="Configuring log rotation..."
2018-06-17 00:50:26 +02:00
2020-06-11 00:45:03 +02:00
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
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..."
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