mirror of
https://github.com/YunoHost-Apps/flarum_ynh.git
synced 2024-09-03 18:36:24 +02:00
8ba8b17ac9
* retrieving sources instead of create-project * exec_as in composer helpers * reorder install and upgrade steps
273 lines
10 KiB
Bash
273 lines
10 KiB
Bash
#!/bin/bash
|
||
|
||
#=================================================
|
||
# GENERIC START
|
||
#=================================================
|
||
# IMPORT GENERIC HELPERS
|
||
#=================================================
|
||
|
||
source _common.sh
|
||
source /usr/share/yunohost/helpers
|
||
source experimental_helpers/ynh_add_extra_apt_repos__3
|
||
source experimental_helpers/ynh_install_php__3
|
||
source experimental_helpers/ynh_exec_as
|
||
source experimental_helpers/ynh_composer__2
|
||
source experimental_helpers/ynh_send_readme_to_admin__2
|
||
|
||
#=================================================
|
||
# MANAGE SCRIPT FAILURE
|
||
#=================================================
|
||
|
||
ynh_clean_setup () {
|
||
### Remove this function if there's nothing to clean before calling the remove script.
|
||
true
|
||
}
|
||
# Exit if an error occurs during the execution of the script
|
||
ynh_abort_if_errors
|
||
|
||
#===================================================
|
||
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
||
#===================================================
|
||
|
||
# This is a multi-instance app, meaning it can be installed several times independently
|
||
# The id of the app as stated in the manifest is available as $YNH_APP_ID
|
||
# The instance number is available as $YNH_APP_INSTANCE_NUMBER (equals "1", "2", ...)
|
||
# The app instance name is available as $YNH_APP_INSTANCE_NAME
|
||
# - the first time the app is installed, YNH_APP_INSTANCE_NAME = ynhexample
|
||
# - the second time the app is installed, YNH_APP_INSTANCE_NAME = ynhexample__2
|
||
# - ynhexample__{N} for the subsequent installations, with N=3,4, ...
|
||
# The app instance name is probably what you are interested the most, since this is
|
||
# guaranteed to be unique. This is a good unique identifier to define installation path,
|
||
# db names, ...
|
||
app=$YNH_APP_INSTANCE_NAME
|
||
|
||
# Retrieve arguments
|
||
|
||
domain=$YNH_APP_ARG_DOMAIN
|
||
path_url=$YNH_APP_ARG_PATH
|
||
admin=$YNH_APP_ARG_ADMIN
|
||
title=$YNH_APP_ARG_TITLE
|
||
is_public=$YNH_APP_ARG_IS_PUBLIC
|
||
language=$YNH_APP_ARG_LANGUAGE
|
||
bazaar_extension=$YNH_APP_ARG_BAZAAR_EXTENSION
|
||
|
||
#===================================================
|
||
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
||
#===================================================
|
||
|
||
final_path=/var/www/$app
|
||
test ! -e "$final_path" || ynh_die "This path already contains a folder"
|
||
|
||
# Normalize the url path syntax
|
||
path_url=$(ynh_normalize_url_path $path_url)
|
||
|
||
# Check web path availability
|
||
ynh_webpath_available $domain $path_url
|
||
|
||
# Register (book) web path
|
||
ynh_webpath_register $app $domain $path_url
|
||
|
||
#===================================================
|
||
# STORE SETTINGS FROM MANIFEST
|
||
#===================================================
|
||
|
||
# Save app settings
|
||
ynh_app_setting_set $app domain $domain
|
||
ynh_app_setting_set $app path $path_url
|
||
ynh_app_setting_set $app admin $admin
|
||
ynh_app_setting_set $app language $language
|
||
ynh_app_setting_set $app final_path $final_path
|
||
ynh_app_setting_set $app php_version $php_version
|
||
ynh_app_setting_set $app project_version $project_version
|
||
ynh_app_setting_set $app core_version $core_version
|
||
ynh_app_setting_set $app ssowat_version $ssowat_version
|
||
ynh_app_setting_set $app bazaar_extension $bazaar_extension
|
||
|
||
#=================================================
|
||
# STANDARD MODIFICATIONS
|
||
#=================================================
|
||
# INSTALL PHP
|
||
#=================================================
|
||
|
||
if [ "$(lsb_release --codename --short)" = "buster" ]; then
|
||
pkg_dependencies="$pkg_dependencies $extra_pkg_dependencies"
|
||
else
|
||
ynh_print_info --message="Installing php${php_version}..."
|
||
ynh_install_php --phpversion="${php_version}" --package="$extra_pkg_dependencies"
|
||
fi
|
||
|
||
#=================================================
|
||
# INSTALL DEPENDENCIES
|
||
#=================================================
|
||
ynh_print_info --message="Installing dependencies..."
|
||
|
||
ynh_install_app_dependencies "$pkg_dependencies"
|
||
|
||
#=================================================
|
||
# CREATE A MYSQL DATABASE
|
||
#=================================================
|
||
|
||
db_name=$(ynh_sanitize_dbid $app)
|
||
ynh_app_setting_set $app db_name $db_name
|
||
ynh_mysql_setup_db $db_name $db_name
|
||
ynh_app_setting_set "$app" db_pwd "$db_pwd"
|
||
|
||
#=================================================
|
||
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
||
#=================================================
|
||
ynh_script_progression --message="Setting up source files..." --time --weight=1
|
||
|
||
### `ynh_setup_source` is used to install an app from a zip or tar.gz file,
|
||
### downloaded from an upstream source, like a git repository.
|
||
### `ynh_setup_source` use the file conf/app.src
|
||
|
||
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"
|
||
|
||
#=================================================
|
||
# NGINX CONFIGURATION
|
||
#=================================================
|
||
|
||
# Bug in Nginx with locations and aliases (see http://stackoverflow.com/a/35102259 )
|
||
if [ $path_url = "/" ]; then
|
||
ynh_replace_string "__PATH_HACK__" "" "../conf/nginx.conf"
|
||
else
|
||
ynh_replace_string "__PATH_HACK__" "$path_url" "../conf/nginx.conf"
|
||
fi
|
||
|
||
# Create a dedicated nginx config
|
||
ynh_add_nginx_config
|
||
|
||
#===================================================
|
||
# CREATE DEDICATED USER
|
||
#===================================================
|
||
ynh_script_progression --message="Configuring system user..." --time --weight=1
|
||
|
||
# Create a system user
|
||
ynh_system_user_create $app $final_path
|
||
# Adding it to www-data group
|
||
usermod -a -G www-data $app
|
||
|
||
#=================================================
|
||
# PHP-FPM CONFIGURATION
|
||
#=================================================
|
||
|
||
# Create a dedicated php-fpm config
|
||
ynh_add_fpm_config $php_version
|
||
|
||
#=================================================
|
||
# COMPOSER INSTALLATION
|
||
#=================================================
|
||
ynh_script_progression --message="Installing Composer and Flarum..." --time --weight=1
|
||
|
||
# Setting user rights
|
||
chown -R $app:www-data $final_path
|
||
chmod -R 775 $final_path
|
||
|
||
# Install Composer and Flarum
|
||
ynh_install_composer --user=$app --phpversion=$php_version --workdir=$final_path
|
||
|
||
#=================================================
|
||
# SETUP LOGROTATE
|
||
#=================================================
|
||
|
||
# Use logrotate to manage app-specific logfile(s)
|
||
ynh_use_logrotate
|
||
|
||
#=================================================
|
||
# SETUP PERMISSIONS
|
||
#=================================================
|
||
ynh_script_progression --message="Configuring permissions..." --time --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
|
||
#=================================================
|
||
|
||
systemctl reload nginx
|
||
|
||
#=================================================
|
||
# FLARUM POST-INSTALL
|
||
#=================================================
|
||
ynh_script_progression --message="Configuring Flarum..." --time --weight=2
|
||
|
||
# Copy the configuration.yml to working directory
|
||
finalflarumconf="$final_path/configuration.yml"
|
||
cp ../conf/configuration.yml $finalflarumconf
|
||
chown $app:www-data $finalflarumconf
|
||
# Generate admin password and retrieve their email address
|
||
admin_pwd=$(ynh_string_random 8)
|
||
admin_mail=$(ynh_user_get_info $admin mail)
|
||
# Populate configuration.yml
|
||
ynh_replace_string "__DOMAIN__" "$domain" "$finalflarumconf"
|
||
ynh_replace_string "/__PATH__" "$path_url" "$finalflarumconf"
|
||
ynh_replace_string "__USER__" "$app" "$finalflarumconf"
|
||
ynh_replace_string "__DB_PWD__" "$db_pwd" "$finalflarumconf"
|
||
ynh_replace_string "__ADMIN__" "$admin" "$finalflarumconf"
|
||
ynh_replace_string "__ADMIN_PWD__" "$admin_pwd" "$finalflarumconf"
|
||
ynh_replace_string "__ADMIN_EML__" "$admin_mail" "$finalflarumconf"
|
||
ynh_replace_string "__FORUM_TITLE__" "$title" "$finalflarumconf"
|
||
# Execute post-installation
|
||
pushd $final_path
|
||
exec_as $app php$php_version -d $final_path -d memory_limit=-1 flarum install -f configuration.yml
|
||
# Delete configuration.yml as it contains sensitive data
|
||
ynh_secure_remove $finalflarumconf
|
||
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');"
|
||
ynh_mysql_execute_as_root "$sql_command" $db_name
|
||
|
||
# Install and activate the SSOwat auth extension
|
||
ynh_script_progression --message="Installing SSOwat extension..." --time --weight=2
|
||
install_and_activate_extension $app $php_version $final_path $db_name "tituspijean/flarum-ext-auth-ssowat:$ssowat_version" "tituspijean-auth-ssowat"
|
||
# Configure SSOwat auth extension
|
||
ssowatdomain=$(</etc/yunohost/current_host)
|
||
sql_command="INSERT INTO \`settings\` (\`key\`, \`value\`) VALUES ('tituspijean-auth-ssowat.domain', '$ssowatdomain'), ('tituspijean-auth-ssowat.onlyUse', '0');"
|
||
ynh_mysql_execute_as_root "$sql_command" $db_name
|
||
|
||
# Install, activate and set language extensions
|
||
case $language in
|
||
fr)
|
||
ynh_script_progression --message="Installing French extension..." --time --weight=2
|
||
install_and_activate_extension $app $php_version $final_path $db_name "milescellar/lang-french" "milescellar-lang-french"
|
||
sql_command="UPDATE \`settings\` SET \`value\` = 'fr' WHERE \`settings\`.\`key\` = 'default_locale'"
|
||
ynh_mysql_execute_as_root "$sql_command" $db_name
|
||
;;
|
||
de)
|
||
ynh_script_progression --message="Installing German extension..." --time --weight=2
|
||
install_and_activate_extension $app $php_version $final_path $db_name "cbmainz/flarum-de" "cbmainz-de"
|
||
sql_command="UPDATE \`settings\` SET \`value\` = 'de' WHERE \`settings\`.\`key\` = 'default_locale'"
|
||
ynh_mysql_execute_as_root "$sql_command" $db_name
|
||
;;
|
||
esac
|
||
|
||
if [ $bazaar_extension -eq 1 ]; then
|
||
ynh_script_progression --message="Installing Bazaar extension..." --time --weight=2
|
||
ynh_composer_exec --user=$app --phpversion=$php_version --workdir=$final_path \
|
||
--commands="require extiverse/bazaar --ansi"
|
||
fi
|
||
|
||
#=================================================
|
||
# SEND CREDENTIALS TO ADMIN
|
||
#=================================================
|
||
|
||
ynh_script_progression --message="Sending generated admin credentials by email, but you can log in with your YunoHost credentials!" --time --weight=1
|
||
app_message="User : $admin, password : $admin_pwd
|
||
Change your password!
|
||
Your forum is accessible at https://$domain$path_url"
|
||
ynh_send_readme_to_admin "$app_message" "$admin"
|
||
ynh_print_warn "$app_message"
|