2015-08-23 17:33:13 +02:00
#!/bin/bash
2017-02-17 13:02:11 +01:00
source .fonctions # Charge les fonctions génériques habituellement utilisées dans le script
2015-08-23 17:33:13 +02:00
2017-02-17 13:02:11 +01:00
# Récupère les infos de l'application.
app=$YNH_APP_INSTANCE_NAME
2015-08-23 17:33:13 +02:00
2017-02-17 13:02:11 +01:00
# Source app helpers
source /usr/share/yunohost/helpers
domain=$(ynh_app_setting_get $app domain)
path=$(ynh_app_setting_get $app path)
2017-02-17 15:45:54 +01:00
is_public=$(ynh_app_setting_get $app is_public)
2017-02-17 13:02:11 +01:00
admin=$(ynh_app_setting_get $app admin)
final_path=$(ynh_app_setting_get $app final_path)
db_pwd=$(ynh_app_setting_get $app db_pwd)
db_user=$(ynh_app_setting_get $app db_user)
email=$(ynh_app_setting_get $app email)
upload=$(ynh_app_setting_get $app upload)
2017-02-19 14:44:33 +01:00
run_exec=$(ynh_app_setting_get $app run_exec)
2017-02-17 13:02:11 +01:00
CHECK_PATH # Vérifie et corrige la syntaxe du path.
# We download the sources and check the md5sum
# 1 - hubzilla
hubzilla_file=`sudo cat ../sources/hubzilla/source_file`;
2017-02-17 14:04:56 +01:00
sudo wget -nv -i ../sources/hubzilla/source_url -O ${hubzilla_file}.zip
2017-02-17 13:02:11 +01:00
sudo md5sum -c ../sources/hubzilla/source_md5 --status || (echo "Corrupt source" >&2 && false)
2017-02-17 14:47:52 +01:00
sudo unzip -q ${hubzilla_file}.zip -d ../sources/hubzilla/
2017-02-17 14:04:56 +01:00
sudo cp -r ../sources/hubzilla/${hubzilla_file}/. $final_path
2017-02-17 13:02:11 +01:00
# 2 - Addons
addons_file=`sudo cat ../sources/hubzilla-addons/source_file`;
2017-02-17 14:04:56 +01:00
sudo wget -nv -i ../sources/hubzilla-addons/source_url -O ${addons_file}.zip
2017-02-17 13:02:11 +01:00
sudo md5sum -c ../sources/hubzilla-addons/source_md5 --status || (echo "Corrupt source" >&2 && false)
2017-02-17 14:47:52 +01:00
sudo unzip -q ${addons_file}.zip -d ../sources/hubzilla-addons/
2017-02-17 14:04:56 +01:00
sudo mkdir $final_path/addon
sudo cp -r ../sources/hubzilla-addons/${addons_file}/. $final_path/addon
2017-02-17 13:02:11 +01:00
# 3 - some extra folders
sudo mkdir -p "${final_path}/store/[data]/smarty3"
sudo chmod -R 777 $final_path/store
# Copy the template install/htconfig.sample.php to .htconfig.php
sudo cp $final_path/install/htconfig.sample.php $final_path/.htconfig.php
# Use sed to add the database information to .htconfig.php
sudo sed -i "s/your.mysqlhost.com/localhost/g" $final_path/.htconfig.php
sudo sed -i "s/mysqlpassword/$db_pwd/g" $final_path/.htconfig.php
sudo sed -i "s/mysqlusername/$db_user/g" $final_path/.htconfig.php
sudo sed -i "s/mysqldatabasename/$db_user/g" $final_path/.htconfig.php
sudo sed -i "s/mysite.example/$domain/g" $final_path/.htconfig.php
sudo sed -i "s/if the auto install failed, put a unique random string here/$(ynh_string_random)$(ynh_string_random)$(ynh_string_random)/g" $final_path/.htconfig.php
sudo sed -i "s/ADMIN_EMAIL_REPLACE/$email/g" $final_path/.htconfig.php
2015-08-23 17:33:13 +02:00
# Set www-data to owner
2017-02-17 13:02:11 +01:00
sudo chown -R www-data:www-data $final_path
2015-08-23 17:33:13 +02:00
# Modify Nginx configuration file and copy it to Nginx conf directory
sed -i "s@YNH_WWW_PATH@$path@g" ../conf/nginx.conf
2017-02-17 13:02:11 +01:00
sed -i "s@YNH_WWW_ALIAS@$final_path@g" ../conf/nginx.conf
2017-02-19 14:31:10 +01:00
sed -i "s@UPLOADTOCHANGE@$upload@g" ../conf/nginx.conf
2017-02-17 13:02:11 +01:00
nginxconf=/etc/nginx/conf.d/$domain.d/$app.conf
sudo cp ../conf/nginx.conf $nginxconf
sudo chown root: $nginxconf
sudo chmod 600 $nginxconf
# Modify php.ini to allow exec() function and increase the upload size limits
2017-02-19 14:44:33 +01:00
if [ "$run_exec" = "Yes" ];
then
sudo sed -i 's/pcntl_exec//g' /etc/php5/fpm/php.ini
else
echo "no modification of php.ini"
fi
# Dedicated php-fpm
2017-02-17 13:02:11 +01:00
sed -i "s@UPLOADTOCHANGE@$upload@g" ../conf/php-fpm.conf
2017-02-17 14:09:39 +01:00
sed -i "s@NAMETOCHANGE@$app@g" ../conf/php-fpm.conf
2017-02-17 13:02:11 +01:00
phpfpmconf=/etc/php5/fpm/pool.d/$app.conf
sudo cp ../conf/php-fpm.conf $phpfpmconf
sudo chown root: $phpfpmconf
2015-08-23 17:33:13 +02:00
2017-02-17 13:02:11 +01:00
# Set up poller
sed -i "s@YNH_WWW_PATH@$final_path@g" ../conf/poller-cron
sudo cp ../conf/poller-cron /etc/cron.d/$app
2017-02-11 02:05:28 +01:00
2017-02-17 15:45:54 +01:00
# Make app public if necessary
if [ "$is_public" = "Yes" ];
then
ynh_app_setting_set $app skipped_uris "/"
else
ynh_app_setting_set $app protected_uris "/"
fi
2015-08-23 17:33:13 +02:00
2017-02-17 13:02:11 +01:00
# Reload services
2017-02-17 21:55:01 +01:00
sudo service php5-fpm reload || true
2017-02-17 13:02:11 +01:00
sudo service nginx reload || true
2015-08-23 17:33:13 +02:00
sudo yunohost app ssowatconf