mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
1600e0f7da
* [CI] Add wsl linter * Implement wsl recommendations Co-authored-by: Clément Michaud <clement.michaud34@gmail.com>
20 lines
320 B
Go
20 lines
320 B
Go
package utils
|
|
|
|
import (
|
|
"net/url"
|
|
"strings"
|
|
)
|
|
|
|
// IsRedirectionSafe determines if a redirection URL is secured.
|
|
func IsRedirectionSafe(url url.URL, protectedDomain string) bool {
|
|
if url.Scheme != "https" {
|
|
return false
|
|
}
|
|
|
|
if !strings.HasSuffix(url.Hostname(), protectedDomain) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|