-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathopdesktop.go
More file actions
178 lines (150 loc) · 4.08 KB
/
opdesktop.go
File metadata and controls
178 lines (150 loc) · 4.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
//go:build !freebsd
package keyring
import (
"context"
"errors"
"fmt"
"os"
onepassword "github.com/1password/onepassword-sdk-go"
)
const (
OPDesktopEnvAccountID = "OP_DESKTOP_ACCOUNT_ID"
)
var (
OPDesktopErrAccountID = fmt.Errorf(
"%w: %w: %#v",
OPDesktopErrKeyring,
ErrEnvUnsetOrEmpty,
OPDesktopEnvAccountID,
)
OPDesktopErrClient = errors.New("Unable to create a 1Password Desktop client")
OPDesktopErrKeyring = errors.New("Unable to create a 1Password Desktop keyring")
OPDesktopErrNewClient = fmt.Errorf(
"%w: onepassword.NewClient returned an error",
OPDesktopErrClient,
)
OPDesktopErrTimeout = fmt.Errorf(
"%w: Timeout must be a non-zero duration",
OPDesktopErrKeyring,
)
)
func init() {
supportedBackends[OPDesktopBackend] = opener(func(cfg Config) (Keyring, error) {
keyring, err := NewOPDesktopKeyring(&cfg)
if err != nil {
return nil, err
}
return keyring, nil
})
}
// OPDesktopKeyring implements Keyring interface for 1Password Desktop Integration
type OPDesktopKeyring struct {
OPStandardKeyring
DesktopAccountID string
// fullClient stores the complete client to prevent premature garbage collection
// which would trigger the finalizer and release the client ID
fullClient *onepassword.Client
}
func NewOPDesktopKeyring(cfg *Config) (*OPDesktopKeyring, error) {
errs := []error{}
timeout := cfg.OPTimeout
if timeout == 0 {
errs = append(errs, OPDesktopErrTimeout)
}
vaultID := cfg.OPVaultID
if vaultID == "" {
vaultID = os.Getenv(OPEnvVaultID)
if vaultID == "" {
errs = append(errs, OPErrVaultID)
}
}
accountID := cfg.OPDesktopAccountID
if accountID == "" {
accountID = os.Getenv(OPDesktopEnvAccountID)
if accountID == "" {
errs = append(errs, OPDesktopErrAccountID)
}
}
itemTitlePrefix := cfg.OPItemTitlePrefix
if itemTitlePrefix == "" {
itemTitlePrefix = OPItemTitlePrefix
}
itemTag := cfg.OPItemTag
if itemTag == "" {
itemTag = OPItemTag
}
itemFieldTitle := cfg.OPItemFieldTitle
if itemFieldTitle == "" {
itemFieldTitle = OPItemFieldTitle
}
if len(errs) > 0 {
return nil, errors.Join(errs...)
}
keyring := &OPDesktopKeyring{
OPStandardKeyring: OPStandardKeyring{
OPBaseKeyring: OPBaseKeyring{
VaultID: vaultID,
ItemTitlePrefix: itemTitlePrefix,
ItemTag: itemTag,
ItemFieldTitle: itemFieldTitle,
TokenEnvs: []string{},
TokenFunc: cfg.OPTokenFunc,
},
Timeout: timeout,
},
DesktopAccountID: accountID,
}
return keyring, nil
}
// InitializeClient initializes the Desktop Integration client
func (k *OPDesktopKeyring) InitializeClient() error {
if k.Client != nil {
return nil
}
client, err := onepassword.NewClient(
context.Background(),
// account name or account UUID for Desktop Integration
onepassword.WithDesktopAppIntegration(k.DesktopAccountID),
onepassword.WithIntegrationInfo(OPStandardIntegrationName, OPStandardIntegrationVersion),
)
if err != nil {
return fmt.Errorf("%w: %w", OPDesktopErrNewClient, err)
}
// The full client must be retained to prevent garbage collection
// which would trigger the finalizer and invalidate the client ID
k.fullClient = client
k.Client = client.Items()
return nil
}
// Get retrieves an item by key
func (k *OPDesktopKeyring) Get(key string) (Item, error) {
if err := k.InitializeClient(); err != nil {
return Item{}, err
}
return k.OPStandardKeyring.Get(key)
}
// GetMetadata returns metadata for a key
func (k *OPDesktopKeyring) GetMetadata(key string) (Metadata, error) {
return k.OPStandardKeyring.GetMetadata(key)
}
// Set creates or updates an item
func (k *OPDesktopKeyring) Set(item Item) error {
if err := k.InitializeClient(); err != nil {
return err
}
return k.OPStandardKeyring.Set(item)
}
// Remove deletes an item by key
func (k *OPDesktopKeyring) Remove(key string) error {
if err := k.InitializeClient(); err != nil {
return err
}
return k.OPStandardKeyring.Remove(key)
}
// Keys returns all keys in the keyring
func (k *OPDesktopKeyring) Keys() ([]string, error) {
if err := k.InitializeClient(); err != nil {
return nil, err
}
return k.OPStandardKeyring.Keys()
}