2016-10-05 19:44:08 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-02-12 21:53:49 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2018-02-12 16:07:11 +01:00
|
|
|
source _common.sh
|
2020-05-17 14:56:21 +02:00
|
|
|
source experimental_helpers/ynh_add_swap
|
2020-04-21 00:00:02 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2017-02-22 15:47:46 +01:00
|
|
|
|
2020-06-12 01:55:21 +02:00
|
|
|
#=================================================
|
2018-02-12 21:53:49 +01:00
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
2020-06-12 01:55:21 +02:00
|
|
|
#=================================================
|
2018-02-12 16:07:11 +01:00
|
|
|
|
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
|
|
|
#=================================================
|
2018-02-12 16:07:11 +01:00
|
|
|
# STORE SETTINGS FROM MANIFEST
|
2020-06-12 01:55:21 +02:00
|
|
|
#=================================================
|
2021-11-12 09:33:47 +01:00
|
|
|
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"
|
2018-02-12 16:07:11 +01:00
|
|
|
|
2019-08-24 12:54:18 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
2020-04-06 10:54:13 +02:00
|
|
|
#=================================================
|
2018-02-12 16:07:11 +01:00
|
|
|
|
2020-04-19 20:01:48 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2020-12-05 12:40:28 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=3
|
2020-04-19 20:01:48 +02:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-09-23 22:36:31 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --source_id="flarum"
|
2020-04-19 20:01:48 +02:00
|
|
|
|
2023-02-19 18:59:53 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-05-15 18:39:31 +02:00
|
|
|
|
2018-02-12 16:07:11 +01:00
|
|
|
#=================================================
|
2023-09-14 15:23:23 +02:00
|
|
|
# SYSTEM CONFIGURATION
|
2018-02-12 16:07:11 +01:00
|
|
|
#=================================================
|
2023-09-14 15:23:23 +02:00
|
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
2018-02-12 16:07:11 +01:00
|
|
|
|
2021-05-15 18:39:31 +02:00
|
|
|
# Create a dedicated PHP-FPM config
|
2023-09-14 15:23:23 +02:00
|
|
|
ynh_add_fpm_config
|
2022-09-13 18:08:13 +02:00
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2023-09-14 15:23:23 +02:00
|
|
|
# Use logrotate to manage application logfile(s)
|
|
|
|
ynh_use_logrotate
|
|
|
|
|
2020-04-19 20:01:48 +02:00
|
|
|
#=================================================
|
2020-06-12 01:55:21 +02:00
|
|
|
# SPECIFIC SETUP
|
2020-04-19 20:01:48 +02:00
|
|
|
#=================================================
|
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-04-19 20:01:48 +02:00
|
|
|
|
2022-08-05 11:08:38 +02:00
|
|
|
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 0 ]; then
|
2022-08-05 10:50:45 +02:00
|
|
|
ynh_add_swap --size=$swap_needed
|
|
|
|
fi
|
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
|
2020-04-19 20:01:48 +02:00
|
|
|
|
2023-02-19 18:59:53 +01:00
|
|
|
ynh_exec_warn_less ynh_install_composer --phpversion="$phpversion" --workdir="$install_dir"
|
2020-04-19 20:01:48 +02:00
|
|
|
|
2020-05-17 14:56:21 +02:00
|
|
|
# Set Flarum version
|
2023-02-19 18:59:53 +01:00
|
|
|
ynh_exec_warn_less ynh_composer_exec --phpversion=$phpversion --workdir=$install_dir --commands="require flarum/core:$core_version --prefer-lowest --no-update"
|
2020-04-21 00:00:02 +02:00
|
|
|
|
2021-04-29 00:20:51 +02:00
|
|
|
# Require LDAP extension
|
2023-02-19 18:59:53 +01:00
|
|
|
ynh_exec_warn_less ynh_composer_exec --phpversion=$phpversion --workdir=$install_dir --commands="require tituspijean/flarum-ext-auth-ldap:$ldap_version --no-update"
|
2020-04-21 00:00:02 +02:00
|
|
|
|
2020-05-17 14:56:21 +02:00
|
|
|
# Update and download dependencies
|
2023-02-19 18:59:53 +01:00
|
|
|
ynh_exec_warn_less ynh_composer_exec --phpversion=$phpversion --workdir=$install_dir --commands="update"
|
2021-04-29 00:20:51 +02:00
|
|
|
|
2018-02-12 16:07:11 +01:00
|
|
|
#=================================================
|
|
|
|
# FLARUM POST-INSTALL
|
|
|
|
#=================================================
|
2020-06-12 03:54:05 +02:00
|
|
|
ynh_script_progression --message="Configuring Flarum..." --weight=2
|
2017-02-21 21:11:23 +01:00
|
|
|
|
2021-03-19 00:00:09 +01:00
|
|
|
# Copy and populate configuration.yml to working directory
|
2023-02-19 18:59:53 +01:00
|
|
|
ynh_add_config --template="../conf/configuration.yml" --destination="$install_dir/configuration.yml"
|
2020-06-12 01:55:21 +02:00
|
|
|
|
2018-08-30 20:35:01 +02:00
|
|
|
# Execute post-installation
|
2023-02-19 18:59:53 +01:00
|
|
|
pushd $install_dir
|
|
|
|
ynh_exec_as $app php$phpversion -d $install_dir -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
|
2023-02-19 18:59:53 +01:00
|
|
|
ynh_secure_remove --file="$install_dir/configuration.yml"
|
2018-08-30 20:35:01 +02:00
|
|
|
popd
|
|
|
|
|
|
|
|
# Email setup
|
2021-05-05 00:03:43 +02:00
|
|
|
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"
|
2021-05-05 00:03:43 +02:00
|
|
|
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
|
2023-02-19 18:59:53 +01:00
|
|
|
ynh_exec_warn_less ynh_composer_exec --phpversion=$phpversion --workdir=$install_dir --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
|
2023-02-19 18:59:53 +01:00
|
|
|
ynh_exec_warn_less ynh_composer_exec --phpversion=$phpversion --workdir=$install_dir --commands="require kakifrucht/flarum-de:*"
|
2021-06-04 18:32:45 +02:00
|
|
|
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
|
|
|
|
2021-11-12 23:49:39 +01:00
|
|
|
# Set files and directories permissions
|
2023-02-19 18:59:53 +01:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-11-12 23:49:39 +01:00
|
|
|
|
2020-06-12 01:55:21 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Installation of $app completed"
|