mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
21 lines
444 B
Go
21 lines
444 B
Go
|
package auth
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"strings"
|
||
|
|
||
|
"github.com/caos/zitadel/internal/errors"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
BearerPrefix = "Bearer "
|
||
|
)
|
||
|
|
||
|
func verifyAccessToken(ctx context.Context, token string, t TokenVerifier) (string, string, string, error) {
|
||
|
parts := strings.Split(token, BearerPrefix)
|
||
|
if len(parts) != 2 {
|
||
|
return "", "", "", errors.ThrowUnauthenticated(nil, "AUTH-7fs1e", "invalid auth header")
|
||
|
}
|
||
|
return t.VerifyAccessToken(ctx, parts[1])
|
||
|
}
|