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

230 lines
8.6 KiB
Text
Raw Normal View History

2016-10-05 19:44:08 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2020-05-17 14:56:21 +02:00
source experimental_helpers/ynh_add_swap
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
2021-05-15 18:39:31 +02:00
true
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2016-10-05 19:44:08 +02:00
2020-06-12 01:55:21 +02:00
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
2020-06-12 01:55:21 +02:00
#=================================================
2016-10-05 19:44:08 +02:00
domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH
2016-10-05 19:44:08 +02:00
admin=$YNH_APP_ARG_ADMIN
admin_pwd=$YNH_APP_ARG_PASSWORD
2016-10-05 19:44:08 +02:00
is_public=$YNH_APP_ARG_IS_PUBLIC
2018-02-18 14:38:26 +01:00
language=$YNH_APP_ARG_LANGUAGE
2020-06-12 01:55:21 +02:00
title=$YNH_APP_ARG_TITLE
2021-11-11 23:14:58 +01:00
core_version=$(ynh_app_upstream_version)
2016-10-05 19:44:08 +02:00
2020-06-12 01:55:21 +02:00
admin_mail=$(ynh_user_get_info --username=$admin --key=mail)
2016-10-05 19:44:08 +02:00
2020-06-12 01:55:21 +02:00
app=$YNH_APP_INSTANCE_NAME
2020-06-12 01:55:21 +02:00
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
ynh_script_progression --message="Validating installation parameters..."
2020-06-12 01:55:21 +02:00
final_path=/var/www/$app
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
# Register (book) web path
2020-06-12 01:55:21 +02:00
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
2020-05-17 14:56:21 +02:00
2020-06-12 01:55:21 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
2020-06-12 01:55:21 +02:00
#=================================================
ynh_script_progression --message="Storing installation settings..."
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=language --value="$language"
ynh_app_setting_set --app=$app --key=project_version --value="$project_version"
ynh_app_setting_set --app=$app --key=core_version --value="$core_version"
ynh_app_setting_set --app=$app --key=ldap_version --value="$ldap_version"
2019-08-24 12:54:18 +02:00
#=================================================
# STANDARD MODIFICATIONS
2020-04-06 10:54:13 +02:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2021-09-21 23:27:14 +02:00
ynh_script_progression --message="Installing dependencies..." --weight=2
2019-08-24 12:54:18 +02:00
2020-06-12 01:55:21 +02:00
ynh_install_app_dependencies $pkg_dependencies
2019-08-24 12:54:18 +02:00
2021-05-15 18:39:31 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Configuring system user..." --weight=1
# Create a system user
ynh_system_user_create --username=$app --home_dir=$final_path
#=================================================
# CREATE A MYSQL DATABASE
#=================================================
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Creating a MySQL database..."
2020-06-12 01:55:21 +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
ynh_app_setting_set --app=$app --key=db_pwd --value=$db_pwd
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-12-05 12:40:28 +01:00
ynh_script_progression --message="Setting up source files..." --weight=3
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"
2021-05-15 18:39:31 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-05-15 18:39:31 +02:00
ynh_script_progression --message="Configuring NGINX web server..."
2021-05-15 18:39:31 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2021-05-15 18:39:31 +02:00
ynh_script_progression --message="Configuring PHP-FPM..."
2021-05-15 18:39:31 +02:00
# Create a dedicated PHP-FPM config
2020-06-12 01:55:21 +02:00
ynh_add_fpm_config --usage=low --footprint=low --package="$extra_php_dependencies"
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
#=================================================
2020-06-12 01:55:21 +02:00
# SPECIFIC SETUP
#=================================================
2020-06-12 16:47:52 +02:00
# ADD SWAP
2020-06-12 01:55:21 +02:00
#=================================================
2020-06-12 16:47:52 +02:00
ynh_print_info --message="Adding swap..."
2020-06-12 16:47:52 +02:00
ynh_add_swap --size=$swap_needed
2020-06-12 01:55:21 +02:00
#=================================================
# INSTALL COMPOSER DEPENDENCIES
#=================================================
2020-12-05 12:40:28 +01:00
ynh_script_progression --message="Installing composer dependencies..." --weight=5
2021-04-29 00:20:51 +02:00
ynh_exec_warn_less ynh_install_composer --phpversion="$phpversion" --workdir="$final_path"
2020-05-17 14:56:21 +02:00
# Set Flarum version
2021-11-08 14:14:04 +01:00
ynh_exec_warn_less ynh_composer_exec --phpversion=$phpversion --workdir=$final_path --commands="require flarum/core:$core_version --prefer-lowest --no-update"
2021-04-29 00:20:51 +02:00
# Require LDAP extension
2021-11-08 14:14:04 +01:00
ynh_exec_warn_less ynh_composer_exec --phpversion=$phpversion --workdir=$final_path --commands="require tituspijean/flarum-ext-auth-ldap:$ldap_version --no-update"
2020-05-17 14:56:21 +02:00
# Update and download dependencies
2021-11-08 14:14:04 +01:00
ynh_exec_warn_less ynh_composer_exec --phpversion=$phpversion --workdir=$final_path --commands="update"
2021-04-29 00:20:51 +02:00
#=================================================
# FLARUM POST-INSTALL
#=================================================
ynh_script_progression --message="Configuring Flarum..." --weight=2
2021-03-19 00:00:09 +01:00
# Copy and populate configuration.yml to working directory
ynh_add_config --template="../conf/configuration.yml" --destination="$final_path/configuration.yml"
2020-06-12 01:55:21 +02:00
2018-08-30 20:35:01 +02:00
# Execute post-installation
pushd $final_path
2021-05-15 18:39:31 +02:00
ynh_exec_as $app php$phpversion -d $final_path -d memory_limit=-1 flarum install -f configuration.yml
2019-08-24 12:54:18 +02:00
# Delete configuration.yml as it contains sensitive data
2021-03-19 08:43:37 +01:00
ynh_secure_remove --file="$final_path/configuration.yml"
2018-08-30 20:35:01 +02:00
popd
# Email setup
ynh_add_config --template="../conf/mail.sql.template" --destination="../conf/mail.sql"
2021-04-29 00:44:54 +02:00
ynh_mysql_connect_as --user=$app --password="$db_pwd" --database=$db_name < ../conf/mail.sql
2021-04-29 00:20:51 +02:00
# Enable and set up the LDAP auth extension
ynh_script_progression --message="Enabling and configuring LDAP extension..." --weight=2
activate_flarum_extension $db_name "tituspijean-auth-ldap"
ynh_add_config --template="../conf/ldap.sql.template" --destination="../conf/ldap.sql"
2021-04-29 00:44:54 +02:00
ynh_mysql_connect_as --user=$app --password="$db_pwd" --database=$db_name < ../conf/ldap.sql
2018-08-30 20:35:01 +02:00
# Install, activate and set language extensions
case $language in
fr)
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Installing French extension..." --weight=2
ynh_exec_warn_less ynh_composer_exec --phpversion=$phpversion --workdir=$final_path --commands="require qiaeru/lang-french:*"
2020-06-25 22:05:41 +02:00
activate_flarum_extension $db_name "qiaeru-lang-french"
2018-08-30 20:35:01 +02:00
sql_command="UPDATE \`settings\` SET \`value\` = 'fr' WHERE \`settings\`.\`key\` = 'default_locale'"
2020-06-12 01:55:21 +02:00
ynh_mysql_execute_as_root --sql="$sql_command" --database=$db_name
2018-08-30 20:35:01 +02:00
;;
de)
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Installing German extension..." --weight=2
ynh_exec_warn_less ynh_composer_exec --phpversion=$phpversion --workdir=$final_path --commands="require kakifrucht/flarum-de:*"
activate_flarum_extension $db_name "kakifrucht-de"
2018-08-30 20:35:01 +02:00
sql_command="UPDATE \`settings\` SET \`value\` = 'de' WHERE \`settings\`.\`key\` = 'default_locale'"
2020-06-12 01:55:21 +02:00
ynh_mysql_execute_as_root --sql="$sql_command" --database=$db_name
2018-08-30 20:35:01 +02:00
;;
2018-09-11 12:11:39 +02:00
esac
2018-08-30 20:35:01 +02:00
# Set files and directories permissions
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2020-06-12 01:55:21 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
ynh_script_progression --message="Configuring log rotation..."
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
#=================================================
# SETUP SSOWAT
#=================================================
2021-05-15 18:39:31 +02:00
ynh_script_progression --message="Configuring permissions..." --weight=1
2020-06-12 01:55:21 +02:00
# Make app public if necessary
if [ $is_public -eq 1 ]
then
# Everyone can access the app.
# The "main" permission is automatically created before the install script.
2021-05-15 18:39:31 +02:00
ynh_permission_update --permission="main" --add="visitors"
2020-06-12 01:55:21 +02:00
fi
#=================================================
# RELOAD NGINX
#=================================================
2021-05-15 18:39:31 +02:00
ynh_script_progression --message="Reloading NGINX web server..."
2020-06-12 01:55:21 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Installation of $app completed"