1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/emailpoubelle_ynh.git synced 2024-09-03 18:26:29 +02:00
emailpoubelle_ynh/scripts/install
2018-11-23 19:03:57 +01:00

132 lines
3.8 KiB
Bash

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source /usr/share/yunohost/helpers
app=emailpoubelle
lang="fr_FR.UTF-8 en_US.UTF-8 it_IT.UTF-8"
# Retrieve arguments
domain=$1
path=$2
admin=$3
is_public=$4
final_path=/var/www/$app
postfix=/etc/postfix/main.cf
cronline="0 */2 * * * www-data cd $final_path/www/; /usr/bin/php index.php > /dev/null 2>&1"
# Check web path availability
ynh_webpath_available $domain $path
#sudo yunohost app checkurl $domain$path -a $app
if [[ ! $? -eq 0 ]]; then
exit 1
fi
# Register (book) web path
ynh_webpath_register $app $domain $path
# Check user
ynh_user_exists "$admin"
if [[ ! $? -eq 0 ]]; then
echo "Wrong user"
exit 1
fi
# Save app settings
sudo yunohost app setting $app admin -v "$admin"
sudo yunohost app setting $app is_public -v "$is_public"
#install dependency
ynh_package_is_installed 'php-geoip'
if [[ ! $? -eq 0 ]]; then
ynh_package_install 'php-geoip'
#c'est pas très propre, mais ça marche
systemctl restart php*fpm*
fi
#install locale (nginx will restart at the end of the install)
for i in $lang
do
cat /etc/locale/locale.gen | grep "^[^#;]" | grep $i
if [[ ! $? -eq 0 ]]; then
echo "$i UTF-8" >> /etc/locale.gen
locale=1
fi
done
if [[ $locale -eq 1 ]]; then
locale-gen
fi
# Copy source files
sudo mkdir -p $final_path
sudo cp -R ../src/* $final_path
sudo cp ../conf/index_source.php $final_path/www/index.php
#Temporaire - mettre en config
ln -s $final_path/lang/fr $final_path/lang/fr_FR
ln -s $final_path/lang/it $final_path/lang/it_IT
#configuring with given settings
sudo cp $final_path/conf-dist.php $final_path/conf.php
sudo chown -R www-data:www-data $final_path
sudo sed -i "s@exemple.fr@$domain@g" $final_path/conf.php
sudo sed -i "s@exemple.com@$domain@g" $final_path/conf.php
#generating random password for database
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')
db_user=emailPoubelle
#write password to the conf file
sudo sed -i "s@motdepassedefou@$db_pwd@g" $final_path/conf.php
#setting conf file not world-readable (dude, there is a plain-text password !)
sudo chmod o-r $final_path/conf.php
#initialize database (databasename = db_user)
ynh_mysql_create_db $db_user $db_user $db_pwd
#sudo yunohost app initdb $db_user -p $db_pwd
#setting postfix to use virtual aliases file
sudo cp $postfix $postfix.emailpoubelle.bak #backup it eventually if that causes some issues
sudo sed -i "s/^virtual_alias_maps/#virtual_alias_maps/g" $postfix
echo "virtual_alias_maps = hash:$final_path/var/virtual" | sudo tee -a $postfix
#create the virtual aliases file
sudo touch $final_path/var/virtual
sudo postmap $final_path/var/virtual
sudo chown www-data $final_path/var/virtual
sudo chown www-data $final_path/var/virtual.db
#create an alias for deleted junk adresses
sudo cp /etc/aliases /etc/aliases.emailpoubelle.bak #backup it
sudo echo "devnull:/dev/null" | sudo tee -a /etc/aliases
sudo newaliases
# Modify Nginx configuration file and copy it to Nginx conf directory
sudo sed -i "s@YNH_EXAMPLE_PATH@$path@g" ../conf/nginx.conf
sudo sed -i "s@YNH_EXAMPLE_ALIAS@$final_path/www/@g" ../conf/nginx.conf
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
# If app is public, add url to SSOWat conf as skipped_uris
if [ "$is_public" = "Yes" ];
then
sudo yunohost app setting $app skipped_uris -v "/"
fi
#adding php-cli for cron
sudo apt-get update -qq
sudo apt-get install -yqq php5-cli
#adding cronjob for removing expired email addresses
sudo echo "$cronline" | sudo tee -a /etc/cron.d/emailpoubelle
sudo chmod 644 /etc/cron.d/emailpoubelle
# Restart services
sudo service nginx reload
sudo service postfix reload
sudo yunohost app ssowatconf