mirror of
https://github.com/YunoHost-Apps/rainloop_ynh.git
synced 2024-09-03 20:16:18 +02:00
112 lines
3.7 KiB
Bash
112 lines
3.7 KiB
Bash
#!/bin/bash
|
|
|
|
app=rainloop
|
|
|
|
# Retrieve arguments
|
|
domain=$1
|
|
path=$2
|
|
is_public=$3
|
|
user=$4
|
|
|
|
# Check user parameter
|
|
sudo yunohost user list --json | grep -qi "\"username\": \"$user\"" \
|
|
|| (echo "User does not exist: $user" && exit 1)
|
|
sudo yunohost app setting $app admin_user -v $user
|
|
|
|
# Removal of trailing /
|
|
if [ $path = "/" ]
|
|
then
|
|
#sitename="root"
|
|
echo "Installation on the root of the domain"
|
|
else
|
|
# sitename == path without any "/"
|
|
#sitename=$(echo $path | cut -d '/' -f 2)
|
|
# Removal of trailing /
|
|
# path can be null but not really an issue for the remaining commands
|
|
path=${path%/}
|
|
fi
|
|
|
|
|
|
|
|
# Check domain/path availability
|
|
sudo yunohost app checkurl $domain$path -a rainloop
|
|
if [[ ! $? -eq 0 ]]; then
|
|
exit 1
|
|
fi
|
|
|
|
# Generate random password
|
|
db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d 'A-Za-z0-9' | sed -n 's/\(.\{24\}\).*/\1/p')
|
|
|
|
# Use 'rainloop' as database name and user
|
|
db_user=$app
|
|
|
|
# Initialize database and store mysql password for upgrade
|
|
sudo yunohost app initdb $db_user -p $db_pwd
|
|
sudo yunohost app setting rainloop mysqlpwd -v $db_pwd
|
|
|
|
#mysql -u $db_user -p$db_pwd $db_user < ../sources/plugins/automatic_addressbook/SQL/mysql.initial.sql
|
|
|
|
# Copy files to the right place
|
|
final_path=/var/www/$app
|
|
sudo rm -rf $final_path
|
|
sudo mkdir -p $final_path
|
|
# Use of latest community edition
|
|
sudo wget http://repository.rainloop.net/v2/webmail/rainloop-community-latest.zip -O $final_path/rainloop.zip
|
|
sudo unzip $final_path/rainloop.zip -d $final_path/
|
|
sudo rm $final_path/rainloop.zip
|
|
|
|
# Autoconfig
|
|
sudo mkdir -p $final_path/data/_data_/_default_/configs/
|
|
sed -i "s@domain.tld@$domain@g" ../conf/data/configs/application.ini
|
|
sed -i "s@ADMINUSER@$user@g" ../conf/data/configs/application.ini
|
|
sed -i "s@ADMINPASSWORD@12345@g" ../conf/data/configs/application.ini
|
|
sed -i "s@MYSQLUSER@db_user@g" ../conf/data/configs/application.ini
|
|
sed -i "s@MYSQLPASSWORD@$db_pwd@g" ../conf/data/configs/application.ini
|
|
sudo cp ../conf/data/configs/application.ini $final_path/data/_data_/_default_/configs/application.ini
|
|
|
|
# Add default domain config
|
|
sudo mkdir -p $final_path/data/_data_/_default_/domains/
|
|
sed -i "s@domain.tld@$domain@g" ../conf/data/domains/domain.tld.ini
|
|
sudo cp ../conf/data/domains/domain.tld.ini $final_path/data/_data_/_default_/domains/$domain.ini
|
|
sudo cp ../conf/data/domains/disabled $final_path/data/_data_/_default_/domains/disabled
|
|
|
|
# SSO
|
|
sed -i "s@domain.tld/rainloop@$domain$path@g" ../conf/sso.php
|
|
sudo cp ../conf/sso.php $final_path/sso.php
|
|
|
|
# Temporary workaround until someone finds a way to setup NGINX properly...
|
|
sudo mkdir -p $final_path/app
|
|
sudo mv $final_path/index.php $final_path/app/index.php
|
|
sudo mv $final_path/data $final_path/app/data
|
|
sudo mv $final_path/rainloop $final_path/app/rainloop
|
|
sudo sed -i "s@index.php@app/index.php@g" $final_path/sso.php
|
|
sudo mv $final_path/sso.php $final_path/index.php
|
|
|
|
# Set permissions to rainloop directory
|
|
# sudo mkdir -p $final_path/logs
|
|
sudo chown -R www-data:www-data $final_path
|
|
|
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
|
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
|
|
sed -i "s@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf
|
|
sed -i "s@NAMETOCHANGE@$app@g" ../conf/nginx.conf
|
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
sed -i "s@NAMETOCHANGE@$app@g" ../conf/php-fpm.conf
|
|
finalphpconf=/etc/php5/fpm/pool.d/$app.conf
|
|
sudo cp ../conf/php-fpm.conf $finalphpconf
|
|
sudo chown root: $finalphpconf
|
|
sudo chmod 644 $finalphpconf
|
|
|
|
# Make app public if necessary
|
|
sudo yunohost app setting $app is_public -v "$is_public"
|
|
if [ "$is_public" = "Yes" ];
|
|
then
|
|
sudo yunohost app setting $app skipped_uris -v "/"
|
|
fi
|
|
|
|
|
|
# Reload Nginx and regenerate SSOwat conf
|
|
sudo service php5-fpm reload
|
|
sudo service nginx reload
|
|
sudo yunohost app ssowatconf
|