* security improvements id_token * add audience validation * add allowOrganizations * add allowOrganizations tests and documentation * add log warn on no configuration * anonymize tenant id * Apply suggestions from code review Co-authored-by: Misi <mgyongyosi@users.noreply.github.com> * Update docs/sources/setup-grafana/configure-security/configure-authentication/azuread/index.md Co-authored-by: Ieva <ieva.vasiljeva@grafana.com> * Update pkg/login/social/azuread_oauth_test.go Co-authored-by: Ieva <ieva.vasiljeva@grafana.com> * Update pkg/login/social/azuread_oauth_test.go Co-authored-by: Ieva <ieva.vasiljeva@grafana.com> * optimize key validation and add mising fields * fix missing key_id * lint * Update docs/sources/setup-grafana/configure-security/configure-authentication/azuread/index.md Co-authored-by: Misi <mgyongyosi@users.noreply.github.com> * lint docs --------- Co-authored-by: Misi <mgyongyosi@users.noreply.github.com> Co-authored-by: Ieva <ieva.vasiljeva@grafana.com>
40 lines
792 B
Go
40 lines
792 B
Go
package remotecache
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
)
|
|
|
|
type FakeCacheStorage struct {
|
|
Storage map[string][]byte
|
|
}
|
|
|
|
func (fcs FakeCacheStorage) Set(_ context.Context, key string, value []byte, exp time.Duration) error {
|
|
fcs.Storage[key] = value
|
|
return nil
|
|
}
|
|
|
|
func (fcs FakeCacheStorage) Get(_ context.Context, key string) ([]byte, error) {
|
|
value, exist := fcs.Storage[key]
|
|
if !exist {
|
|
return nil, ErrCacheItemNotFound
|
|
}
|
|
|
|
return value, nil
|
|
}
|
|
|
|
func (fcs FakeCacheStorage) Delete(_ context.Context, key string) error {
|
|
delete(fcs.Storage, key)
|
|
return nil
|
|
}
|
|
|
|
func (fcs FakeCacheStorage) Count(_ context.Context, prefix string) (int64, error) {
|
|
return int64(len(fcs.Storage)), nil
|
|
}
|
|
|
|
func NewFakeCacheStorage() CacheStorage {
|
|
return FakeCacheStorage{
|
|
Storage: map[string][]byte{},
|
|
}
|
|
}
|