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-03-14 21:22:54 +01:00
|
|
|
source experimental_helpers/ynh_exec_as
|
2020-06-12 01:55:21 +02:00
|
|
|
source experimental_helpers/ynh_composer__2
|
2020-04-21 00:00:02 +02:00
|
|
|
source experimental_helpers/ynh_send_readme_to_admin
|
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
|
|
|
|
2018-02-12 21:53:49 +01:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
2020-04-19 20:01:48 +02:00
|
|
|
ynh_clean_setup () {
|
2020-06-12 05:27:13 +02:00
|
|
|
true
|
2020-04-19 20:01:48 +02:00
|
|
|
}
|
2018-02-12 16:07:11 +01:00
|
|
|
# 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
|
|
|
#=================================================
|
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
|
|
|
|
2016-10-05 19:44:08 +02:00
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
2018-02-12 16:07:11 +01:00
|
|
|
path_url=$YNH_APP_ARG_PATH
|
2016-10-05 19:44:08 +02:00
|
|
|
admin=$YNH_APP_ARG_ADMIN
|
|
|
|
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
|
2016-10-05 19:44:08 +02:00
|
|
|
|
2020-06-12 01:55:21 +02:00
|
|
|
admin_pwd=$(ynh_string_random --length=8)
|
|
|
|
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
|
2017-02-22 15:47:46 +01:00
|
|
|
|
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..."
|
2017-02-22 15:47:46 +01:00
|
|
|
|
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"
|
2017-02-22 15:47:46 +01:00
|
|
|
|
2018-02-12 16:07:11 +01:00
|
|
|
# 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
|
|
|
#=================================================
|
2018-02-12 16:07:11 +01:00
|
|
|
# STORE SETTINGS FROM MANIFEST
|
2020-06-12 01:55:21 +02:00
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Storing installation settings..."
|
2017-02-22 15:47:46 +01:00
|
|
|
|
2020-06-12 01:55:21 +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=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=ssowat_version --value=$ssowat_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
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2020-06-12 01:55:21 +02:00
|
|
|
ynh_script_progression --message="Installing dependencies..." --weight=1
|
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
|
|
|
|
2018-02-12 16:07:11 +01:00
|
|
|
#=================================================
|
|
|
|
# CREATE A MYSQL DATABASE
|
|
|
|
#=================================================
|
2020-06-12 01:55:21 +02:00
|
|
|
ynh_script_progression --message="Creating a MySQL database..."
|
2018-02-12 16:07:11 +01:00
|
|
|
|
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
|
2018-02-12 16:07:11 +01:00
|
|
|
|
2020-04-19 20:01:48 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2020-05-17 14:56:21 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=7
|
2020-04-19 20:01:48 +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"
|
|
|
|
|
2018-02-12 16:07:11 +01:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2018-02-12 21:53:49 +01:00
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
2018-02-12 16:07:11 +01:00
|
|
|
|
2020-06-12 01:55:21 +02:00
|
|
|
#=================================================
|
2020-04-19 20:01:48 +02:00
|
|
|
# CREATE DEDICATED USER
|
2020-06-12 01:55:21 +02:00
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring system user..." --weight=1
|
2020-04-19 20:01:48 +02:00
|
|
|
|
|
|
|
# Create a system user
|
2020-06-12 01:55:21 +02:00
|
|
|
ynh_system_user_create --username=$app --home_dir=$final_path
|
|
|
|
# Adding it to www-data group
|
|
|
|
usermod -a -G www-data $app
|
2020-04-19 20:01:48 +02:00
|
|
|
|
2018-02-12 16:07:11 +01:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-06-12 01:55:21 +02:00
|
|
|
ynh_script_progression --message="Configuring php-fpm..."
|
2018-02-12 16:07:11 +01:00
|
|
|
|
2018-02-12 21:53:49 +01: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)
|
2018-02-12 21:53:49 +01:00
|
|
|
|
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
|
|
|
|
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
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Installing composer dependencies..."
|
2020-04-19 20:01:48 +02:00
|
|
|
|
2020-06-25 22:39:45 +02:00
|
|
|
ynh_exec_warn_less ynh_install_composer --user=$app --phpversion="$phpversion" --workdir="$final_path"
|
2020-04-19 20:01:48 +02:00
|
|
|
|
2020-05-17 14:56:21 +02:00
|
|
|
# Set Flarum version
|
2020-06-25 22:39:45 +02:00
|
|
|
ynh_composer_exec --user=$app --phpversion=$phpversion --workdir=$final_path --commands="require flarum/core:$core_version --prefer-lowest --no-update"
|
2020-04-21 00:00:02 +02:00
|
|
|
|
2020-05-17 14:56:21 +02:00
|
|
|
# Require SSOwat extension
|
2020-06-25 22:39:45 +02:00
|
|
|
ynh_composer_exec --user=$app --phpversion=$phpversion --workdir=$final_path --commands="require tituspijean/flarum-ext-auth-ssowat:$ssowat_version --no-update"
|
2020-04-21 00:00:02 +02:00
|
|
|
|
2020-05-17 14:56:21 +02:00
|
|
|
# Update and download dependencies
|
2020-06-25 22:39:45 +02:00
|
|
|
ynh_composer_exec --user=$app --phpversion=$phpversion --workdir=$final_path --commands="update"
|
2020-04-21 00:00:02 +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
|
|
|
|
2018-08-30 20:35:01 +02:00
|
|
|
# Copy the configuration.yml to working directory
|
|
|
|
finalflarumconf="$final_path/configuration.yml"
|
|
|
|
cp ../conf/configuration.yml $finalflarumconf
|
2020-06-12 01:55:21 +02:00
|
|
|
|
2018-08-30 20:35:01 +02:00
|
|
|
# Populate configuration.yml
|
2020-06-12 01:55:21 +02:00
|
|
|
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="$finalflarumconf"
|
|
|
|
ynh_replace_string --match_string="/__PATH__" --replace_string="$path_url" --target_file="$finalflarumconf"
|
|
|
|
ynh_replace_string --match_string="__USER__" --replace_string="$app" --target_file="$finalflarumconf"
|
|
|
|
ynh_replace_string --match_string="__DB_PWD__" --replace_string="$db_pwd" --target_file="$finalflarumconf"
|
|
|
|
ynh_replace_string --match_string="__ADMIN__" --replace_string="$admin" --target_file="$finalflarumconf"
|
|
|
|
ynh_replace_string --match_string="__ADMIN_PWD__" --replace_string="$admin_pwd" --target_file="$finalflarumconf"
|
|
|
|
ynh_replace_string --match_string="__ADMIN_EML__" --replace_string="$admin_mail" --target_file="$finalflarumconf"
|
|
|
|
ynh_replace_string --match_string="__FORUM_TITLE__" --replace_string="$title" --target_file="$finalflarumconf"
|
|
|
|
|
2018-08-30 20:35:01 +02:00
|
|
|
# Execute post-installation
|
|
|
|
pushd $final_path
|
2020-06-12 01:55:21 +02:00
|
|
|
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
|
|
|
|
ynh_secure_remove $finalflarumconf
|
2018-08-30 20:35:01 +02:00
|
|
|
popd
|
|
|
|
|
|
|
|
# Email setup
|
|
|
|
sql_command="REPLACE INTO \`settings\` (\`key\`, \`value\`) VALUES
|
|
|
|
('mail_driver', 'mail'),
|
|
|
|
('mail_encryption', 'ssl'),
|
|
|
|
('mail_from', '$app@$domain'),
|
|
|
|
('mail_host', 'localhost'),
|
|
|
|
('mail_port', '587');"
|
2020-06-12 01:55:21 +02:00
|
|
|
ynh_mysql_execute_as_root --sql="$sql_command" --database=$db_name
|
2019-08-24 12:54:18 +02:00
|
|
|
|
2020-05-17 14:56:21 +02:00
|
|
|
# Enable and set up the SSOwat auth extension
|
2020-06-12 01:55:21 +02:00
|
|
|
ynh_script_progression --message="Enabling and configuring SSOwat extension..." --weight=2
|
2020-05-17 14:56:21 +02:00
|
|
|
activate_flarum_extension $db_name "tituspijean-auth-ssowat"
|
2018-08-30 20:35:01 +02:00
|
|
|
ssowatdomain=$(</etc/yunohost/current_host)
|
|
|
|
sql_command="INSERT INTO \`settings\` (\`key\`, \`value\`) VALUES ('tituspijean-auth-ssowat.domain', '$ssowatdomain'), ('tituspijean-auth-ssowat.onlyUse', '0');"
|
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
|
|
|
|
|
|
|
# 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
|
2020-06-25 22:39:45 +02:00
|
|
|
ynh_composer_exec --user=$app --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
|
2020-06-25 22:39:45 +02:00
|
|
|
ynh_composer_exec --user=$app --phpversion=$phpversion --workdir=$final_path --commands="require cbmainz/flarum-de"
|
2020-05-17 14:56:21 +02:00
|
|
|
activate_flarum_extension $db_name "cbmainz-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
|
|
|
|
2020-06-12 01:55:21 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
2020-05-17 14:56:21 +02:00
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
2020-06-12 01:55:21 +02:00
|
|
|
ynh_script_progression --message="Securing files and directories..."
|
2020-05-17 14:56:21 +02:00
|
|
|
|
2020-06-12 01:55:21 +02:00
|
|
|
# Set permissions to app files
|
2020-05-17 14:56:21 +02:00
|
|
|
chown -R $app:www-data $final_path
|
|
|
|
|
2020-06-12 01:55:21 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring log rotation..."
|
|
|
|
|
|
|
|
# Use logrotate to manage application logfile(s)
|
|
|
|
ynh_use_logrotate
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring SSOwat..." --weight=1
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
ynh_permission_update --permission "main" --add "visitors"
|
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Reloading nginx web server..."
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
2019-08-24 12:54:18 +02:00
|
|
|
#=================================================
|
|
|
|
# SEND CREDENTIALS TO ADMIN
|
|
|
|
#=================================================
|
2020-06-12 01:55:21 +02:00
|
|
|
ynh_script_progression --message="Sending generated admin credentials by email, but you can log in with your YunoHost credentials!" --weight=1
|
2019-08-24 12:54:18 +02:00
|
|
|
|
2018-08-30 20:35:01 +02:00
|
|
|
app_message="User : $admin, password : $admin_pwd
|
|
|
|
Change your password!
|
|
|
|
Your forum is accessible at https://$domain$path_url"
|
2020-06-25 22:04:20 +02:00
|
|
|
ynh_send_readme_to_admin --app_message=$app_message --recipients=$admin
|
|
|
|
ynh_print_warn --message=$app_message
|
2020-06-12 01:55:21 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Installation of $app completed"
|