mirror of
https://github.com/YunoHost-Apps/agendav_ynh.git
synced 2024-09-03 20:36:12 +02:00
104 lines
3.1 KiB
Bash
104 lines
3.1 KiB
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Retrieve arguments
|
|
domain=$1
|
|
path=${2%/}
|
|
|
|
# Source app helpers
|
|
. /usr/share/yunohost/helpers
|
|
|
|
# Set app specific variables
|
|
app="agendav"
|
|
dbname=$app
|
|
dbuser=$app
|
|
|
|
# Check domain/path availability
|
|
sudo yunohost app checkurl "${domain}${path}" -a "$app" \
|
|
|| exit 1
|
|
|
|
# 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."
|
|
|
|
# Check whether Baïkal or Radicale is installed
|
|
if sudo yunohost app list --installed -f baikal | grep -q id ; then
|
|
caldav_app="baikal"
|
|
caldav_principal_path="/cal.php/%u/"
|
|
caldav_calendar_path="/cal.php/calendars/%s/"
|
|
elif sudo yunohost app list --installed -f radicale | grep -q id ; then
|
|
caldav_app="radicale"
|
|
caldav_principal_path="/%u/"
|
|
caldav_calendar_path="/%s/"
|
|
else
|
|
ynh_die "You must install Baïkal or Radicale before"
|
|
fi
|
|
|
|
# Install dependencies
|
|
ynh_package_is_installed "php5-cli" \
|
|
|| ynh_package_install "php5-cli"
|
|
|
|
# Generate random password and encryption key
|
|
dbpass=$(ynh_string_random)
|
|
encryptkey=$(ynh_string_random 24)
|
|
|
|
# Initialize database
|
|
ynh_mysql_create_db "$dbname" "$dbuser" "$dbpass"
|
|
ynh_mysql_connect_as "$dbuser" "$dbpass" "$dbname" \
|
|
< "../sources/sql/mysql.schema.sql"
|
|
|
|
# Copy files to the right place
|
|
sudo cp -r ../sources "$DESTDIR"
|
|
|
|
# CalDAV config
|
|
caldav_domain=$(ynh_app_setting_get "$caldav_app" domain)
|
|
caldav_path=$(ynh_app_setting_get "$caldav_app" path)
|
|
caldav_url="https://${caldav_domain}${caldav_path%/}"
|
|
sed -i "s@{PRINCIPAL_URL}@${caldav_url}${caldav_principal_path}@g" \
|
|
../conf/caldav.php
|
|
sed -i "s@{CALENDAR_URL}@${caldav_url}${caldav_calendar_path}@g" \
|
|
../conf/caldav.php
|
|
|
|
# Database config
|
|
sed -i "s/{DBUSER}/${dbuser}/g" ../conf/database.php
|
|
sed -i "s/{DBPASS}/${dbpass}/g" ../conf/database.php
|
|
sed -i "s/{DBNAME}/${dbname}/g" ../conf/database.php
|
|
|
|
# Main config
|
|
LOGDIR=/var/log/agendav
|
|
lang=${LANG/.*/}
|
|
sed -i "s@{DOMAIN}@${domain}@g" ../conf/config.php
|
|
sed -i "s@{PATH}@${path}@g" ../conf/config.php
|
|
sed -i "s@{LOGDIR}@${LOGDIR}@g" ../conf/config.php
|
|
sed -i "s/{ENCRYPTKEY}/${encryptkey}/g" ../conf/config.php
|
|
sed -i "s@{COOKIE_PREFIX}@${path#/}@g" ../conf/config.php
|
|
sed -i "s@{COOKIE_DOMAIN}@${domain}@g" ../conf/config.php
|
|
sed -i "s@{LANG}@${lang:-en_EN}@g" ../conf/config.php
|
|
sed -i "s@{TIMEZONE}@$(cat /etc/timezone)@g" ../conf/config.php
|
|
|
|
# Copy config files and set permissions
|
|
sudo cp ../conf/{config,database,caldav}.php "${DESTDIR}/web/config/"
|
|
(cd "$DESTDIR/web/application" && sudo ln -s ../config config)
|
|
sudo chown -hR root: "$DESTDIR"
|
|
|
|
# Create log directory
|
|
sudo install -m 750 -o www-data -d "$LOGDIR"
|
|
|
|
# Execute database shema update
|
|
sudo /var/www/agendav/bin/agendavcli dbupdate
|
|
|
|
# Save app settings
|
|
ynh_app_setting_set "$app" encryptkey "$encryptkey"
|
|
ynh_app_setting_set "$app" mysqlpwd "$dbpass"
|
|
|
|
# Copy and set nginx configuration
|
|
nginx_conf="/etc/nginx/conf.d/${domain}.d/${app}.conf"
|
|
sed -i "s@{LOCATION}@${path:-/}@g" ../conf/nginx.conf
|
|
sed -i "s@{DESTDIR}@${DESTDIR}@g" ../conf/nginx.conf
|
|
sudo cp ../conf/nginx.conf "$nginx_conf"
|
|
|
|
# Reload services
|
|
sudo service nginx reload
|