mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
33 lines
1.0 KiB
Go
33 lines
1.0 KiB
Go
|
package authz
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"encoding/base64"
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/zitadel/zitadel/internal/crypto"
|
||
|
zitadel_errors "github.com/zitadel/zitadel/internal/errors"
|
||
|
"github.com/zitadel/zitadel/internal/telemetry/tracing"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
SessionTokenPrefix = "sess_"
|
||
|
SessionTokenFormat = SessionTokenPrefix + "%s:%s"
|
||
|
)
|
||
|
|
||
|
func SessionTokenVerifier(algorithm crypto.EncryptionAlgorithm) func(ctx context.Context, sessionToken, sessionID, tokenID string) (err error) {
|
||
|
return func(ctx context.Context, sessionToken, sessionID, tokenID string) (err error) {
|
||
|
decodedToken, err := base64.RawURLEncoding.DecodeString(sessionToken)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
_, spanPasswordComparison := tracing.NewNamedSpan(ctx, "crypto.CompareHash")
|
||
|
token, err := algorithm.DecryptString(decodedToken, algorithm.EncryptionKeyID())
|
||
|
spanPasswordComparison.EndWithError(err)
|
||
|
if err != nil || token != fmt.Sprintf(SessionTokenFormat, sessionID, tokenID) {
|
||
|
return zitadel_errors.ThrowPermissionDenied(err, "COMMAND-sGr42", "Errors.Session.Token.Invalid")
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
}
|