72 lines
1.6 KiB
Go
72 lines
1.6 KiB
Go
// Copyright © 2022 Roberto Hidalgo <joao@un.rob.mx>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
package opclient
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/1Password/connect-sdk-go/connect"
|
|
op "github.com/1Password/connect-sdk-go/onepassword"
|
|
)
|
|
|
|
var ConnectClientFactory func(host, token, userAgent string) connect.Client = connect.NewClientWithUserAgent
|
|
|
|
// UUIDLength defines the required length of UUIDs.
|
|
const UUIDLength = 26
|
|
|
|
// IsValidClientUUID returns true if the given client uuid is valid.
|
|
func IsValidClientUUID(uuid string) bool {
|
|
if len(uuid) != UUIDLength {
|
|
return false
|
|
}
|
|
|
|
for _, c := range uuid {
|
|
valid := (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9')
|
|
if !valid {
|
|
return false
|
|
}
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
type Connect struct {
|
|
client connect.Client
|
|
}
|
|
|
|
const userAgent = "nidito-joao"
|
|
|
|
func NewConnect(host, token string) *Connect {
|
|
client := ConnectClientFactory(host, token, userAgent)
|
|
return &Connect{client: client}
|
|
}
|
|
|
|
func (b *Connect) Get(vault, name string) (*op.Item, error) {
|
|
return b.client.GetItem(name, vault)
|
|
}
|
|
|
|
func (b *Connect) Update(item *op.Item, remote *op.Item) error {
|
|
_, err := b.client.UpdateItem(item, item.Vault.ID)
|
|
return err
|
|
}
|
|
|
|
func (b *Connect) List(vault, prefix string) ([]string, error) {
|
|
items, err := b.client.GetItems(vault)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
res := []string{}
|
|
for _, item := range items {
|
|
if prefix != "" && !strings.HasPrefix(item.Title, prefix) {
|
|
continue
|
|
}
|
|
res = append(res, item.Title)
|
|
}
|
|
return res, nil
|
|
}
|
|
|
|
func (b *Connect) Create(item *op.Item) error {
|
|
_, err := b.client.CreateItem(item, item.Vault.ID)
|
|
return err
|
|
}
|