You've already forked oauth2-proxy
mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2025-06-23 00:40:46 +02:00
* Add sensible logging flag to default setup for logger
* Add Redis lock
* Fix default value flag for sensitive logging
* Split RefreshSessionIfNeeded in two methods and use Redis lock
* Small adjustments to doc and code
* Remove sensible logging
* Fix method names in ticket.go
* Revert "Fix method names in ticket.go"
This reverts commit 408ba1a1a5
.
* Fix methods name in ticket.go
* Remove block in Redis client get
* Increase lock time to 1 second
* Perform retries, if session store is locked
* Reverse if condition, because it should return if session does not have to be refreshed
* Update go.sum
* Update MockStore
* Return error if loading session fails
* Fix and update tests
* Change validSession to session in docs and strings
* Change validSession to session in docs and strings
* Fix docs
* Fix wrong field name
* Fix linting
* Fix imports for linting
* Revert changes except from locking functionality
* Add lock feature on session state
* Update from master
* Remove errors package, because it is not used
* Only pass context instead of request to lock
* Use lock key
* By default use NoOpLock
* Remove debug output
* Update ticket_test.go
* Map internal error to sessions error
* Add ErrLockNotObtained
* Enable lock peek for all redis clients
* Use lock key prefix consistent
* Fix imports
* Use exists method for peek lock
* Fix imports
* Fix imports
* Fix imports
* Remove own Dockerfile
* Fix imports
* Fix tests for ticket and session store
* Fix session store test
* Update pkg/apis/sessions/interfaces.go
Co-authored-by: Joel Speed <Joel.speed@hotmail.co.uk>
* Do not wrap lock method
Co-authored-by: Joel Speed <Joel.speed@hotmail.co.uk>
* Use errors package for lock constants
* Use better naming for initLock function
* Add comments
* Add session store lock test
* Fix tests
* Fix tests
* Fix tests
* Fix tests
* Add cookies after saving session
* Add mock lock
* Fix imports for mock_lock.go
* Store mock lock for key
* Apply elapsed time on mock lock
* Check if lock is initially applied
* Reuse existing lock
* Test all lock methods
* Update CHANGELOG.md
* Use redis client methods in redis.lock for release an refresh
* Use lock key suffix instead of prefix for lock key
* Add comments for Lock interface
* Update comment for Lock interface
* Update CHANGELOG.md
* Change LockSuffix to const
* Check lock on already loaded session
* Use global var for loadedSession in lock tests
* Use lock instance for refreshing and releasing of lock
* Update possible error type for Refresh
Co-authored-by: Joel Speed <Joel.speed@hotmail.co.uk>
74 lines
1.7 KiB
Go
74 lines
1.7 KiB
Go
package redis
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/go-redis/redis/v8"
|
|
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/apis/sessions"
|
|
)
|
|
|
|
// Client is wrapper interface for redis.Client and redis.ClusterClient.
|
|
type Client interface {
|
|
Get(ctx context.Context, key string) ([]byte, error)
|
|
Lock(key string) sessions.Lock
|
|
Set(ctx context.Context, key string, value []byte, expiration time.Duration) error
|
|
Del(ctx context.Context, key string) error
|
|
}
|
|
|
|
var _ Client = (*client)(nil)
|
|
|
|
type client struct {
|
|
*redis.Client
|
|
}
|
|
|
|
func newClient(c *redis.Client) Client {
|
|
return &client{
|
|
Client: c,
|
|
}
|
|
}
|
|
|
|
func (c *client) Get(ctx context.Context, key string) ([]byte, error) {
|
|
return c.Client.Get(ctx, key).Bytes()
|
|
}
|
|
|
|
func (c *client) Set(ctx context.Context, key string, value []byte, expiration time.Duration) error {
|
|
return c.Client.Set(ctx, key, value, expiration).Err()
|
|
}
|
|
|
|
func (c *client) Del(ctx context.Context, key string) error {
|
|
return c.Client.Del(ctx, key).Err()
|
|
}
|
|
|
|
func (c *client) Lock(key string) sessions.Lock {
|
|
return NewLock(c.Client, key)
|
|
}
|
|
|
|
var _ Client = (*clusterClient)(nil)
|
|
|
|
type clusterClient struct {
|
|
*redis.ClusterClient
|
|
}
|
|
|
|
func newClusterClient(c *redis.ClusterClient) Client {
|
|
return &clusterClient{
|
|
ClusterClient: c,
|
|
}
|
|
}
|
|
|
|
func (c *clusterClient) Get(ctx context.Context, key string) ([]byte, error) {
|
|
return c.ClusterClient.Get(ctx, key).Bytes()
|
|
}
|
|
|
|
func (c *clusterClient) Set(ctx context.Context, key string, value []byte, expiration time.Duration) error {
|
|
return c.ClusterClient.Set(ctx, key, value, expiration).Err()
|
|
}
|
|
|
|
func (c *clusterClient) Del(ctx context.Context, key string) error {
|
|
return c.ClusterClient.Del(ctx, key).Err()
|
|
}
|
|
|
|
func (c *clusterClient) Lock(key string) sessions.Lock {
|
|
return NewLock(c.ClusterClient, key)
|
|
}
|