2014-11-12 22:22:53 +01:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
app=pluxml
|
|
|
|
|
|
|
|
#retrieve arguments
|
|
|
|
domain=$1
|
|
|
|
path=$2
|
|
|
|
admin=$3
|
|
|
|
is_public=$4
|
2014-11-13 19:34:55 +01:00
|
|
|
password=$5
|
2014-11-12 22:22:53 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Check domain/path availability
|
|
|
|
sudo yunohost app checkurl $domain$path -a $app
|
|
|
|
if [[ ! $? -eq 0 ]]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check user
|
|
|
|
sudo yunohost user list --json | grep -q "\"username\": \"$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"
|
2014-11-12 22:42:09 +01:00
|
|
|
sudo yunohost app setting $app domain -v "$domain"
|
|
|
|
sudo yunohost app setting $app path -v "$path"
|
2014-11-12 22:22:53 +01:00
|
|
|
|
|
|
|
#create path for copying
|
|
|
|
final_path=/var/www/$app
|
|
|
|
sudo mkdir -p $final_path
|
|
|
|
|
|
|
|
#copy files to final folder and set permissions
|
2014-11-12 22:42:09 +01:00
|
|
|
sudo cp -R ../sources/* $final_path/
|
2014-11-12 22:22:53 +01:00
|
|
|
sudo chown www-data:www-data -R $final_path
|
|
|
|
|
|
|
|
#configure nginx settings
|
|
|
|
sudo sed -i "s@YNH_EXAMPLE_PATH@$path@g" ../conf/nginx.conf
|
2014-11-12 22:29:05 +01:00
|
|
|
sudo sed -i "s@YNH_EXAMPLE_ALIAS@$final_path@g" ../conf/nginx.conf
|
2014-11-12 22:22:53 +01:00
|
|
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
|
2014-11-13 19:34:55 +01:00
|
|
|
#temporal set public acessible
|
2014-11-12 22:42:09 +01:00
|
|
|
sudo yunohost app setting $app unprotected_uris -v "/"
|
2014-11-13 19:34:55 +01:00
|
|
|
|
|
|
|
#make request to install app
|
2014-11-12 22:42:09 +01:00
|
|
|
#get the html page
|
|
|
|
curl -kL -o "install_page.html" https://$domain/$path/install.php >/dev/null 2>&1
|
|
|
|
#get the token for form validation
|
|
|
|
token=$(cat "install_page.html" | grep "input" | grep "token" | tail -1 | cut -d' ' -f3 | cut -d'"' -f2)
|
|
|
|
#send http POST values
|
|
|
|
curl -k -X POST --data "default_lang=fr&timezone=Greenland&install=Installer&name=$admin&login=$admin&pwd=$password&pwd2=$password&token=$token" https://$domain/$path/install.php >/dev/null 2>&1
|
2014-11-13 19:34:55 +01:00
|
|
|
sudo chmod 750 -R $final_path
|
|
|
|
|
|
|
|
# If app is private, remove url to SSOWat conf from skipped_uris
|
|
|
|
if [ "$is_public" = "No" ];
|
|
|
|
then
|
2014-11-12 22:42:09 +01:00
|
|
|
sudo yunohost app setting $app skipped_uris -d
|
2014-11-12 22:22:53 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
#adding admin to the allowed users
|
2014-11-12 22:26:17 +01:00
|
|
|
sudo yunohost app addaccess $app -u $admin
|
2014-11-12 22:22:53 +01:00
|
|
|
|
2014-11-13 21:27:08 +01:00
|
|
|
#sudo rm -f $final_path/install.php
|
2014-11-12 22:22:53 +01:00
|
|
|
# Restart services
|
|
|
|
sudo service nginx reload
|
|
|
|
sudo yunohost app ssowatconf
|