| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /*
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package fake
- import (
- "context"
- "fmt"
- "sigs.k8s.io/controller-runtime/pkg/client"
- esv1alpha1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1alpha1"
- "github.com/external-secrets/external-secrets/pkg/provider"
- "github.com/external-secrets/external-secrets/pkg/provider/schema"
- )
- var (
- errNotFound = fmt.Errorf("secret value not found")
- errMissingStore = fmt.Errorf("missing store provider")
- errMissingFakeProvider = fmt.Errorf("missing store provider fake")
- )
- type Provider struct {
- config *esv1alpha1.FakeProvider
- }
- func (p *Provider) NewClient(ctx context.Context, store esv1alpha1.GenericStore, kube client.Client, namespace string) (provider.SecretsClient, error) {
- cfg, err := getProvider(store)
- if err != nil {
- return nil, err
- }
- return &Provider{
- config: cfg,
- }, nil
- }
- func getProvider(store esv1alpha1.GenericStore) (*esv1alpha1.FakeProvider, error) {
- if store == nil {
- return nil, errMissingStore
- }
- spc := store.GetSpec()
- if spc == nil || spc.Provider == nil || spc.Provider.Fake == nil {
- return nil, errMissingFakeProvider
- }
- return spc.Provider.Fake, nil
- }
- // GetSecret returns a single secret from the provider.
- func (p *Provider) GetSecret(ctx context.Context, ref esv1alpha1.ExternalSecretDataRemoteRef) ([]byte, error) {
- for _, data := range p.config.Data {
- if data.Key == ref.Key && data.Version == ref.Version {
- return []byte(data.Value), nil
- }
- }
- return nil, errNotFound
- }
- // GetSecretMap returns multiple k/v pairs from the provider.
- func (p *Provider) GetSecretMap(ctx context.Context, ref esv1alpha1.ExternalSecretDataRemoteRef) (map[string][]byte, error) {
- for _, data := range p.config.Data {
- if data.Key != ref.Key || data.Version != ref.Version || data.ValueMap == nil {
- continue
- }
- return convertMap(data.ValueMap), nil
- }
- return nil, errNotFound
- }
- func convertMap(in map[string]string) map[string][]byte {
- m := make(map[string][]byte)
- for k, v := range in {
- m[k] = []byte(v)
- }
- return m
- }
- func (p *Provider) Close(ctx context.Context) error {
- return nil
- }
- func init() {
- schema.Register(&Provider{}, &esv1alpha1.SecretStoreProvider{
- Fake: &esv1alpha1.FakeProvider{},
- })
- }
|