mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-06-05 21:59:39 +02:00
[chore] migrate oauth2 -> codeberg (#3857)
This commit is contained in:
30
vendor/codeberg.org/superseriousbusiness/oauth2/v4/manage/util.go
generated
vendored
Normal file
30
vendor/codeberg.org/superseriousbusiness/oauth2/v4/manage/util.go
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
package manage
|
||||
|
||||
import (
|
||||
"net/url"
|
||||
"strings"
|
||||
|
||||
"codeberg.org/superseriousbusiness/oauth2/v4/errors"
|
||||
)
|
||||
|
||||
type (
|
||||
// ValidateURIHandler validates that redirectURI is contained in baseURI
|
||||
ValidateURIHandler func(baseURI, redirectURI string) error
|
||||
)
|
||||
|
||||
// DefaultValidateURI validates that redirectURI is contained in baseURI
|
||||
func DefaultValidateURI(baseURI string, redirectURI string) error {
|
||||
base, err := url.Parse(baseURI)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
redirect, err := url.Parse(redirectURI)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if !strings.HasSuffix(redirect.Host, base.Host) {
|
||||
return errors.ErrInvalidRedirectURI
|
||||
}
|
||||
return nil
|
||||
}
|
Reference in New Issue
Block a user