1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pluxml_ynh.git synced 2024-09-03 20:16:02 +02:00
pluxml_ynh/scripts/install

106 lines
2.9 KiB
Text
Raw Normal View History

2016-06-14 12:25:46 +02:00
#!/bin/bash
2014-11-12 22:22:53 +01:00
app=pluxml
#retrieve arguments
domain=$1
path=$2
admin=$3
2014-11-13 21:54:54 +01:00
password=$4
is_public=$5
2014-11-13 22:06:51 +01:00
default_lang=$6
2014-11-12 22:22:53 +01:00
# Remove trailing slash
[ "$path" != "/" ] && path=${path%/}
2014-11-12 22:22:53 +01:00
# Check domain/path availability
sudo yunohost app checkurl $domain$path -a $app
if [[ ! $? -eq 0 ]]; then
2014-11-17 14:04:17 +01:00
exit 1
2014-11-12 22:22:53 +01:00
fi
# Check user
sudo yunohost user list --json | grep -q "\"username\": \"$admin\""
if [[ ! $? -eq 0 ]]; then
echo "Wrong user" && exit 1
2014-11-12 22:22:53 +01:00
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
src_path=/var/www/$app
sudo mkdir -p $src_path
2014-11-12 22:22:53 +01:00
#copy files to src folder and set permissions
sudo cp -R ../sources/* $src_path/
sudo find $src_path -type f -name ".htaccess" | xargs sudo rm
2014-11-17 16:05:08 +01:00
#setup permissions
sudo chown -R root: $src_path
sudo chown -R www-data: $src_path/{data, plugins}
sudo find $src_path -type f | xargs sudo chmod 644
sudo find $src_path -type d | xargs sudo chmod 755
2014-11-12 22:22:53 +01:00
#configure nginx settings
folder_path=${path%/}
2014-11-12 22:22:53 +01:00
sudo sed -i "s@YNH_EXAMPLE_PATH@$path@g" ../conf/nginx.conf
# If path is only / (without subfolder), add trailing slash to alias
alias_path=$src_path
nginx_conf="../conf/nginx.conf"
[ "$path" == '/' ] && alias_path=$alias_path'/'
sudo sed -i "s@YNH_EXAMPLE_ALIAS@$alias_path@g" $nginx_conf
sudo sed -i "s@YNH_EXAMPLE_FOLDER@$folder_path@g" $nginx_conf
sudo cp $nginx_conf /etc/nginx/conf.d/$domain.d/$app.conf
2014-11-12 22:22:53 +01:00
2014-11-17 16:05:08 +01:00
#temporary set public accessible
2014-11-12 22:42:09 +01:00
sudo yunohost app setting $app unprotected_uris -v "/"
2014-11-13 19:34:55 +01:00
# Reload services
2014-11-13 21:50:18 +01:00
sudo service nginx reload
sudo yunohost app ssowatconf
#temporary add domain name to /etc/hosts
sudo sed -i "1 i\127.0.0.1 $domain #pluxml_hosts" /etc/hosts
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_path=$([ "$path" == "/" ] || echo $path)
curl -kL -o install_page.html https://$domain$curl_path/install.php >/dev/null 2>&1
2014-11-12 22:42:09 +01:00
#get the token for form validation
2014-11-17 15:01:27 +01:00
token=$(cat install_page.html | grep "input" | grep "token" | tail -1 | cut -d' ' -f3 | cut -d'"' -f2)
2014-11-12 22:42:09 +01:00
#send http POST values
2014-11-17 14:42:57 +01:00
curl -k -X POST \
--data-urlencode "default_lang=$default_lang" \
--data-urlencode "install=Installer" \
--data-urlencode "name=$admin" \
--data-urlencode "login=$admin" \
--data-urlencode "pwd=$password" \
--data-urlencode "pwd2=$password" \
--data-urlencode "token=$token" \
https://$domain$curl_path/install.php > /dev/null 2>&1
2014-11-13 19:34:55 +01:00
sudo rm -f $src_path/install.php
2014-11-17 15:01:27 +01:00
#remove domain name from /etc/hosts
sudo sed -i "/#pluxml_hosts/d" /etc/hosts
2014-11-13 19:34:55 +01:00
# If app is private, remove url to SSOWat conf from skipped_uris
if [ "$is_public" = "No" ]; then
2014-11-17 14:04:17 +01:00
sudo yunohost app setting $app unprotected_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
#allow only allowed users to access admin panel
sudo yunohost app setting $app protected_uris -v "/core/admin/"
# Reload nginx service
2014-11-12 22:22:53 +01:00
sudo service nginx reload