mirror of
https://github.com/YunoHost-Apps/redirect_ynh.git
synced 2024-09-03 20:16:10 +02:00
25 lines
999 B
Bash
25 lines
999 B
Bash
#!/bin/bash
|
|
|
|
URL_REGEX_VALID='(https?|ftp|file)://[-A-Za-z0-9\+&@#/%?=~_|!:,.;]*[-A-Za-z0-9\+&@#/%=~_|]'
|
|
URL_REGEX_SECURE='^(http://(127\.[0-9]+\.[0-9]+\.[0-9]+|localhost)|https://.*)(:[0-9]+)?(/.*)?$'
|
|
|
|
_validate_redirect_uri() {
|
|
if [[ ! $target =~ $URL_REGEX_VALID ]]; then
|
|
ynh_die --message="Invalid destination: $target" 1
|
|
fi
|
|
|
|
# Avoid uncrypted remote destination with reverse proxy mode
|
|
# Indeed the SSO send the password in all requests in HTTP headers
|
|
if [[ "$redirect_type" = "reverseproxy" ]] && [[ ! $target =~ $URL_REGEX_SECURE ]]; then
|
|
ynh_die --message="For secure reason, you can't use an unencrypted http remote destination couple with ssowat for your reverse proxy: $target" 1
|
|
fi
|
|
}
|
|
|
|
_set_ynh_overlay() {
|
|
# Set the comment (or not) for the yunohost overlay
|
|
overlay_comment=""
|
|
if [[ "$ynh_overlay" == 0 ]]; then
|
|
overlay_comment="# "
|
|
fi
|
|
ynh_app_setting_set --app=$app --key=overlay_comment --value="$overlay_comment"
|
|
}
|