2014-07-20 14:09:41 +02:00
|
|
|
#!/bin/bash
|
2015-10-23 16:24:30 +02:00
|
|
|
|
2016-07-23 14:54:26 +02:00
|
|
|
app="kanboard"
|
|
|
|
|
2017-01-17 17:51:12 +01:00
|
|
|
# Source local helpers
|
|
|
|
source ./_common.sh
|
|
|
|
|
2016-07-23 14:54:26 +02:00
|
|
|
# Source app helpers
|
|
|
|
source /usr/share/yunohost/helpers
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2017-10-19 12:13:47 +02:00
|
|
|
# Abort script if errors
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2014-07-20 14:09:41 +02:00
|
|
|
# Retrieve arguments
|
|
|
|
domain=$1
|
|
|
|
path=$2
|
2014-07-20 18:10:20 +02:00
|
|
|
admin=$3
|
2016-05-05 12:58:52 +02:00
|
|
|
is_public=$4
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2016-07-23 14:54:26 +02:00
|
|
|
# TODO: Check domain/path availability with app helper
|
2017-10-19 12:22:39 +02:00
|
|
|
yunohost app checkurl "${domain}${path}" -a "$app" \
|
2016-07-23 14:54:26 +02:00
|
|
|
|| ynh_die "The path ${domain}${path} is not available for app installation."
|
|
|
|
|
|
|
|
# Check user parameter
|
|
|
|
ynh_user_exists "$admin" \
|
|
|
|
|| ynh_die "The chosen admin user does not exist."
|
|
|
|
ynh_app_setting_set $app admin_user $admin
|
|
|
|
|
2014-10-22 21:21:37 +02:00
|
|
|
# Retrieve admin email
|
2017-10-19 12:22:39 +02:00
|
|
|
email=$(yunohost user info $admin | grep mail: | sed "s/mail: //g")
|
2014-10-22 21:21:37 +02:00
|
|
|
|
2016-07-23 14:54:26 +02:00
|
|
|
# Check destination directory
|
|
|
|
DESTDIR="/var/www/$app"
|
|
|
|
[[ -d $DESTDIR ]] && ynh_die \
|
|
|
|
"The destination directory '$DESTDIR' already exists.\
|
|
|
|
You should safely delete it before installing this app."
|
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"
|
2016-07-23 15:41:51 +02:00
|
|
|
ynh_app_setting_set $app mysqlpwd $dbpass
|
2016-07-23 14:54:26 +02:00
|
|
|
ynh_app_setting_set $app adminusername $admin
|
|
|
|
ynh_app_setting_set $app is_public $is_public
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2017-10-19 11:33:09 +02:00
|
|
|
ynh_setup_source "$DESTDIR"
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2014-10-22 21:21:37 +02:00
|
|
|
# Copy and edit config.php
|
2017-10-19 12:22:39 +02:00
|
|
|
cp ../conf/config.php ${DESTDIR}
|
|
|
|
sed -i "s/yuno_dbpdw/${dbpass}/g" ${DESTDIR}/config.php
|
|
|
|
sed -i "s/yuno_dbuser/${dbuser}/g" ${DESTDIR}/config.php
|
|
|
|
sed -i "s/yuno_admin/${admin}/g" ${DESTDIR}/config.php
|
|
|
|
sed -i "s/yuno_email/${email}/g" ${DESTDIR}/config.php
|
|
|
|
sed -i "s/yuno_domain/${domain}/g" ${DESTDIR}/config.php
|
2014-07-20 18:10:20 +02:00
|
|
|
|
2015-10-26 14:49:22 +01:00
|
|
|
# Set permissions to kanboard and data directory
|
2017-10-19 12:22:39 +02:00
|
|
|
chown -R root:root ${DESTDIR}
|
|
|
|
chown -R www-data ${DESTDIR}/{data,plugins}
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2016-07-23 14:54:26 +02:00
|
|
|
# Copy and set php-fpm configuration
|
|
|
|
phpfpm_conf="/etc/php5/fpm/pool.d/${app}.conf"
|
|
|
|
sed -i "s@#POOLNAME#@${app}@g" ../conf/php-fpm.conf
|
|
|
|
sed -i "s@#DESTDIR#@${DESTDIR}/@g" ../conf/php-fpm.conf
|
2017-10-19 12:22:39 +02:00
|
|
|
cp ../conf/php-fpm.conf "$phpfpm_conf"
|
|
|
|
chown root: $phpfpm_conf
|
|
|
|
chmod 644 $phpfpm_conf
|
2015-10-20 15:44:33 +02:00
|
|
|
|
2017-10-19 12:13:47 +02:00
|
|
|
finalnginxconf="/etc/nginx/conf.d/${domain}.d/${app}.conf"
|
|
|
|
|
2014-07-20 14:09:41 +02:00
|
|
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
2016-07-23 14:54:26 +02:00
|
|
|
sed -i "s@NAMETOCHANGE@${app}@g" ../conf/nginx.conf*
|
|
|
|
sed -i "s@PATHTOCHANGE@${path}@g" ../conf/nginx.conf*
|
|
|
|
sed -i "s@ALIASTOCHANGE@${DESTDIR}/@g" ../conf/nginx.conf*
|
2017-10-19 12:22:39 +02:00
|
|
|
cp ../conf/nginx.conf "$finalnginxconf"
|
2017-10-19 12:13:47 +02:00
|
|
|
|
|
|
|
if [ "$path" == "/" ]
|
|
|
|
then
|
|
|
|
# ynh panel is only comptable with non-root installation
|
|
|
|
ynh_replace_string " include conf.d/" " #include conf.d/" "$finalnginxconf"
|
|
|
|
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 12:22:39 +02:00
|
|
|
yunohost app setting ${app} unprotected_uris -v "/"
|
|
|
|
sed -i "s/define('LDAP_AUTH'.*$/define('LDAP_AUTH', true);/g" ${DESTDIR}/config.php
|
|
|
|
sed -i "s/define('HIDE_LOGIN_FORM'.*$/define('HIDE_LOGIN_FORM', false);/g" ${DESTDIR}/config.php
|
|
|
|
sed -i "s/define('REMEMBER_ME_AUTH'.*$/define('REMEMBER_ME_AUTH', true);/g" ${DESTDIR}/config.php
|
|
|
|
sed -i "s/define('DISABLE_LOGOUT'.*$/define('DISABLE_LOGOUT', false);/g" ${DESTDIR}/config.php
|
2016-05-05 12:58:52 +02:00
|
|
|
fi
|
|
|
|
|
2016-07-23 17:37:17 +02:00
|
|
|
# Init database
|
2017-10-19 12:22:39 +02:00
|
|
|
#chmod o+x ${DESTDIR} ${DESTDIR}/app/ ${DESTDIR}/app/Schema/ ${DESTDIR}/app/Schema/Sql
|
2016-07-23 17:37:17 +02:00
|
|
|
ynh_mysql_connect_as "$dbuser" "$dbpass" "$dbname" < ${DESTDIR}/app/Schema/Sql/mysql.sql
|
|
|
|
|
2016-07-23 14:54:26 +02:00
|
|
|
# Reload services
|
2017-10-19 12:22:39 +02:00
|
|
|
service php5-fpm restart || true
|
|
|
|
service nginx reload || true
|