2016-06-14 12:25:46 +02:00
|
|
|
#!/bin/bash
|
2014-11-12 22:22:53 +01:00
|
|
|
|
2016-06-15 23:09:45 +02:00
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
set -eu
|
|
|
|
|
2016-06-18 10:25:09 +02:00
|
|
|
# Retrieve arguments
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
|
|
|
path=$YNH_APP_ARG_PATH
|
|
|
|
admin=$YNH_APP_ARG_ADMIN
|
|
|
|
password=$YNH_APP_ARG_PASSWORD
|
2016-06-28 11:32:13 +02:00
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
2016-06-26 21:56:56 +02:00
|
|
|
default_lang=$YNH_APP_ARG_DEFAULT_LANG
|
2014-11-12 22:22:53 +01:00
|
|
|
|
2016-06-15 23:39:38 +02:00
|
|
|
# Source YunoHost helpers
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2015-08-18 09:29:41 +02:00
|
|
|
# Remove trailing slash
|
|
|
|
[ "$path" != "/" ] && path=${path%/}
|
|
|
|
|
2014-11-12 22:22:53 +01:00
|
|
|
# Check domain/path availability
|
2016-06-18 10:54:16 +02:00
|
|
|
sudo yunohost app checkurl "${domain}${path}" -a "$app" \
|
|
|
|
|| ynh_die "Path not available: ${domain}${path}"
|
2014-11-12 22:22:53 +01:00
|
|
|
|
2016-06-18 10:54:16 +02:00
|
|
|
# Check the admin exists in YunoHost users
|
|
|
|
ynh_user_exists $admin
|
2014-11-12 22:22:53 +01:00
|
|
|
|
|
|
|
# Save app settings
|
2016-06-18 10:54:16 +02:00
|
|
|
ynh_app_setting_set "$app" admin "$admin"
|
|
|
|
ynh_app_setting_set "$app" is_public "$is_public"
|
2014-11-12 22:22:53 +01:00
|
|
|
|
2016-06-18 10:54:16 +02:00
|
|
|
# Create path for copying
|
2016-06-15 20:17:31 +02:00
|
|
|
src_path=/var/www/$app
|
|
|
|
sudo mkdir -p $src_path
|
2014-11-12 22:22:53 +01:00
|
|
|
|
2016-06-15 21:10:02 +02:00
|
|
|
# Retrieve sources and install them
|
|
|
|
version=$(cat ../conf/upstream_version)
|
|
|
|
wget -nc --quiet https://github.com/pluxml/PluXml/archive/$version.zip -P /tmp
|
2016-06-28 11:32:13 +02:00
|
|
|
sudo unzip -oq /tmp/$version.zip -d /tmp
|
2016-06-18 15:31:53 +02:00
|
|
|
sudo mv /tmp/PluXml-$version/* $src_path
|
2014-11-17 16:05:08 +01:00
|
|
|
|
2016-06-18 10:54:16 +02:00
|
|
|
# Set permissions
|
2016-06-15 20:17:31 +02:00
|
|
|
sudo chown -R root: $src_path
|
2016-06-15 22:03:26 +02:00
|
|
|
sudo chown -R www-data: $src_path/{data,plugins}
|
2016-06-15 20:17:31 +02:00
|
|
|
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
|
|
|
|
2016-06-18 10:54:16 +02:00
|
|
|
# Configure nginx settings
|
2015-08-18 09:29:41 +02:00
|
|
|
folder_path=${path%/}
|
2014-11-12 22:22:53 +01:00
|
|
|
sudo sed -i "s@YNH_EXAMPLE_PATH@$path@g" ../conf/nginx.conf
|
2015-08-18 09:29:41 +02:00
|
|
|
# If path is only / (without subfolder), add trailing slash to alias
|
2016-06-15 20:17:31 +02:00
|
|
|
alias_path=$src_path
|
2016-06-15 20:25:51 +02:00
|
|
|
nginx_conf="../conf/nginx.conf"
|
2015-08-18 09:29:41 +02:00
|
|
|
[ "$path" == '/' ] && alias_path=$alias_path'/'
|
2016-06-15 20:25:51 +02:00
|
|
|
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
|
|
|
|
2016-06-18 10:54:16 +02:00
|
|
|
# Temporary set public accessible
|
|
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
2014-11-13 19:34:55 +01:00
|
|
|
|
2016-06-14 12:55:55 +02:00
|
|
|
# Reload services
|
2014-11-13 21:50:18 +01:00
|
|
|
sudo service nginx reload
|
|
|
|
sudo yunohost app ssowatconf
|
|
|
|
|
2016-06-18 10:54:16 +02:00
|
|
|
# Temporary add domain name to /etc/hosts
|
2014-11-23 17:30:50 +01:00
|
|
|
sudo sed -i "1 i\127.0.0.1 $domain #pluxml_hosts" /etc/hosts
|
|
|
|
|
2016-06-18 10:54:16 +02:00
|
|
|
# Make request to install app
|
|
|
|
# Get the html page
|
2015-08-18 09:29:41 +02:00
|
|
|
curl_path=$([ "$path" == "/" ] || echo $path)
|
|
|
|
curl -kL -o install_page.html https://$domain$curl_path/install.php >/dev/null 2>&1
|
2014-11-23 17:30:50 +01:00
|
|
|
|
2016-06-18 10:54:16 +02: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)
|
2016-06-18 10:54:16 +02:00
|
|
|
# Send http POST values
|
2014-11-17 14:42:57 +01:00
|
|
|
curl -k -X POST \
|
2014-11-17 14:39:11 +01:00
|
|
|
--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" \
|
2015-08-18 09:29:41 +02:00
|
|
|
https://$domain$curl_path/install.php > /dev/null 2>&1
|
2014-11-13 19:34:55 +01:00
|
|
|
|
2016-06-15 20:17:31 +02:00
|
|
|
sudo rm -f $src_path/install.php
|
2014-11-17 15:01:27 +01:00
|
|
|
|
2016-06-18 10:54:16 +02:00
|
|
|
# Remove domain name from /etc/hosts
|
2014-11-23 17:30:50 +01:00
|
|
|
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
|
2016-06-18 10:54:16 +02:00
|
|
|
if [ "$is_public" == "No" ]; then
|
|
|
|
ynh_app_setting_set "$app" unprotected_uris -d
|
2014-11-12 22:22:53 +01:00
|
|
|
fi
|
|
|
|
|
2016-06-18 10:54:16 +02:00
|
|
|
# Add 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
|
|
|
|
2016-06-18 10:54:16 +02:00
|
|
|
# Allow only allowed users to access admin panel
|
|
|
|
ynh_app_setting_set "$app" protected_uris "/core/admin/"
|
2014-11-23 19:42:28 +01:00
|
|
|
|
2016-06-14 12:55:55 +02:00
|
|
|
# Reload nginx service
|
2014-11-12 22:22:53 +01:00
|
|
|
sudo service nginx reload
|