mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-01 16:02:25 -05:00
[chore] Move deps to code.superseriousbusiness.org (#4054)
This commit is contained in:
parent
68ed7aba25
commit
ffde1b150f
955 changed files with 1970 additions and 3639 deletions
30
vendor/code.superseriousbusiness.org/oauth2/v4/manage/util.go
generated
vendored
Normal file
30
vendor/code.superseriousbusiness.org/oauth2/v4/manage/util.go
generated
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
package manage
|
||||
|
||||
import (
|
||||
"net/url"
|
||||
"strings"
|
||||
|
||||
"code.superseriousbusiness.org/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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue