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=is_public --value=$is_public
|
|
|
|
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
|
|
|
|
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
|
|
|
# CREATE DEDICATED USER
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_script_progression --message="Configuring system user..." --weight=3
|
2017-09-12 19:14:18 +02:00
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create --username=$app
|
2017-09-12 14:02:49 +02:00
|
|
|
|
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
|
|
|
|
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-01-11 23:46:48 +01:00
|
|
|
# Create datadir folder
|
|
|
|
mkdir -p "/home/yunohost.app/$app"
|
|
|
|
# Define app's data directory
|
|
|
|
data_path="/home/yunohost.app/$app"
|
|
|
|
# Give permission to the datadir
|
|
|
|
chown -R $app: "$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-01-11 23:46:48 +01:00
|
|
|
cp ../conf/config.json $final_path/config/config.json
|
|
|
|
|
|
|
|
# Main config File
|
|
|
|
ynh_replace_string --match_string="__URL__" --replace_string="https://$domain$path_url" --target_file="$final_path/config/config.json"
|
|
|
|
ynh_replace_string --match_string="__PORT__" --replace_string="127.0.0.1:$port" --target_file="$final_path/config/config.json"
|
2021-01-12 00:01:16 +01:00
|
|
|
ynh_replace_string --match_string="__DB_NAME__" --replace_string="$db_name" --target_file="$final_path/config/config.json"
|
|
|
|
ynh_replace_string --match_string="__DB_USER__" --replace_string="$db_user" --target_file="$final_path/config/config.json"
|
|
|
|
ynh_replace_string --match_string="__DB_PASS__" --replace_string="$db_pwd" --target_file="$final_path/config/config.json"
|
|
|
|
ynh_replace_string --match_string="__DATA__" --replace_string="$data_path" --target_file="$final_path/config/config.json"
|
2021-01-11 23:46:48 +01:00
|
|
|
ynh_replace_string --match_string="__FEEDBACK__" --replace_string="no-reply@${domain}" --target_file="$final_path/config/config.json"
|
|
|
|
ynh_replace_string --match_string="__USER_PW__" --replace_string="$(ynh_string_random --length=24)" --target_file="$final_path/config/config.json"
|
|
|
|
ynh_replace_string --match_string="__LOG__" --replace_string="$logs_path" --target_file="$final_path/config/config.json"
|
|
|
|
ynh_replace_string --match_string="__LANGUAGE__" --replace_string="$language" --target_file="$final_path/config/config.json"
|
|
|
|
|
|
|
|
ynh_store_file_checksum --file="$final_path/config/config.json"
|
2015-10-21 14:46:47 +02:00
|
|
|
|
2017-09-12 19:14:18 +02:00
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
chown -R $app: $final_path
|
|
|
|
chmod -R g+w $final_path
|
2015-10-21 13:03:49 +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-10-12 14:51:54 +02:00
|
|
|
#=================================================
|
2021-01-11 23:46:48 +01:00
|
|
|
# CREATE ADMIN AND FIRST TEAM
|
2017-10-12 14:51:54 +02:00
|
|
|
#=================================================
|
|
|
|
|
2021-01-11 23:46:48 +01:00
|
|
|
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)
|
|
|
|
|
|
|
|
pushd "$final_path"
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app bin/mattermost user create --username "$admin" --email "$email" --password "$password" --locale "$language" --system_admin
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app bin/mattermost user verify "$admin"
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app bin/mattermost team create --name "$team_name" --display_name "$team_display_name" --email "$email"
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app bin/mattermost team add "$team_name" "$admin"
|
|
|
|
popd
|
2017-10-12 14:51:54 +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
|
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Started Mattermost"
|
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 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
|