mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
106 lines
3.1 KiB
Bash
106 lines
3.1 KiB
Bash
#!/bin/bash
|
|
|
|
# Source local helpers
|
|
source ./_common.sh
|
|
|
|
# Source app helpers
|
|
source /usr/share/yunohost/helpers
|
|
|
|
# Abort script if errors
|
|
ynh_abort_if_errors
|
|
|
|
# Retrieve arguments
|
|
domain=$YNH_APP_ARG_DOMAIN
|
|
path_url=$YNH_APP_ARG_PATH
|
|
admin=$YNH_APP_ARG_ADMIN
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
# Normalize the url path syntax
|
|
path_url=$(ynh_normalize_url_path "$path_url")
|
|
|
|
# Check web path availability
|
|
ynh_webpath_available "$domain" "$path_url"
|
|
# Register (book) web path
|
|
ynh_webpath_register "$app" "$domain" "$path_url"
|
|
|
|
ynh_app_setting_set "$app" admin_user "$admin"
|
|
|
|
# Retrieve admin email
|
|
email=$(ynh_user_get_info "$admin" mail)
|
|
|
|
# Check destination directory
|
|
final_path="/var/www/$app"
|
|
test ! -e "$final_path" || ynh_die "This path already contains a folder"
|
|
|
|
ynh_app_setting_set "$app" final_path "$final_path"
|
|
|
|
# Generate random password
|
|
dbpass=$(ynh_string_random)
|
|
dbname=$app
|
|
dbuser=$app
|
|
|
|
# Initialize database and store mysql password for upgrade
|
|
ynh_mysql_create_db "$dbname" "$dbuser" "$dbpass"
|
|
ynh_app_setting_set "$app" mysqlpwd "$dbpass"
|
|
ynh_app_setting_set "$app" adminusername "$admin"
|
|
ynh_app_setting_set "$app" is_public "$is_public"
|
|
|
|
ynh_setup_source "$final_path"
|
|
|
|
# Copy and edit config.php
|
|
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"
|
|
|
|
# Set permissions to kanboard and data directory
|
|
chown -R root:root "$final_path"
|
|
chown -R www-data "$final_path"/{data,plugins}
|
|
|
|
# Copy and set php-fpm configuration
|
|
phpfpm_conf="/etc/php5/fpm/pool.d/${app}.conf"
|
|
|
|
cp ../conf/php-fpm.conf "$phpfpm_conf"
|
|
ynh_replace_string "#POOLNAME#" "$app" "$phpfpm_conf"
|
|
ynh_replace_string "#DESTDIR#" "$final_path" "$phpfpm_conf"
|
|
|
|
chown root: "$phpfpm_conf"
|
|
chmod 644 "$phpfpm_conf"
|
|
|
|
#=================================================
|
|
# NGINX CONFIGURATION
|
|
#=================================================
|
|
|
|
# Create a dedicated nginx config
|
|
ynh_add_nginx_config
|
|
|
|
if [[ "$path_url" == "/" ]]
|
|
then
|
|
# ynh panel is only comptable with non-root installation
|
|
ynh_replace_string " include conf.d/" " #include conf.d/" "$finalnginxconf"
|
|
|
|
ynh_store_file_checksum "$finalnginxconf"
|
|
fi
|
|
|
|
# Make app public or private
|
|
if [[ "$is_public" -eq 1 ]];
|
|
then
|
|
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"
|
|
fi
|
|
|
|
# Init database
|
|
ynh_mysql_connect_as "$dbuser" "$dbpass" "$dbname" < "${final_path}/app/Schema/Sql/mysql.sql"
|
|
|
|
# Reload services
|
|
service php5-fpm restart
|
|
service nginx reload
|