2016-03-01 10:47:41 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-12-06 03:09:15 +01:00
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
set -eu
|
2016-03-01 10:47:41 +01:00
|
|
|
|
2016-12-06 03:09:15 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2016-03-01 10:47:41 +01:00
|
|
|
|
2016-12-06 03:09:15 +01:00
|
|
|
# Source YunoHost helpers
|
|
|
|
source /usr/share/yunohost/helpers
|
2016-03-01 10:47:41 +01:00
|
|
|
|
2016-12-06 03:09:15 +01:00
|
|
|
# Retrieve arguments
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
|
|
path=$(ynh_app_setting_get "$app" path)
|
|
|
|
is_public=$(ynh_app_setting_get "$app" is_public)
|
|
|
|
|
|
|
|
# Download source
|
2016-12-06 15:11:20 +01:00
|
|
|
sudo wget -q https://raw.githubusercontent.com/keeweb/keeweb/gh-pages/index.html
|
|
|
|
sudo wget -q https://raw.githubusercontent.com/keeweb/keeweb/gh-pages/manifest.appcache
|
2016-12-06 03:09:15 +01:00
|
|
|
sudo sed -i.bak 's/(no-config)/config.json/g' index.html
|
|
|
|
|
2016-03-01 10:47:41 +01:00
|
|
|
# Copy source files
|
2016-12-06 03:09:15 +01:00
|
|
|
src_path=/var/www/$app
|
|
|
|
sudo mkdir -p $src_path
|
2016-12-06 11:44:12 +01:00
|
|
|
sudo cp -a index.html manifest.appcache $src_path
|
|
|
|
#sudo cp -a ../conf/config.json $src_path
|
2016-03-01 10:47:41 +01:00
|
|
|
|
|
|
|
# Set permissions to app files
|
2016-12-06 03:09:15 +01:00
|
|
|
sudo chown -R root: $src_path
|
2016-03-01 10:47:41 +01:00
|
|
|
|
|
|
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
|
|
|
sed -i "s@YNH_WWW_PATH@$path@g" ../conf/nginx.conf
|
2016-12-06 03:09:15 +01:00
|
|
|
sed -i "s@YNH_WWW_ALIAS@$src_path/@g" ../conf/nginx.conf
|
2016-03-01 10:47:41 +01:00
|
|
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
|
2016-12-06 03:09:15 +01:00
|
|
|
# Migrate old apps
|
|
|
|
if [ "$is_public" = "Yes" ]; then
|
2016-12-06 03:14:26 +01:00
|
|
|
ynh_app_setting_set "$app" is_public "1"
|
2016-12-06 03:16:17 +01:00
|
|
|
is_public=$(ynh_app_setting_get "$app" is_public)
|
2016-12-06 03:09:15 +01:00
|
|
|
elif [ "$is_public" = "No" ]; then
|
2016-12-06 03:14:26 +01:00
|
|
|
ynh_app_setting_set "$app" is_public "0"
|
2016-12-06 03:16:17 +01:00
|
|
|
is_public=$(ynh_app_setting_get "$app" is_public)
|
2016-12-06 03:09:15 +01:00
|
|
|
fi
|
|
|
|
|
2016-03-01 10:47:41 +01:00
|
|
|
# If app is public, add url to SSOWat conf as skipped_uris
|
2016-12-06 03:09:15 +01:00
|
|
|
if [[ $is_public -eq 1 ]]; then
|
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway.
|
|
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
2016-03-01 10:47:41 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Restart services
|
|
|
|
sudo service nginx reload
|