2015-10-21 13:03:49 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2015-10-21 13:03:49 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
source _common.sh
|
2017-02-04 19:20:51 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_clean_setup () {
|
|
|
|
ynh_clean_check_starting
|
|
|
|
}
|
2017-10-10 13:00:33 +02:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
2020-02-08 23:33:19 +01:00
|
|
|
path_url=$YNH_APP_ARG_PATH
|
2018-01-29 08:19:04 +01:00
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
2021-01-11 23:46:48 +01:00
|
|
|
admin=$YNH_APP_ARG_ADMIN
|
2021-01-28 17:02:43 +01:00
|
|
|
email=$(ynh_user_get_info --username=$admin --key=mail)
|
2021-01-11 23:46:48 +01:00
|
|
|
password=$YNH_APP_ARG_PASSWORD
|
|
|
|
language=$YNH_APP_ARG_LANGUAGE
|
2018-02-16 07:25:18 +01:00
|
|
|
team_display_name=$YNH_APP_ARG_TEAM_DISPLAY_NAME
|
2021-01-12 10:33:02 +01:00
|
|
|
architecture=$(ynh_detect_arch)
|
2021-01-13 11:31:12 +01:00
|
|
|
version=$YNH_APP_ARG_VERSION
|
2021-01-11 23:46:48 +01:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2017-09-12 19:14:18 +02:00
|
|
|
|
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Validating installation parameters..." --weight=1
|
2016-04-17 18:35:42 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
final_path=/var/www/$app
|
|
|
|
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
|
2015-10-21 16:24:51 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
# Register (book) web path
|
|
|
|
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
|
2015-10-21 16:24:51 +02:00
|
|
|
|
2018-01-29 13:40:03 +01:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# STORE SETTINGS FROM MANIFEST
|
2018-01-29 13:40:03 +01:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Storing installation settings..." --weight=6
|
2018-01-29 13:40:03 +01:00
|
|
|
|
2021-01-11 23:46:48 +01: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=password --value=$password
|
|
|
|
ynh_app_setting_set --app=$app --key=language --value=$language
|
2021-01-13 11:31:12 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=version --value=$version
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=team_display_name --value=$team_display_name
|
2015-10-21 13:03:49 +02:00
|
|
|
|
2018-01-29 13:40:03 +01:00
|
|
|
#=================================================
|
|
|
|
# FIND AN AVAILABLE PORT
|
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Finding an available port..." --weight=3
|
2018-01-29 13:40:03 +01:00
|
|
|
|
|
|
|
# Find an available port
|
2021-01-11 23:46:48 +01:00
|
|
|
port=$(ynh_find_port --port=8065)
|
|
|
|
ynh_app_setting_set --app=$app --key=port --value=$port
|
2018-01-29 13:40:03 +01:00
|
|
|
|
2021-09-16 11:39:20 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring system user..." --weight=3
|
|
|
|
|
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
|
|
|
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# CREATE A MYSQL DATABASE
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Creating a MySQL database..." --weight=10
|
2017-09-12 19:14:18 +02:00
|
|
|
|
2021-01-11 23:46:48 +01: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
|
2017-09-12 19:14:18 +02:00
|
|
|
|
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=3
|
2017-09-12 19:14:18 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2021-01-13 11:31:12 +01:00
|
|
|
|
|
|
|
if [ "$version" = "Enterprise" ]; then
|
|
|
|
# Get Enterprise binary path
|
|
|
|
ynh_setup_source --dest_dir="$final_path" --source_id="enterprise"
|
|
|
|
elif [ "$version" = "Team" ]; then
|
|
|
|
# Get Team binary path
|
|
|
|
ynh_setup_source --dest_dir="$final_path" --source_id="$architecture"
|
|
|
|
fi
|
2016-05-23 07:41:12 +02:00
|
|
|
|
2021-09-16 11:39:20 +02:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:www-data "$final_path"
|
|
|
|
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# CREATE DIRECTORY FOR DATA
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Creating the data directory..." --weight=1
|
2017-09-12 19:14:18 +02:00
|
|
|
|
2021-09-16 11:39:20 +02:00
|
|
|
data_path=/home/yunohost.app/$app
|
|
|
|
ynh_app_setting_set --app=$app --key=data_path --value=$data_path
|
|
|
|
|
|
|
|
mkdir -p $data_path
|
|
|
|
|
|
|
|
chmod 750 "$data_path"
|
|
|
|
chmod -R o-rwx "$data_path"
|
|
|
|
chown -R $app:www-data "$data_path"
|
2016-04-17 18:35:42 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
#=================================================
|
|
|
|
# HANDLE LOG FILES AND LOGROTATE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring log rotation..." --weight=1
|
|
|
|
|
|
|
|
# Create log directory
|
|
|
|
mkdir -p /var/log/$app
|
|
|
|
#touch /var/log/$app/$app.log
|
|
|
|
logs_path="/var/log/$app"
|
|
|
|
chown $app -R $logs_path
|
|
|
|
|
|
|
|
# Setup logrotate
|
|
|
|
ynh_use_logrotate
|
2015-10-31 18:00:13 +01:00
|
|
|
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
|
|
|
# EDIT MATTERMOST CONFIG
|
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# MODIFY A CONFIG FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Modifying a config file..." --weight=3
|
2017-09-12 19:14:18 +02:00
|
|
|
|
2021-03-17 20:59:57 +01:00
|
|
|
smtp_user_pwd=$(ynh_string_random --length=24)
|
|
|
|
url=https://$domain$path_url
|
2021-11-01 11:24:00 +01:00
|
|
|
local_socket_path="/var/run/${app}/mattermost_local.socket"
|
2021-01-11 23:46:48 +01:00
|
|
|
|
2021-03-17 20:59:57 +01:00
|
|
|
ynh_add_config --template="../conf/config.json" --destination="$final_path/config/config.json"
|
2015-10-21 14:46:47 +02:00
|
|
|
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=2
|
2017-09-12 19:14:18 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
# Create a dedicated NGINX config
|
2017-10-10 14:26:45 +02:00
|
|
|
ynh_add_nginx_config
|
2015-10-21 13:03:49 +02:00
|
|
|
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# SETUP SYSTEMD
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Configuring a systemd service..." --weight=2
|
2017-09-12 19:14:18 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
# Create a dedicated systemd config
|
2018-02-16 05:13:55 +01:00
|
|
|
ynh_add_systemd_config
|
2015-10-21 13:03:49 +02:00
|
|
|
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2017-09-12 19:14:18 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
yunohost service add $app --description="Collaboration platform built for developers" --log="/var/log/$app/$app.log"
|
2015-10-21 14:33:49 +02:00
|
|
|
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# START SYSTEMD SERVICE
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=2
|
2017-09-12 19:14:18 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
# Start a systemd service
|
2021-03-17 20:59:57 +01:00
|
|
|
ynh_systemd_action --service_name=$app --action=start --log_path=systemd --line_match="Started Mattermost"
|
2015-10-21 13:03:49 +02:00
|
|
|
|
2021-10-30 14:32:53 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE ADMIN AND FIRST TEAM
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Create the first administrator and team..." --weight=1
|
|
|
|
|
|
|
|
team_name=$(echo "$team_display_name" | iconv -f utf8 -t ascii//TRANSLIT//IGNORE | sed -e 's/[^[:alnum:]]/-/g' | tr -s '-' | tr A-Z a-z)
|
2021-11-05 11:03:13 +01:00
|
|
|
bin_mmctl="$final_path/bin/mmctl"
|
2021-10-30 14:32:53 +02:00
|
|
|
|
2021-11-05 16:43:05 +01:00
|
|
|
# mmctl is not packaged with ARM versions yet
|
|
|
|
if [[ -f $"bin_mmctl" ]]; then
|
|
|
|
export MMCTL_LOCAL=true
|
|
|
|
export MMCTL_LOCAL_SOCKET_PATH="$local_socket_path"
|
|
|
|
|
|
|
|
ynh_exec_warn_less sudo --preserve-env -u $app "$bin_mmctl" user create --username "$admin" --email "$email" --password "$password" --locale "$language" --email-verified --system-admin
|
|
|
|
ynh_exec_warn_less sudo --preserve-env -u $app "$bin_mmctl" team create --name "$team_name" --display_name "$team_display_name" --email "$email"
|
|
|
|
ynh_exec_warn_less sudo --preserve-env -u $app "$bin_mmctl" team users add "$team_name" "$admin"
|
|
|
|
fi
|
2021-10-30 14:32:53 +02:00
|
|
|
|
2021-11-05 16:43:05 +01:00
|
|
|
# Disable mmctl passwordless access
|
2021-10-30 14:32:53 +02:00
|
|
|
ynh_replace_string '"EnableLocalMode": true' '"EnableLocalMode": false' "$final_path/config/config.json"
|
|
|
|
ynh_systemd_action --service_name=$app --action=restart --log_path=systemd --line_match="Started Mattermost"
|
|
|
|
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# SETUP SSOWAT
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-28 17:04:45 +01:00
|
|
|
ynh_script_progression --message="Configuring permissions..." --weight=1
|
2017-10-10 14:26:45 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
if [ $is_public -eq 1 ]
|
|
|
|
then
|
2021-01-28 17:04:45 +01:00
|
|
|
ynh_permission_update --permission="main" --add="visitors"
|
2021-01-11 23:46:48 +01:00
|
|
|
fi
|
2018-02-16 07:25:18 +01:00
|
|
|
|
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# RELOAD NGINX
|
2018-02-16 07:25:18 +01:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=2
|
2018-02-16 07:25:18 +01:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2018-02-16 07:25:18 +01:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2018-02-16 07:25:18 +01:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|