| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- /*
- 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 gitlab
- import (
- "context"
- "errors"
- "fmt"
- "net/http"
- gitlab "gitlab.com/gitlab-org/api/client-go"
- kclient "sigs.k8s.io/controller-runtime/pkg/client"
- "sigs.k8s.io/controller-runtime/pkg/webhook/admission"
- esv1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1"
- "github.com/external-secrets/external-secrets/pkg/constants"
- "github.com/external-secrets/external-secrets/pkg/metrics"
- "github.com/external-secrets/external-secrets/pkg/utils"
- )
- // Provider satisfies the provider interface.
- type Provider struct{}
- // gitlabBase satisfies the provider.SecretsClient interface.
- type gitlabBase struct {
- kube kclient.Client
- store *esv1.GitlabProvider
- storeKind string
- namespace string
- projectsClient ProjectsClient
- projectVariablesClient ProjectVariablesClient
- groupVariablesClient GroupVariablesClient
- }
- // Capabilities return the provider supported capabilities (ReadOnly, WriteOnly, ReadWrite).
- func (g *Provider) Capabilities() esv1.SecretStoreCapabilities {
- return esv1.SecretStoreReadOnly
- }
- // Method on GitLab Provider to set up projectVariablesClient with credentials, populate projectID and environment.
- func (g *Provider) NewClient(ctx context.Context, store esv1.GenericStore, kube kclient.Client, namespace string) (esv1.SecretsClient, error) {
- storeSpec := store.GetSpec()
- if storeSpec == nil || storeSpec.Provider == nil || storeSpec.Provider.Gitlab == nil {
- return nil, errors.New("no store type or wrong store type")
- }
- storeSpecGitlab := storeSpec.Provider.Gitlab
- gl := &gitlabBase{
- kube: kube,
- store: storeSpecGitlab,
- namespace: namespace,
- storeKind: store.GetObjectKind().GroupVersionKind().Kind,
- }
- client, err := gl.getClient(ctx, storeSpecGitlab)
- if err != nil {
- return nil, err
- }
- gl.projectsClient = client.Projects
- gl.projectVariablesClient = client.ProjectVariables
- gl.groupVariablesClient = client.GroupVariables
- return gl, nil
- }
- func (g *gitlabBase) getClient(ctx context.Context, provider *esv1.GitlabProvider) (*gitlab.Client, error) {
- credentials, err := g.getAuth(ctx)
- if err != nil {
- return nil, err
- }
- // Create projectVariablesClient options
- var opts []gitlab.ClientOptionFunc
- if provider.URL != "" {
- opts = append(opts, gitlab.WithBaseURL(provider.URL))
- }
- // ClientOptionFunc from the gitlab package can be mapped with the CRD
- // in a similar way to extend functionality of the provider
- // Create a new GitLab Client using credentials and options
- client, err := gitlab.NewClient(credentials, opts...)
- if err != nil {
- return nil, err
- }
- return client, nil
- }
- func (g *gitlabBase) getVariables(ref esv1.ExternalSecretDataRemoteRef, vopts *gitlab.GetProjectVariableOptions) (*gitlab.ProjectVariable, *gitlab.Response, error) {
- data, resp, err := g.projectVariablesClient.GetVariable(g.store.ProjectID, ref.Key, vopts)
- metrics.ObserveAPICall(constants.ProviderGitLab, constants.CallGitLabProjectVariableGet, err)
- if err != nil {
- if resp != nil && resp.StatusCode == http.StatusNotFound && !isEmptyOrWildcard(g.store.Environment) {
- vopts.Filter.EnvironmentScope = "*"
- data, resp, err = g.projectVariablesClient.GetVariable(g.store.ProjectID, ref.Key, vopts)
- metrics.ObserveAPICall(constants.ProviderGitLab, constants.CallGitLabProjectVariableGet, err)
- if err != nil || resp == nil {
- return nil, resp, fmt.Errorf("error getting variable %s from GitLab: %w", ref.Key, err)
- }
- } else {
- return nil, resp, err
- }
- }
- return data, resp, nil
- }
- func (g *Provider) ValidateStore(store esv1.GenericStore) (admission.Warnings, error) {
- storeSpec := store.GetSpec()
- gitlabSpec := storeSpec.Provider.Gitlab
- accessToken := gitlabSpec.Auth.SecretRef.AccessToken
- err := utils.ValidateSecretSelector(store, accessToken)
- if err != nil {
- return nil, err
- }
- if gitlabSpec.ProjectID == "" && len(gitlabSpec.GroupIDs) == 0 {
- return nil, errors.New("projectID and groupIDs must not both be empty")
- }
- if gitlabSpec.InheritFromGroups && len(gitlabSpec.GroupIDs) > 0 {
- return nil, errors.New("defining groupIDs and inheritFromGroups = true is not allowed")
- }
- if accessToken.Key == "" {
- return nil, errors.New("accessToken.key cannot be empty")
- }
- if accessToken.Name == "" {
- return nil, errors.New("accessToken.name cannot be empty")
- }
- return nil, nil
- }
- func init() {
- esv1.Register(&Provider{}, &esv1.SecretStoreProvider{
- Gitlab: &esv1.GitlabProvider{},
- }, esv1.MaintenanceStatusMaintained)
- }
|