-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patherrors.go
34 lines (28 loc) · 1.22 KB
/
errors.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package osecure
import (
"errors"
"fmt"
"strings"
)
var (
ErrorInvalidSession = errors.New("invalid session") // Authorize()
ErrorInvalidAuthorizationSyntax = errors.New("invalid authorization syntax") // Authorize()
ErrorUnsupportedAuthorizationScheme = errors.New("unsupported authorization scheme") // Authorize()
ErrorInvalidClientID = errors.New("invalid client ID (audience of token)") // Authorize()
ErrorInvalidUserID = errors.New("invalid user ID (subject of token)") // not used
)
const (
ErrorStringFailedToExchangeAuthorizationCode = "failed to exchange authorization code"
ErrorStringUnableToSetCookie = "unable to set cookie"
ErrorStringUnauthorized = "unauthorized"
ErrorStringCannotIntrospectToken = "cannot introspect token"
ErrorStringCannotGetPermission = "cannot get permission"
ErrorStringInvalidState = "invalid state"
)
func WrapError(msg string, err error) error {
return fmt.Errorf("%s: %w", msg, err)
}
func CompareErrorMessage(err error, msg string) bool {
errMsg := strings.SplitN(err.Error(), ":", 2)[0]
return errMsg == msg
}