2016-06-28 17:20:21 +02:00
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
set -eu
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2015-02-06 19:42:21 +01:00
|
|
|
|
2015-02-01 20:20:54 +01:00
|
|
|
# Retrieve arguments
|
2015-10-24 14:24:50 +02:00
|
|
|
domain=$1
|
2016-06-28 17:20:21 +02:00
|
|
|
path=${2%/}
|
2015-10-24 14:24:50 +02:00
|
|
|
is_public=$3
|
|
|
|
password=$4
|
|
|
|
ldap=$5
|
2016-01-15 00:22:31 +01:00
|
|
|
lang=$6
|
2015-10-07 17:43:41 +02:00
|
|
|
|
2016-06-28 17:20:21 +02:00
|
|
|
# Source app helpers
|
|
|
|
. /usr/share/yunohost/helpers
|
2015-02-01 20:20:54 +01:00
|
|
|
|
|
|
|
# Check domain/path availability
|
2016-06-28 17:20:21 +02:00
|
|
|
sudo yunohost app checkurl "${domain}${path}" -a "$app" \
|
|
|
|
|| exit 1
|
2015-11-19 20:37:30 +01:00
|
|
|
|
|
|
|
# Use 'rainloop' as database name and user
|
2016-06-28 17:20:21 +02:00
|
|
|
dbuser=$app
|
|
|
|
dbname=$app
|
|
|
|
dbpass=$(ynh_string_random)
|
2015-11-19 20:37:30 +01:00
|
|
|
|
|
|
|
# Initialize database and store mysql password for upgrade
|
2016-06-28 17:20:21 +02:00
|
|
|
ynh_mysql_create_db "$dbname" "$dbuser" "$dbpass"
|
|
|
|
ynh_app_setting_set "$app" mysqlpwd "$dbpass"
|
2015-10-24 14:24:50 +02:00
|
|
|
|
|
|
|
# Create the final path and copy sources
|
|
|
|
final_path=/var/www/$app
|
|
|
|
rainloop_path=${final_path}/app
|
|
|
|
|
|
|
|
sudo rm -rf $final_path
|
|
|
|
sudo mkdir -p $final_path
|
|
|
|
sudo mkdir -p $rainloop_path
|
|
|
|
|
|
|
|
# Use of latest community edition
|
2016-07-26 13:49:42 +02:00
|
|
|
sudo wget -q https://github.com/RainLoop/rainloop-webmail/releases/download/v1.10.2.145/rainloop-community-1.10.2.145-74dc686dd82d9f29b0fef8ceb11c2903.zip
|
2016-06-28 16:26:34 +02:00
|
|
|
#Check checksum
|
2016-07-26 13:49:42 +02:00
|
|
|
sudo unzip -qq rainloop-community-1.10.2.*.zip -d $rainloop_path/
|
2015-10-24 14:24:50 +02:00
|
|
|
|
|
|
|
# Install plugins
|
|
|
|
sudo mkdir -p $rainloop_path/data/_data_/_default_/plugins
|
|
|
|
sudo cp -rf ../sources/plugins/ynh-login-mapping $rainloop_path/data/_data_/_default_/plugins/.
|
2015-10-24 23:51:26 +02:00
|
|
|
sudo cp -rf ../sources/plugins/ynh-ldap-suggestions $rainloop_path/data/_data_/_default_/plugins/.
|
2015-02-01 20:20:54 +01:00
|
|
|
|
2015-10-07 17:43:41 +02:00
|
|
|
# Autoconfig
|
2015-10-24 14:24:50 +02:00
|
|
|
sudo mkdir -p $rainloop_path/data/_data_/_default_/configs/
|
|
|
|
application_file=$rainloop_path/data/_data_/_default_/configs/application.ini
|
|
|
|
|
2016-01-15 00:22:31 +01:00
|
|
|
# Set lang => define from install manifest
|
|
|
|
case "$lang" in
|
|
|
|
Francais)
|
|
|
|
lang="fr"
|
|
|
|
;;
|
|
|
|
English)
|
|
|
|
lang="en"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
lang="en"
|
|
|
|
esac
|
|
|
|
|
2015-10-24 14:24:50 +02:00
|
|
|
|
|
|
|
# Set plugins
|
|
|
|
plugins="ynh-login-mapping"
|
|
|
|
if [ "$ldap" = "Yes" ];
|
|
|
|
then
|
2015-10-24 23:51:26 +02:00
|
|
|
plugins="$plugins,ynh-ldap-suggestions"
|
2015-10-24 14:24:50 +02:00
|
|
|
fi
|
2016-06-28 17:34:51 +02:00
|
|
|
ynh_app_setting_set "$app" plugins "$plugins"
|
2015-10-24 14:24:50 +02:00
|
|
|
|
|
|
|
sudo cp ../conf/data/configs/application.ini $application_file
|
|
|
|
sudo sed -i "s@domain.tld@$domain@g" $application_file
|
2016-06-28 17:36:03 +02:00
|
|
|
sudo sed -i "s@MYSQLUSER@$dbuser@g" $application_file
|
|
|
|
sudo sed -i "s@MYSQLPASSWORD@$dbpass@g" $application_file
|
2015-10-24 14:24:50 +02:00
|
|
|
sudo sed -i "s@LANGTOCHANGE@$lang@g" $application_file
|
|
|
|
sudo sed -i "s@PLUGINSTOENABLE@$plugins@g" $application_file
|
2015-10-11 22:46:23 +02:00
|
|
|
|
|
|
|
# Set admin password
|
2015-10-24 14:24:50 +02:00
|
|
|
sudo php ../conf/config.php --index="$rainloop_path/index.php" --password="$password"
|
2015-10-11 22:46:23 +02:00
|
|
|
|
|
|
|
# Add default domain configs by looping through all the domains already added
|
2015-10-24 14:24:50 +02:00
|
|
|
sudo mkdir -p $rainloop_path/data/_data_/_default_/domains/
|
2015-10-21 20:23:50 +02:00
|
|
|
|
2015-10-24 14:24:50 +02:00
|
|
|
# get list of ldap domains
|
|
|
|
alldomains=`ldapsearch -LLL -x -b ou=domains,dc=yunohost,dc=org -s one "objectclass=top" virtualdomain | grep -v "dn:" | sed "s/virtualdomain://" `
|
2016-01-15 00:22:31 +01:00
|
|
|
for ldomain in $alldomains ; do
|
|
|
|
sudo cp ../conf/data/domains/domain.tld.ini $rainloop_path/data/_data_/_default_/domains/$ldomain.ini
|
2015-10-24 14:24:50 +02:00
|
|
|
done
|
|
|
|
sudo cp ../conf/data/domains/disabled $rainloop_path/data/_data_/_default_/domains/disabled
|
2015-10-21 20:23:50 +02:00
|
|
|
|
2015-10-11 22:46:23 +02:00
|
|
|
# Hooks for domains are not implemented yet, so new domains will not be added automatically
|
2015-10-07 17:43:41 +02:00
|
|
|
|
2015-10-24 14:24:50 +02:00
|
|
|
# install SSO and auto version - at the moment the index is the SSO and rainloop is installed in /app
|
2016-06-28 17:20:21 +02:00
|
|
|
sudo cp ../sources/sso/sso.php $final_path/index.php
|
|
|
|
sudo cp ../sources/patch/index_auto_version.php $rainloop_path/index.php
|
2015-10-24 14:24:50 +02:00
|
|
|
sudo sed -i "s@domain.tld@$domain@g" $final_path/index.php
|
|
|
|
sudo sed -i "s@PATHTOCHANGE@$path@g" $final_path/index.php
|
2015-10-07 21:23:28 +02:00
|
|
|
|
2015-02-01 20:20:54 +01:00
|
|
|
# Set permissions to rainloop directory
|
2016-06-28 17:09:13 +02:00
|
|
|
sudo find $final_path/. -type d -exec chmod 755 {} \;
|
|
|
|
sudo find $final_path/. -type f -exec chmod 644 {} \;
|
2015-10-24 14:24:50 +02:00
|
|
|
sudo chown -R www-data:www-data $final_path
|
2015-02-01 20:20:54 +01:00
|
|
|
|
2015-10-22 20:55:36 +02:00
|
|
|
# Install Nginx configuration file
|
2015-10-24 14:24:50 +02:00
|
|
|
nginx_conf_file=/etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
sudo cp ../conf/nginx.conf $nginx_conf_file
|
|
|
|
sudo sed -i "s@PATHTOCHANGE@$path@g" $nginx_conf_file
|
|
|
|
sudo sed -i "s@ALIASTOCHANGE@$final_path/@g" $nginx_conf_file
|
|
|
|
sudo sed -i "s@NAMETOCHANGE@$app@g" $nginx_conf_file
|
|
|
|
sudo chown root: $nginx_conf_file
|
|
|
|
sudo chmod 644 $nginx_conf_file
|
|
|
|
|
|
|
|
finalphpconf=/etc/php5/fpm/pool.d/$app.conf
|
|
|
|
sudo cp ../conf/php-fpm.conf $finalphpconf
|
|
|
|
sudo sed -i "s@NAMETOCHANGE@$app@g" $finalphpconf
|
|
|
|
sudo chown root: $finalphpconf
|
|
|
|
sudo chmod 644 $finalphpconf
|
2015-02-01 20:20:54 +01:00
|
|
|
|
2015-02-06 19:42:21 +01:00
|
|
|
# Make app public if necessary
|
2016-06-28 17:34:51 +02:00
|
|
|
ynh_app_setting_set "$app" is_public "$is_public"
|
2015-10-24 14:24:50 +02:00
|
|
|
if [ "$is_public" = "Yes" ];
|
|
|
|
then
|
2016-06-28 17:34:51 +02:00
|
|
|
ynh_app_setting_set "$app" skipped_uris "/"
|
2015-10-24 14:24:50 +02:00
|
|
|
fi
|
2015-02-06 19:42:21 +01:00
|
|
|
|
2016-06-28 17:20:21 +02:00
|
|
|
# Reload services
|
|
|
|
sudo service php5-fpm restart || true
|
|
|
|
sudo service nginx reload || true
|