2014-07-20 14:09:41 +02:00
|
|
|
#!/bin/bash
|
2015-10-23 16:24:30 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-01-17 17:51:12 +01:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
source _common.sh
|
2016-07-23 14:54:26 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
2017-10-19 12:13:47 +02:00
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
2014-07-20 14:09:41 +02:00
|
|
|
# Retrieve arguments
|
2017-10-19 12:31:32 +02:00
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
2017-10-19 15:03:38 +02:00
|
|
|
path_url=$YNH_APP_ARG_PATH
|
2017-10-19 12:31:32 +02:00
|
|
|
admin=$YNH_APP_ARG_ADMIN
|
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Check destination directory
|
|
|
|
final_path="/var/www/$app"
|
|
|
|
test ! -e "$final_path" || ynh_die "This path already contains a folder"
|
|
|
|
|
2017-10-19 12:34:02 +02:00
|
|
|
# Normalize the url path syntax
|
2017-10-19 15:40:50 +02:00
|
|
|
path_url=$(ynh_normalize_url_path "$path_url")
|
2017-10-19 12:34:02 +02:00
|
|
|
|
|
|
|
# Check web path availability
|
2017-10-19 15:03:38 +02:00
|
|
|
ynh_webpath_available "$domain" "$path_url"
|
2017-10-19 12:34:02 +02:00
|
|
|
# Register (book) web path
|
2017-10-19 15:03:38 +02:00
|
|
|
ynh_webpath_register "$app" "$domain" "$path_url"
|
2016-07-23 14:54:26 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2016-07-23 14:54:26 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
ynh_app_setting_set "$app" domain "$domain"
|
|
|
|
ynh_app_setting_set "$app" final_path "$final_path"
|
|
|
|
ynh_app_setting_set "$app" adminusername "$admin"
|
|
|
|
ynh_app_setting_set "$app" is_public "$is_public"
|
2014-10-22 21:21:37 +02:00
|
|
|
|
2017-10-19 14:57:07 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE A MYSQL DATABASE
|
|
|
|
#================================================
|
2014-07-20 14:09:41 +02:00
|
|
|
|
|
|
|
# Generate random password
|
2016-07-23 14:54:26 +02:00
|
|
|
dbpass=$(ynh_string_random)
|
|
|
|
dbname=$app
|
|
|
|
dbuser=$app
|
2014-07-20 14:09:41 +02:00
|
|
|
|
|
|
|
# Initialize database and store mysql password for upgrade
|
2016-07-23 14:54:26 +02:00
|
|
|
ynh_mysql_create_db "$dbname" "$dbuser" "$dbpass"
|
2017-10-19 15:40:50 +02:00
|
|
|
ynh_app_setting_set "$app" mysqlpwd "$dbpass"
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2017-10-19 14:57:07 +02:00
|
|
|
ynh_setup_source "$final_path"
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_add_fpm_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
|
|
|
# Create config.php
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Retrieve admin email
|
|
|
|
email=$(ynh_user_get_info "$admin" mail)
|
|
|
|
|
2014-10-22 21:21:37 +02:00
|
|
|
# Copy and edit config.php
|
2017-10-19 14:57:07 +02:00
|
|
|
config_php="${final_path}/config.php"
|
|
|
|
|
|
|
|
cp ../conf/config.php "$config_php"
|
|
|
|
ynh_replace_string "yuno_dbpdw" "$dbpass" "$config_php"
|
|
|
|
ynh_replace_string "yuno_dbuser" "$dbuser" "$config_php"
|
|
|
|
ynh_replace_string "yuno_admin" "$admin" "$config_php"
|
|
|
|
ynh_replace_string "yuno_email" "$email" "$config_php"
|
|
|
|
ynh_replace_string "yuno_domain" "$domain" "$config_php"
|
2014-07-20 18:10:20 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# Database initialization
|
|
|
|
#=================================================
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
# Init database
|
|
|
|
ynh_mysql_connect_as "$dbuser" "$dbpass" "$dbname" < "${final_path}/app/Schema/Sql/mysql.sql"
|
2017-10-19 14:57:07 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#================================================
|
2017-10-19 14:57:07 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
# Set permissions to kanboard and data directory
|
|
|
|
chown -R root:root "$final_path"
|
|
|
|
chown -R www-data "$final_path"/{data,plugins}
|
2015-10-20 15:44:33 +02:00
|
|
|
|
2017-10-19 15:03:38 +02:00
|
|
|
#=================================================
|
2017-10-21 22:52:21 +02:00
|
|
|
# SETUP SSOWAT
|
2017-10-19 15:03:38 +02:00
|
|
|
#=================================================
|
2017-10-19 12:13:47 +02:00
|
|
|
|
2017-10-19 15:40:50 +02:00
|
|
|
if [[ "$path_url" == "/" ]]
|
2017-10-19 12:13:47 +02:00
|
|
|
then
|
|
|
|
# ynh panel is only comptable with non-root installation
|
|
|
|
ynh_replace_string " include conf.d/" " #include conf.d/" "$finalnginxconf"
|
2017-10-19 15:03:38 +02:00
|
|
|
|
|
|
|
ynh_store_file_checksum "$finalnginxconf"
|
2017-10-19 12:13:47 +02:00
|
|
|
fi
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2016-05-05 12:58:52 +02:00
|
|
|
# Make app public or private
|
2017-10-19 12:13:47 +02:00
|
|
|
if [[ "$is_public" -eq 1 ]];
|
2016-05-05 12:58:52 +02:00
|
|
|
then
|
2017-10-19 14:57:07 +02:00
|
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
|
|
|
ynh_replace_string "define('LDAP_AUTH'.*$" "define('LDAP_AUTH', true);" "$config_php"
|
|
|
|
ynh_replace_string "define('HIDE_LOGIN_FORM'.*$" "define('HIDE_LOGIN_FORM', false);" "$config_php"
|
|
|
|
ynh_replace_string "define('REMEMBER_ME_AUTH'.*$" "define('REMEMBER_ME_AUTH', true);" "$config_php"
|
|
|
|
ynh_replace_string "define('DISABLE_LOGOUT'.*$" "define('DISABLE_LOGOUT', false);" "$config_php"
|
2016-05-05 12:58:52 +02:00
|
|
|
fi
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX & PHP5-FPM
|
|
|
|
#=================================================
|
2016-07-23 17:37:17 +02:00
|
|
|
|
2016-07-23 14:54:26 +02:00
|
|
|
# Reload services
|
2017-10-19 15:21:24 +02:00
|
|
|
service php5-fpm restart
|
|
|
|
service nginx reload
|