1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mattermost_ynh.git synced 2024-09-03 19:36:29 +02:00
mattermost_ynh/scripts/restore

134 lines
3.9 KiB
Text
Raw Normal View History

2017-09-11 12:05:16 +02:00
#!/bin/bash
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-09-11 12:05:16 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get $app domain)
2017-10-10 12:47:33 +02:00
is_public=$(ynh_app_setting_get $app is_public)
2020-02-08 23:33:19 +01:00
path_url=$(ynh_app_setting_get $app path)
2017-09-11 12:05:16 +02:00
final_path="/var/www/$app"
data_path="/home/yunohost.app/$app"
logs_path="/var/log/$app"
2017-09-11 12:05:16 +02:00
db_name="$app"
db_user=$(ynh_app_setting_get $app mysqluser)
db_user=${db_user:-"mmuser"}
mattermost_user="$app"
2017-09-11 12:05:16 +02:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
ynh_webpath_available $domain $path_url \
2017-09-11 12:05:16 +02:00
|| ynh_die "Path not available: ${domain}"
test ! -d $final_path \
|| ynh_die "There is already a directory: $final_path "
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_restore_file "/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
ynh_restore_file "$final_path"
#=================================================
# RESTORE THE APP DATA
#=================================================
ynh_restore_file "$data_path"
#=================================================
2017-09-11 12:05:16 +02:00
# RESTORE THE MYSQL DATABASE
#=================================================
db_pwd=$(ynh_app_setting_get $app mysqlpwd)
ynh_mysql_setup_db "$db_user" "$db_name" "$db_pwd"
ynh_mysql_connect_as "$db_user" "$db_pwd" "$db_name" < ./db.sql
2017-09-11 12:05:16 +02:00
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
# Create the dedicated user (if not existing)
mattermost_user="$app"
if ! ynh_system_user_exists "$mattermost_user"; then
mattermost_user_password=$(ynh_app_setting_get $app smtppwd)
useradd -M --shell /bin/false -p $(openssl passwd -1 "$mattermost_user_password") "$mattermost_user"
2017-09-11 12:05:16 +02:00
fi
#=================================================
# RESTORE USER RIGHTS
#=================================================
# Restore permissions on app files
chown -R "$mattermost_user:www-data" "$final_path"
mkdir -p "$data_path"
chown -R "$mattermost_user:www-data" "$data_path"
mkdir -p "$logs_path"
chown -R "$mattermost_user:adm" "$logs_path"
2017-09-11 12:05:16 +02:00
2017-10-10 12:47:33 +02:00
#=================================================
# RESTORE SSOWAT
#=================================================
if [[ $is_public == "1" ]]; then
# Make the app accessible to the public
2017-10-10 12:47:33 +02:00
ynh_app_setting_set "$app" unprotected_uris "/"
else
# Remove the public access
ynh_app_setting_delete "$app" skipped_uris
2017-10-10 12:47:33 +02:00
fi
2017-09-11 12:05:16 +02:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# RESTORE SYSTEMD
2017-09-11 12:05:16 +02:00
#=================================================
ynh_restore_file "/etc/systemd/system/$app.service"
systemctl enable "$app"
2017-09-11 12:05:16 +02:00
#=================================================
# ADVERTISE SERVICE IN ADMIN PANEL
#=================================================
yunohost service add "$app" --log "$logs_path/mattermost.log"
2017-09-11 12:05:16 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
2017-10-12 08:08:53 +02:00
# RELOAD NGINX
2017-09-11 12:05:16 +02:00
#=================================================
service nginx reload
2017-10-12 08:08:53 +02:00
#=================================================
# START SERVER
#=================================================
systemctl start "$app"