| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069 |
- /*
- Copyright © The ESO Authors
- 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
- https://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 onepasswordsdk implements a provider for 1Password secrets management service.
- package onepasswordsdk
- import (
- "bytes"
- "context"
- "encoding/json"
- "errors"
- "fmt"
- "regexp"
- "strings"
- "github.com/1password/onepassword-sdk-go"
- corev1 "k8s.io/api/core/v1"
- esv1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1"
- "github.com/external-secrets/external-secrets/runtime/esutils/metadata"
- "github.com/external-secrets/external-secrets/runtime/find"
- "github.com/external-secrets/external-secrets/runtime/metrics"
- )
- const (
- fieldPrefix = "field"
- filePrefix = "file"
- prefixSplitter = "/"
- vaultCachePrefix = "vault:"
- itemCachePrefix = "item:"
- fileCachePrefix = "file:"
- envAllCachePrefix = "env-all:"
- defaultFieldLabel = "password"
- errMsgUpdateItem = "failed to update item: %w"
- errMsgCreateItem = "failed to create item: %w"
- errMsgParsePushMeta = "failed to parse push secret metadata: %w"
- errMsgExpectedOneField = "found more than 1 fields with title '%s' in '%s', got %d"
- errMsgExpectedOneFile = "found more than 1 files with title '%s' in '%s', got %d"
- )
- // ErrKeyNotFound is returned when a key is not found in the 1Password Vaults.
- var ErrKeyNotFound = errors.New("key not found")
- // nativeIDPattern matches a 1Password unique identifier per the SDK
- // docs (^[\da-z]{26}$). Despite being called "UUIDs" in 1Password's SDK and docs,
- // they are not RFC 4122 UUIDs.
- // https://www.1password.dev/cli/reference#unique-identifiers-ids
- var nativeIDPattern = regexp.MustCompile(`^[\da-z]{26}$`)
- func isNativeID(s string) bool {
- return nativeIDPattern.MatchString(s)
- }
- // PushSecretMetadataSpec defines the metadata configuration for pushing secrets to 1Password.
- type PushSecretMetadataSpec struct {
- Tags []string `json:"tags,omitempty"`
- FieldType string `json:"fieldType,omitempty"`
- }
- // GetSecret returns a single secret from 1Password provider.
- // Follows syntax is used for the ref key: https://developer.1password.com/docs/cli/secret-reference-syntax/
- func (p *SecretsClient) GetSecret(ctx context.Context, ref esv1.ExternalSecretDataRemoteRef) ([]byte, error) {
- if ref.Version != "" {
- return nil, errors.New(errVersionNotImplemented)
- }
- if p.source == sourceEnvironment {
- return p.getEnvironmentSecret(ctx, ref.Key)
- }
- key := p.constructRefKey(ref.Key)
- if cached, ok := p.cacheGet(key); ok {
- return cached, nil
- }
- // An item cached by GetAllSecrets/GetSecretMap is keyed by item name, not by the
- // Resolve reference. Serve plain field lookups from it to avoid a Resolve API call.
- if value, ok := p.resolveFieldFromCachedItem(ref.Key); ok {
- p.cacheAdd(key, value)
- return value, nil
- }
- secret, err := p.client.Secrets().Resolve(ctx, key)
- metrics.ObserveAPICall(ProviderOnePasswordSDK, CallOnePasswordSDKResolve, err)
- if err != nil {
- return nil, err
- }
- result := []byte(secret)
- p.cacheAdd(key, result)
- return result, nil
- }
- // getEnvironmentSecret resolves a single variable from a 1Password Environment.
- func (p *SecretsClient) getEnvironmentSecret(ctx context.Context, name string) ([]byte, error) {
- key := p.constructRefKey(name)
- if cached, ok := p.cacheGet(key); ok {
- return cached, nil
- }
- // If we didn't find the single value, let's get all the values and cache the single value
- // with our special constructed key.
- vars, err := p.fetchEnvironmentVariables(ctx)
- if err != nil {
- return nil, err
- }
- // As of this writing, the SDK does not support getting a single key. It either gets everything or it doesn't.
- for _, v := range vars {
- if v.Name == name {
- result := []byte(v.Value)
- p.cacheAdd(key, result)
- return result, nil
- }
- }
- return nil, ErrKeyNotFound
- }
- // fetchEnvironmentVariables returns all variables from the configured 1Password Environment.
- // The aggregated response is cached under a synthetic key so subsequent GetSecret/GetSecretMap
- // calls within the TTL avoid re-hitting the API.
- func (p *SecretsClient) fetchEnvironmentVariables(ctx context.Context) ([]onepassword.EnvironmentVariable, error) {
- allKey := envAllCachePrefix + p.targetID
- if cached, ok := p.cacheGet(allKey); ok {
- var vars []onepassword.EnvironmentVariable
- if err := json.Unmarshal(cached, &vars); err == nil {
- return vars, nil
- }
- }
- resp, err := p.client.Environments().GetVariables(ctx, p.targetID)
- metrics.ObserveAPICall(ProviderOnePasswordSDK, CallOnePasswordSDKEnvironmentsGetVars, err)
- if err != nil {
- return nil, fmt.Errorf("failed to get environment variables: %w", err)
- }
- if serialized, err := json.Marshal(resp.Variables); err == nil {
- p.cacheAdd(allKey, serialized)
- }
- return resp.Variables, nil
- }
- // getEnvironmentSecretMap returns variables from a 1Password Environment as a map.
- // If ref.Property is set, only that variable is returned.
- func (p *SecretsClient) getEnvironmentSecretMap(ctx context.Context, ref esv1.ExternalSecretDataRemoteRef) (map[string][]byte, error) {
- vars, err := p.fetchEnvironmentVariables(ctx)
- if err != nil {
- return nil, err
- }
- out := make(map[string][]byte)
- for _, v := range vars {
- if ref.Property != "" && v.Name != ref.Property {
- continue
- }
- out[v.Name] = []byte(v.Value)
- }
- if ref.Property != "" && len(out) == 0 {
- return nil, ErrKeyNotFound
- }
- return out, nil
- }
- // Close closes the client connection.
- func (p *SecretsClient) Close(_ context.Context) error {
- return nil
- }
- // DeleteSecret implements Secret Deletion on the provider when PushSecret.spec.DeletionPolicy=Delete.
- func (p *SecretsClient) DeleteSecret(ctx context.Context, ref esv1.PushSecretRemoteRef) (err error) {
- if p.source == sourceEnvironment {
- return fmt.Errorf(errOnePasswordSdkEnvironmentReadOnly, "DeleteSecret")
- }
- providerItem, err := p.findItem(ctx, ref.GetRemoteKey())
- if errors.Is(err, ErrKeyNotFound) {
- // Since the item no longer exists upstream, it's safe to remove it from the cache.
- p.invalidateItem(providerItem)
- return nil
- }
- if err != nil {
- // do not remove cache entry because the error might be a network problem
- // or something unrelated.
- return err
- }
- defer func() {
- if err == nil {
- // invalidate the cache if there was no error
- p.invalidateItem(providerItem)
- }
- }()
- providerItem.Fields = normalizeItemFields(providerItem.Fields)
- var deleted bool
- providerItem.Fields, deleted, err = deleteField(providerItem.Fields, ref.GetProperty())
- if err != nil {
- return fmt.Errorf("failed to delete fields: %w", err)
- }
- if !deleted {
- // also invalidate the cache on not deleted so we refresh the fields on an item.
- return nil
- }
- // There is a chance that there is an empty item left in the section like this: [{ID: Title:}].
- if len(providerItem.Sections) == 1 && providerItem.Sections[0].ID == "" && providerItem.Sections[0].Title == "" {
- providerItem.Sections = nil
- }
- if len(providerItem.Fields) == 0 && len(providerItem.Files) == 0 && len(providerItem.Sections) == 0 {
- err = p.client.Items().Delete(ctx, providerItem.VaultID, providerItem.ID)
- metrics.ObserveAPICall(ProviderOnePasswordSDK, CallOnePasswordSDKItemsDelete, err)
- if err != nil {
- return fmt.Errorf("failed to delete item: %w", err)
- }
- return nil
- }
- _, err = p.client.Items().Put(ctx, providerItem)
- metrics.ObserveAPICall(ProviderOnePasswordSDK, CallOnePasswordSDKItemsPut, err)
- if err != nil {
- return fmt.Errorf(errMsgUpdateItem, err)
- }
- return nil
- }
- func deleteField(fields []onepassword.ItemField, title string) ([]onepassword.ItemField, bool, error) {
- // This will always iterate over all items,
- // but it's done to ensure that two fields with the same label
- // exist resulting in undefined behavior
- var (
- found bool
- fieldsF = make([]onepassword.ItemField, 0, len(fields))
- )
- for _, item := range fields {
- if item.Title == title {
- if found {
- return nil, false, fmt.Errorf("found multiple labels on item %q", title)
- }
- found = true
- continue
- }
- fieldsF = append(fieldsF, item)
- }
- return fieldsF, found, nil
- }
- // GetAllSecrets syncs multiple 1Password Items into a single Kubernetes Secret, for dataFrom.find.
- func (p *SecretsClient) GetAllSecrets(ctx context.Context, ref esv1.ExternalSecretFind) (map[string][]byte, error) {
- if p.source == sourceEnvironment {
- vars, err := p.fetchEnvironmentVariables(ctx)
- if err != nil {
- return nil, err
- }
- out := make(map[string][]byte, len(vars))
- for _, v := range vars {
- out[v.Name] = []byte(v.Value)
- }
- return out, nil
- }
- items, err := p.listItems(ctx)
- if err != nil {
- return nil, err
- }
- // If ref.Tags is set, filter to only items that match the given tags
- if ref.Tags != nil {
- var filteredItems []onepassword.ItemOverview
- for _, item := range items {
- if itemHasTags(ref.Tags, item.Tags) {
- filteredItems = append(filteredItems, item)
- }
- }
- items = filteredItems
- }
- secretData := make(map[string][]byte)
- for _, overview := range items {
- if ref.Path != nil && *ref.Path != overview.Title {
- continue
- }
- if err := p.collectAllSecrets(ctx, overview.Title, ref, secretData); err != nil {
- return nil, err
- }
- }
- return secretData, nil
- }
- func (p *SecretsClient) collectAllSecrets(ctx context.Context, itemName string, ref esv1.ExternalSecretFind, secretData map[string][]byte) error {
- item, err := p.findItem(ctx, itemName)
- if err != nil {
- return fmt.Errorf("failed to get item %s: %w", itemName, err)
- }
- if err := p.getAllFields(item, ref, secretData); err != nil {
- return fmt.Errorf("failed to get fields for item %s: %w", itemName, err)
- }
- if err := p.getAllFiles(ctx, item, ref, secretData); err != nil {
- return fmt.Errorf("failed to get files for item %s: %w", itemName, err)
- }
- return nil
- }
- // itemHasTags returns true if all required keys are present in the item's tags.
- func itemHasTags(required map[string]string, itemTags []string) bool {
- // Quickly return false if this item has fewer tags than required, since it can't possibly match.
- if len(itemTags) < len(required) {
- return false
- }
- // Use a map to track which required tags we've found in the item's tags.
- matchingTags := make(map[string]string)
- // Loop through item's tags and add any matching tags to the matchingTags map.
- for _, itemTag := range itemTags {
- if _, ok := required[itemTag]; ok {
- matchingTags[itemTag] = required[itemTag]
- }
- }
- // Check if we found all required tags in the item's tags.
- if len(matchingTags) < len(required) {
- return false
- }
- return true
- }
- // GetSecretMap returns multiple k/v pairs from the provider, for dataFrom.extract.
- func (p *SecretsClient) GetSecretMap(ctx context.Context, ref esv1.ExternalSecretDataRemoteRef) (map[string][]byte, error) {
- if ref.Version != "" {
- return nil, errors.New(errVersionNotImplemented)
- }
- if p.source == sourceEnvironment {
- return p.getEnvironmentSecretMap(ctx, ref)
- }
- cacheKey := p.constructRefKey(ref.Key) + "|" + ref.Property
- if cached, ok := p.cacheGet(cacheKey); ok {
- var result map[string][]byte
- if err := json.Unmarshal(cached, &result); err == nil {
- return result, nil
- }
- // continue with fresh instead
- }
- item, err := p.findItem(ctx, ref.Key)
- if err != nil {
- return nil, err
- }
- var result map[string][]byte
- propertyType, property := getObjType(item.Category, ref.Property)
- if propertyType == filePrefix {
- result, err = p.getFiles(ctx, item, property)
- } else {
- result, err = p.getFields(item, property)
- }
- if err != nil {
- return nil, err
- }
- if serialized, err := json.Marshal(result); err == nil {
- p.cacheAdd(cacheKey, serialized)
- }
- return result, nil
- }
- func (p *SecretsClient) listItems(ctx context.Context) ([]onepassword.ItemOverview, error) {
- var items []onepassword.ItemOverview
- cacheKey := vaultCachePrefix + p.targetID
- if cached, ok := p.cacheGet(cacheKey); ok {
- if err := json.Unmarshal(cached, &items); err == nil {
- return items, nil
- }
- }
- // Vault item list not found in cache - fetch from the API
- items, err := p.client.Items().List(ctx, p.targetID)
- metrics.ObserveAPICall(ProviderOnePasswordSDK, CallOnePasswordSDKItemsList, err)
- if err != nil {
- return nil, fmt.Errorf("failed to list items: %w", err)
- }
- // Add the vault list to the cache
- if serialized, err := json.Marshal(items); err == nil {
- p.cacheAdd(cacheKey, serialized)
- } else {
- // If we fail to serialize the items for caching, we can still return the items, so we just log the error and continue.
- fmt.Printf("failed to serialize items for caching: %v\n", err)
- }
- return items, nil
- }
- // getFields gets the field matching the given property label in an item, or all fields in the item if `property` is not set.
- func (p *SecretsClient) getFields(item onepassword.Item, property string) (map[string][]byte, error) {
- secretData := make(map[string][]byte)
- for _, field := range item.Fields {
- if property != "" && field.Title != property {
- continue
- }
- // Throw error if there are multiple fields with the same label.
- if length := countFieldsWithLabel(field.Title, item.Fields); length != 1 {
- return nil, fmt.Errorf(errMsgExpectedOneField, field.Title, item.Title, length)
- }
- // caution: do not use client.GetValue here because it has undesirable behavior on keys with a dot in them
- secretData[field.Title] = []byte(field.Value)
- }
- return secretData, nil
- }
- // getAllFields retrieves all fields matching the given ref in an item, and adds them to the given secretData map.
- func (p *SecretsClient) getAllFields(item onepassword.Item, ref esv1.ExternalSecretFind, secretData map[string][]byte) error {
- var matcher *find.Matcher
- if ref.Name != nil {
- var err error
- matcher, err = find.New(*ref.Name)
- if err != nil {
- return err
- }
- }
- for _, field := range item.Fields {
- // Throw error if there are multiple fields in this item with the same label.
- if length := countFieldsWithLabel(field.Title, item.Fields); length != 1 {
- return fmt.Errorf(errMsgExpectedOneField, field.Title, item.Title, length)
- }
- // If ref.Name is set, only add fields that match the regex pattern.
- if matcher != nil && !matcher.MatchName(field.Title) {
- continue
- }
- // Throw error if there are multiple fields with the same label.
- if _, found := secretData[field.Title]; found {
- return fmt.Errorf("found multiple labels with the same key '%s'", field.Title)
- }
- secretData[field.Title] = []byte(field.Value)
- }
- return nil
- }
- // fetchFile retrieves the content of a file, using the cache if possible.
- // TODO - Currently, cached files are not invalidated on updates. This should be done as part of the cache refactor.
- // See GitHub issue: https://github.com/external-secrets/external-secrets/issues/6444
- func (p *SecretsClient) fetchFile(ctx context.Context, itemID, fieldID string, attributes onepassword.FileAttributes) ([]byte, error) {
- cacheKey := fileCachePrefix + p.targetID + ":" + itemID + ":" + fieldID + ":" + attributes.Name
- if cached, ok := p.cacheGet(cacheKey); ok {
- return cached, nil
- }
- contents, err := p.client.Items().Files().Read(ctx, p.targetID, fieldID, attributes)
- metrics.ObserveAPICall(ProviderOnePasswordSDK, CallOnePasswordSDKFilesRead, err)
- if err != nil {
- return nil, fmt.Errorf("failed to read file: %w", err)
- }
- p.cacheAdd(cacheKey, contents)
- return contents, nil
- }
- // getFiles gets the file matching the given property label in an item, or all files in the item if `property` is not set.
- func (p *SecretsClient) getFiles(ctx context.Context, item onepassword.Item, property string) (map[string][]byte, error) {
- secretData := make(map[string][]byte)
- for _, file := range item.Files {
- if property != "" && file.Attributes.Name != property {
- continue
- }
- // Throw error if there are multiple files with the same label.
- if length := countFilesWithLabel(file.Attributes.Name, item.Files); length != 1 {
- return nil, fmt.Errorf(errMsgExpectedOneFile, file.Attributes.Name, item.Title, length)
- }
- contents, err := p.fetchFile(ctx, item.ID, file.FieldID, file.Attributes)
- if err != nil {
- return nil, err
- }
- secretData[file.Attributes.Name] = contents
- }
- return secretData, nil
- }
- // getAllFiles retrieves all files matching the given ref in an item, and adds them to the given secretData map.
- func (p *SecretsClient) getAllFiles(ctx context.Context, item onepassword.Item, ref esv1.ExternalSecretFind, secretData map[string][]byte) error {
- var matcher *find.Matcher
- if ref.Name != nil {
- var err error
- matcher, err = find.New(*ref.Name)
- if err != nil {
- return err
- }
- }
- for _, file := range item.Files {
- if matcher != nil && !matcher.MatchName(file.Attributes.Name) {
- continue
- }
- // Throw error if there are multiple files with the same label.
- if _, found := secretData[file.Attributes.Name]; found {
- return fmt.Errorf("found multiple labels with the same key '%s'", file.Attributes.Name)
- }
- contents, err := p.fetchFile(ctx, item.ID, file.FieldID, file.Attributes)
- if err != nil {
- return err
- }
- secretData[file.Attributes.Name] = contents
- }
- return nil
- }
- func countFieldsWithLabel(fieldLabel string, fields []onepassword.ItemField) int {
- count := 0
- for _, field := range fields {
- if field.Title == fieldLabel {
- count++
- }
- }
- return count
- }
- func countFilesWithLabel(fileLabel string, files []onepassword.ItemFile) int {
- count := 0
- for _, file := range files {
- if file.Attributes.Name == fileLabel {
- count++
- }
- }
- return count
- }
- // Clean property string by removing property prefix if needed.
- func getObjType(documentType onepassword.ItemCategory, property string) (string, string) {
- if strings.HasPrefix(property, fieldPrefix+prefixSplitter) {
- return fieldPrefix, property[6:]
- }
- if strings.HasPrefix(property, filePrefix+prefixSplitter) {
- return filePrefix, property[5:]
- }
- if documentType == onepassword.ItemCategoryDocument {
- return filePrefix, property
- }
- return fieldPrefix, property
- }
- // createItem creates a new item in the first vault. If no vaults exist, it returns an error.
- func (p *SecretsClient) createItem(ctx context.Context, val []byte, ref esv1.PushSecretData) error {
- mdata, err := metadata.ParseMetadataParameters[PushSecretMetadataSpec](ref.GetMetadata())
- if err != nil {
- return fmt.Errorf(errMsgParsePushMeta, err)
- }
- label := ref.GetProperty()
- if label == "" {
- label = defaultFieldLabel
- }
- var tags []string
- if mdata != nil && mdata.Spec.Tags != nil {
- tags = mdata.Spec.Tags
- }
- fieldType := onepassword.ItemFieldTypeConcealed
- if mdata != nil {
- fieldType = resolveFieldType(mdata.Spec.FieldType)
- }
- createdItem, err := p.client.Items().Create(ctx, onepassword.ItemCreateParams{
- Category: onepassword.ItemCategoryServer,
- VaultID: p.targetID,
- Title: ref.GetRemoteKey(),
- Fields: []onepassword.ItemField{
- generateNewItemField(label, string(val), fieldType),
- },
- Tags: tags,
- })
- metrics.ObserveAPICall(ProviderOnePasswordSDK, CallOnePasswordSDKItemsCreate, err)
- if err != nil {
- return fmt.Errorf(errMsgCreateItem, err)
- }
- p.invalidateItem(createdItem)
- return nil
- }
- // updateFieldValue updates the fields value of an item with the given label.
- // If the label does not exist, a new field is created with the given fieldType. If the label exists but
- // the value is different, the value is updated. If the label exists and the
- // value is the same, nothing is done.
- func updateFieldValue(fields []onepassword.ItemField, title, newVal string, fieldType onepassword.ItemFieldType) ([]onepassword.ItemField, error) {
- // This will always iterate over all items.
- // This is done to ensure that two fields with the same label
- // exist resulting in undefined behavior.
- var (
- found bool
- index int
- )
- for i, item := range fields {
- if item.Title == title {
- if found {
- return nil, fmt.Errorf("found multiple labels with the same key")
- }
- found = true
- index = i
- }
- }
- if !found {
- return append(fields, generateNewItemField(title, newVal, fieldType)), nil
- }
- if fields[index].Value != newVal {
- fields[index].Value = newVal
- }
- if fields[index].FieldType != fieldType {
- fields[index].FieldType = fieldType
- }
- return fields, nil
- }
- // resolveFieldType maps a 1Password field type name to the SDK constant.
- // Case-insensitive. Accepted: text|string, concealed|password, url, email, phone, date, monthYear.
- // Defaults to Concealed for empty/unrecognized. OTP and file excluded.
- // Reference: https://developer.1password.com/docs/cli/item-fields/#custom-fields
- func resolveFieldType(raw string) onepassword.ItemFieldType {
- switch strings.ToLower(raw) {
- case "text", "string":
- return onepassword.ItemFieldTypeText
- case "concealed", "password":
- return onepassword.ItemFieldTypeConcealed
- case "email":
- return onepassword.ItemFieldTypeEmail
- case "url":
- return onepassword.ItemFieldTypeURL
- case "phone":
- return onepassword.ItemFieldTypePhone
- case "date":
- return onepassword.ItemFieldTypeDate
- case "monthyear":
- return onepassword.ItemFieldTypeMonthYear
- }
- return onepassword.ItemFieldTypeConcealed
- }
- // normalizeItemFields clears empty section IDs because the 1Password SDK rejects items with a SectionID pointer to "" when the section is missing.
- func normalizeItemFields(fields []onepassword.ItemField) []onepassword.ItemField {
- for i := range fields {
- if fields[i].SectionID != nil && *fields[i].SectionID == "" {
- fields[i].SectionID = nil
- }
- }
- return fields
- }
- // generateNewItemField creates an ItemField with ID and Title set to the given title (unique within item), value, and field type.
- func generateNewItemField(title, newVal string, fieldType onepassword.ItemFieldType) onepassword.ItemField {
- return onepassword.ItemField{
- ID: title,
- Title: title,
- Value: newVal,
- FieldType: fieldType,
- }
- }
- // PushSecret creates or updates a secret in 1Password.
- func (p *SecretsClient) PushSecret(ctx context.Context, secret *corev1.Secret, ref esv1.PushSecretData) error {
- if p.source == sourceEnvironment {
- return fmt.Errorf(errOnePasswordSdkEnvironmentReadOnly, "PushSecret")
- }
- if ref.GetSecretKey() == "" {
- return p.pushAllKeys(ctx, secret, ref)
- }
- val, ok := secret.Data[ref.GetSecretKey()]
- if !ok {
- return fmt.Errorf("secret %s/%s does not contain a key", secret.Namespace, secret.Name)
- }
- title := ref.GetRemoteKey()
- providerItem, err := p.findItem(ctx, title)
- if errors.Is(err, ErrKeyNotFound) {
- return p.createItem(ctx, val, ref)
- } else if err != nil {
- return fmt.Errorf("failed to find item: %w", err)
- }
- providerItem.Fields = normalizeItemFields(providerItem.Fields)
- label := ref.GetProperty()
- if label == "" {
- label = defaultFieldLabel
- }
- mdata, err := metadata.ParseMetadataParameters[PushSecretMetadataSpec](ref.GetMetadata())
- if err != nil {
- return fmt.Errorf(errMsgParsePushMeta, err)
- }
- if mdata != nil && mdata.Spec.Tags != nil {
- providerItem.Tags = mdata.Spec.Tags
- }
- fieldType := onepassword.ItemFieldTypeConcealed
- if mdata != nil {
- fieldType = resolveFieldType(mdata.Spec.FieldType)
- }
- providerItem.Fields, err = updateFieldValue(providerItem.Fields, label, string(val), fieldType)
- if err != nil {
- return fmt.Errorf("failed to update field with label: %s: %w", label, err)
- }
- _, err = p.client.Items().Put(ctx, providerItem)
- metrics.ObserveAPICall(ProviderOnePasswordSDK, CallOnePasswordSDKItemsPut, err)
- if err != nil {
- return fmt.Errorf(errMsgUpdateItem, err)
- }
- p.invalidateItem(providerItem)
- return nil
- }
- // createAllKeysItem creates a new item with all keys from secret.Data.
- func (p *SecretsClient) createAllKeysItem(ctx context.Context, secret *corev1.Secret, title string, tags []string, fieldType onepassword.ItemFieldType) error {
- fields := make([]onepassword.ItemField, 0, len(secret.Data))
- for k, v := range secret.Data {
- fields = append(fields, generateNewItemField(k, string(v), fieldType))
- }
- createdItem, err := p.client.Items().Create(ctx, onepassword.ItemCreateParams{
- Category: onepassword.ItemCategoryServer,
- VaultID: p.targetID,
- Title: title,
- Fields: fields,
- Tags: tags,
- })
- metrics.ObserveAPICall(ProviderOnePasswordSDK, CallOnePasswordSDKItemsCreate, err)
- if err != nil {
- return fmt.Errorf(errMsgCreateItem, err)
- }
- p.invalidateItem(createdItem)
- return nil
- }
- // pushAllKeys pushes all keys from secret.Data as separate fields on a single 1Password item.
- func (p *SecretsClient) pushAllKeys(ctx context.Context, secret *corev1.Secret, ref esv1.PushSecretData) error {
- mdata, err := metadata.ParseMetadataParameters[PushSecretMetadataSpec](ref.GetMetadata())
- if err != nil {
- return fmt.Errorf(errMsgParsePushMeta, err)
- }
- var tags []string
- if mdata != nil && mdata.Spec.Tags != nil {
- tags = mdata.Spec.Tags
- }
- fieldType := onepassword.ItemFieldTypeConcealed
- if mdata != nil {
- fieldType = resolveFieldType(mdata.Spec.FieldType)
- }
- title := ref.GetRemoteKey()
- providerItem, err := p.findItem(ctx, title)
- if errors.Is(err, ErrKeyNotFound) {
- return p.createAllKeysItem(ctx, secret, title, tags, fieldType)
- }
- if err != nil {
- return fmt.Errorf("failed to find item: %w", err)
- }
- providerItem.Fields = normalizeItemFields(providerItem.Fields)
- if tags != nil {
- providerItem.Tags = tags
- }
- kept := make([]onepassword.ItemField, 0, len(providerItem.Fields))
- for _, f := range providerItem.Fields {
- if v, ok := secret.Data[f.Title]; ok {
- f.Value = string(v)
- f.FieldType = fieldType
- kept = append(kept, f)
- }
- }
- for k, v := range secret.Data {
- if countFieldsWithLabel(k, kept) == 0 {
- kept = append(kept, generateNewItemField(k, string(v), fieldType))
- }
- }
- providerItem.Fields = kept
- _, err = p.client.Items().Put(ctx, providerItem)
- metrics.ObserveAPICall(ProviderOnePasswordSDK, CallOnePasswordSDKItemsPut, err)
- if err != nil {
- return fmt.Errorf(errMsgUpdateItem, err)
- }
- p.invalidateItem(providerItem)
- return nil
- }
- // GetVault retrieves a vault by its title or UUID from 1Password.
- func (p *SecretsClient) GetVault(ctx context.Context, titleOrUUID string) (string, error) {
- vaults, err := p.client.VaultsAPI.List(ctx)
- metrics.ObserveAPICall(ProviderOnePasswordSDK, CallOnePasswordSDKVaultsList, err)
- if err != nil {
- return "", fmt.Errorf("failed to list vaults: %w", err)
- }
- for _, v := range vaults {
- if v.Title == titleOrUUID || v.ID == titleOrUUID {
- return v.ID, nil
- }
- }
- return "", fmt.Errorf("vault %s not found", titleOrUUID)
- }
- // fetchItemByID retrieves an item by its ID, using the cache if possible.
- func (p *SecretsClient) fetchItemByID(ctx context.Context, id string) (onepassword.Item, error) {
- cacheKey := itemCachePrefix + p.targetID + ":" + id
- if cached, ok := p.cacheGet(cacheKey); ok {
- var item onepassword.Item
- if err := json.Unmarshal(cached, &item); err == nil {
- return item, nil
- }
- }
- item, err := p.client.Items().Get(ctx, p.targetID, id)
- metrics.ObserveAPICall(ProviderOnePasswordSDK, CallOnePasswordSDKItemsGet, err)
- if err != nil {
- return onepassword.Item{}, err
- }
- if serialized, err := json.Marshal(item); err == nil {
- p.cacheAdd(cacheKey, serialized)
- }
- return item, nil
- }
- // findItem retrieves an item by its title or ID, using the cache if possible.
- func (p *SecretsClient) findItem(ctx context.Context, name string) (onepassword.Item, error) {
- cacheKey := itemCachePrefix + p.targetID + ":" + name
- if cached, ok := p.cacheGet(cacheKey); ok {
- var item onepassword.Item
- if err := json.Unmarshal(cached, &item); err == nil {
- return item, nil
- }
- }
- var item onepassword.Item
- var err error
- if isNativeID(name) {
- item, err = p.fetchItemByID(ctx, name)
- if err != nil {
- if isNotFoundError(err) {
- return onepassword.Item{}, ErrKeyNotFound
- }
- return onepassword.Item{}, err
- }
- } else {
- // If name is not a native item ID, we have to list items and find the matching title.
- items, err := p.listItems(ctx)
- if err != nil {
- return onepassword.Item{}, fmt.Errorf("failed to list items: %w", err)
- }
- // Find the ID of the item matching the given name. Throw an error if there are multiple items with the same name, or if no items are found.
- var itemUUID string
- for _, v := range items {
- if v.Title == name {
- if itemUUID != "" {
- return onepassword.Item{}, fmt.Errorf("found multiple items with name %s", name)
- }
- itemUUID = v.ID
- }
- }
- if itemUUID == "" {
- return onepassword.Item{}, ErrKeyNotFound
- }
- // Fetch the item by ID to get all its details.
- item, err = p.fetchItemByID(ctx, itemUUID)
- if err != nil {
- return onepassword.Item{}, err
- }
- // While fetchItemByID will cache the item by its ID, we also want to cache it by its name.
- if serialized, err := json.Marshal(item); err == nil {
- p.cacheAdd(cacheKey, serialized)
- }
- }
- return item, nil
- }
- // resolveFieldFromCachedItem satisfies a GetSecret request from an item already cached by
- // GetAllSecrets/GetSecretMap, avoiding a Resolve API call. It only handles plain field
- // lookups; files, sections, and cache misses return false so the caller falls back to Resolve.
- func (p *SecretsClient) resolveFieldFromCachedItem(refKey string) ([]byte, bool) {
- itemName, property, ok := strings.Cut(refKey, prefixSplitter)
- if !ok || property == "" {
- return nil, false
- }
- cached, ok := p.cacheGet(itemCachePrefix + p.targetID + ":" + itemName)
- if !ok {
- return nil, false
- }
- var item onepassword.Item
- if err := json.Unmarshal(cached, &item); err != nil {
- return nil, false
- }
- objType, prop := getObjType(item.Category, property)
- if objType != fieldPrefix {
- return nil, false
- }
- fields, err := p.getFields(item, prop)
- if err != nil {
- return nil, false
- }
- value, ok := fields[prop]
- return value, ok
- }
- // SecretExists returns true if the item exists, and if a property is specified, if a field with that title exists.
- func (p *SecretsClient) SecretExists(ctx context.Context, ref esv1.PushSecretRemoteRef) (bool, error) {
- if p.source == sourceEnvironment {
- return false, fmt.Errorf(errOnePasswordSdkEnvironmentReadOnly, "SecretExists")
- }
- item, err := p.findItem(ctx, ref.GetRemoteKey())
- if errors.Is(err, ErrKeyNotFound) {
- return false, nil
- }
- if err != nil {
- return false, err
- }
- property := ref.GetProperty()
- if property == "" {
- return true, nil // item exists; pushAllKeys handles field-level reconciliation
- }
- for _, f := range item.Fields {
- if f.Title == property {
- return true, nil
- }
- }
- return false, nil
- }
- // Validate does nothing here. It would be possible to ping the SDK to prove we're healthy, but
- // since the 1password SDK rate-limit is pretty aggressive, we prefer to do nothing.
- func (p *SecretsClient) Validate() (esv1.ValidationResult, error) {
- return esv1.ValidationResultReady, nil
- }
- func (p *SecretsClient) constructRefKey(key string) string {
- // remove any possible leading slashes because targetPrefix already contains it.
- return p.targetPrefix + strings.TrimPrefix(key, "/")
- }
- // cacheGet retrieves a value from the cache. Returns false if cache is disabled or key not found.
- func (p *SecretsClient) cacheGet(key string) ([]byte, bool) {
- if p.cache == nil {
- return nil, false
- }
- v, ok := p.cache.Get(key)
- if !ok {
- return nil, false
- }
- return bytes.Clone(v), true
- }
- // cacheAdd stores a value in the cache. No-op if cache is disabled.
- func (p *SecretsClient) cacheAdd(key string, value []byte) {
- if p.cache == nil {
- return
- }
- p.cache.Add(key, value)
- }
- // invalidateCacheByPrefix removes all cache entries that start with the given prefix.
- // This is used to invalidate cache entries when an item is modified or deleted.
- // No-op if cache is disabled.
- // Why are we using a Prefix? Because items and properties are stored via prefixes using 1Password SDK.
- // This means when an item is deleted we delete the fields and properties that belong to the item as well.
- // This is a helper for invalidateItem. Do not call directly.
- func (p *SecretsClient) invalidateCacheByPrefix(prefix string) {
- if p.cache == nil {
- return
- }
- keys := p.cache.Keys()
- for _, key := range keys {
- if !strings.HasPrefix(key, prefix) {
- continue
- }
- if len(key) == len(prefix) || key[len(prefix)] == '/' || key[len(prefix)] == '|' {
- p.cache.Remove(key)
- }
- }
- }
- // invalidateItem drops every cache entry tied to an item after a mutation: the
- // resolved values (op://...), both the title- and ID-keyed item entries, and the
- // vault item list. Mutations are addressed by title, but findItem always resolves
- // through the item's UUID and listItems backs every title->UUID lookup, so all
- // three must be dropped or reads return stale data.
- // No-op if cache is disabled.
- func (p *SecretsClient) invalidateItem(item onepassword.Item) {
- if p.cache == nil {
- return
- }
- p.invalidateCacheByPrefix(p.constructRefKey(item.Title))
- if item.ID != "" && item.ID != item.Title {
- p.invalidateCacheByPrefix(p.constructRefKey(item.ID))
- }
- p.cache.Remove(itemCachePrefix + p.targetID + ":" + item.Title)
- if item.ID != "" {
- p.cache.Remove(itemCachePrefix + p.targetID + ":" + item.ID)
- }
- p.cache.Remove(vaultCachePrefix + p.targetID)
- }
- func isNotFoundError(err error) bool {
- msg := strings.ToLower(err.Error())
- return strings.Contains(msg, "couldn't be found") || strings.Contains(msg, "resource not found")
- }
|