2015-10-17 10:47:21 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2015-10-17 13:41:39 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2015-10-17 13:41:39 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
2015-10-17 10:47:21 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
2015-10-17 10:47:21 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
2015-10-17 13:41:39 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2015-10-17 13:41:39 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
2018-03-07 23:33:32 +01:00
|
|
|
path_url=$YNH_APP_ARG_PATH
|
2018-02-27 22:35:57 +01:00
|
|
|
admin=$YNH_APP_ARG_ADMIN
|
|
|
|
password=$YNH_APP_ARG_PASSWORD
|
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
2015-10-17 13:41:39 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
2015-10-17 10:47:21 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
final_path=/var/www/$app
|
|
|
|
test ! -e "$final_path" || ynh_die "This path already contains a folder"
|
2015-10-17 13:41:39 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
# Normalize the url path syntax
|
|
|
|
path_url=$(ynh_normalize_url_path "$path_url")
|
2015-10-17 13:41:39 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
# Check web path availability
|
|
|
|
ynh_webpath_available "$domain" "$path_url"
|
|
|
|
# Register (book) web path
|
|
|
|
ynh_webpath_register "$app" "$domain" "$path_url"
|
2015-10-17 13:41:39 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2015-10-17 10:47:21 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
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" is_public "$is_public"
|
2015-10-17 13:41:39 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
#=================================================
|
|
|
|
# CREATE A MYSQL DATABASE
|
|
|
|
#=================================================
|
|
|
|
# If your app uses a MySQL database, you can use these lines to bootstrap
|
|
|
|
# a database, an associated user and save the password in app settings
|
2015-10-17 13:41:39 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
db_name=$(ynh_sanitize_dbid "$app")
|
|
|
|
db_pwd=$(ynh_string_random 15)
|
|
|
|
ynh_app_setting_set "$app" db_name "$db_name"
|
|
|
|
ynh_mysql_setup_db "$db_name" "$db_name" "$db_pwd"
|
2015-10-17 13:41:39 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2015-10-17 13:41:39 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
ynh_app_setting_set "$app" final_path "$final_path"
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source "$final_path"
|
2018-03-07 23:33:32 +01:00
|
|
|
mv "$final_path"/galette/* "$final_path"/
|
|
|
|
ynh_secure_remove "$final_path"/tests
|
|
|
|
chown -R root:root "$final_path"
|
2015-10-17 13:41:39 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2015-10-17 13:41:39 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
2015-10-17 13:41:39 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2015-10-17 13:41:39 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create "$app"
|
2015-10-17 13:41:39 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2015-10-17 10:47:21 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
# Create a dedicated php-fpm config
|
|
|
|
ynh_add_fpm_config
|
2015-10-17 13:41:39 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
|
|
|
# MODIFY A CONFIG FILE
|
|
|
|
#=================================================
|
2015-10-17 10:47:21 +02:00
|
|
|
|
2018-03-07 23:33:32 +01:00
|
|
|
configpath="$final_path"/config/config.inc.php
|
|
|
|
cp ../conf/config.inc.php "$configpath"
|
2018-02-27 22:35:57 +01:00
|
|
|
ynh_replace_string "__NAME_DB__" "$db_name" "$configpath"
|
|
|
|
ynh_replace_string "__PWD_DB__" "$db_pwd" "$configpath"
|
|
|
|
ynh_replace_string "__USER_DB__" "$db_name" "$configpath"
|
2015-10-17 10:47:21 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
#=================================================
|
|
|
|
# STORE THE CHECKSUM OF THE CONFIG FILE
|
|
|
|
#=================================================
|
2015-10-17 10:47:21 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
# Calculate and store the config file checksum into the app settings
|
2018-03-07 23:33:32 +01:00
|
|
|
ynh_store_file_checksum "$configpath"
|
2015-10-24 13:19:18 +02:00
|
|
|
|
2018-03-18 22:17:47 +01:00
|
|
|
#=================================================
|
|
|
|
# CREATE DATABASE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
script_for_db="$final_path"/install/scripts/mysql.sql
|
|
|
|
ynh_mysql_execute_file_as_root "$script_for_db" "$db_name"
|
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
2015-10-24 13:19:18 +02:00
|
|
|
|
2018-03-07 23:33:32 +01:00
|
|
|
# TODO: improve permissions
|
2015-10-24 13:19:18 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
for folder in attachments cache exports files imports logs photos templates_c tempimages
|
|
|
|
do
|
2018-03-18 22:17:47 +01:00
|
|
|
chown "$app" "$final_path/data/$folder"
|
|
|
|
chmod 750 "$final_path/data/$folder"
|
2018-02-27 22:35:57 +01:00
|
|
|
done
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Use logrotate to manage application logfile(s)
|
|
|
|
ynh_use_logrotate
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
|
|
|
|
2018-03-18 22:17:47 +01:00
|
|
|
if [[ "$path_url" == "/" ]]
|
|
|
|
then
|
|
|
|
# ynh panel is only comptable with non-root installation
|
|
|
|
ynh_replace_string " include conf.d/" " #include conf.d/" "$finalnginxconf"
|
|
|
|
else
|
|
|
|
ynh_replace_string "^#sub_path_only" "" "$finalnginxconf"
|
|
|
|
fi
|
|
|
|
ynh_store_file_checksum "$finalnginxconf"
|
|
|
|
|
|
|
|
if [ "$is_public" -eq 0 ]
|
2018-02-27 22:35:57 +01:00
|
|
|
then # Remove the public access
|
|
|
|
ynh_app_setting_delete "$app" skipped_uris
|
|
|
|
fi
|
|
|
|
# Make app public if necessary
|
2018-03-18 22:17:47 +01:00
|
|
|
if [ "$is_public" -eq 1 ]
|
2018-02-27 22:35:57 +01:00
|
|
|
then
|
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway.
|
|
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
|
|
|
fi
|
2015-10-24 13:19:18 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2015-10-24 13:19:18 +02:00
|
|
|
|
2018-02-27 22:35:57 +01:00
|
|
|
systemctl reload nginx
|