mirror of
https://github.com/gopasspw/gopass.git
synced 2025-12-08 19:24:54 +00:00
* [chore] Migrate to golangci-lint v2 Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org> * [chore] Fix more lint issues Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org> * [chore] Fix more lint issue Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org> * [chore] Fix more lint issues Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org> * [chore] Add more package comments. Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org> * [chore] Fix golangci-lint config and the remaining checks Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org> * [fix] Use Go 1.24 Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org> * [fix] Fix container builds Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org> * Fix more failing tests Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org> * Fix test failure Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org> * Fix another len assertion Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org> * Move location tests Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org> * [fix] Fix most remaining lint issues Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org> * [fix] Only run XDG specific tests on linux Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org> * [fix] Attempt to address on source of flaky failures Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org> --------- Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>
107 lines
2.8 KiB
Go
107 lines
2.8 KiB
Go
package leaf
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/gopasspw/gopass/internal/config"
|
|
"github.com/gopasspw/gopass/internal/queue"
|
|
"github.com/gopasspw/gopass/internal/store"
|
|
"github.com/gopasspw/gopass/pkg/ctxutil"
|
|
"github.com/gopasspw/gopass/pkg/debug"
|
|
"github.com/gopasspw/gopass/pkg/gopass"
|
|
)
|
|
|
|
// Set encodes and writes the ciphertext of one entry to disk.
|
|
func (s *Store) Set(ctx context.Context, name string, sec gopass.Byter) error {
|
|
if strings.Contains(name, "//") {
|
|
return fmt.Errorf("invalid secret name: %s", name)
|
|
}
|
|
|
|
if cfg, _ := config.FromContext(ctx); cfg.GetM(s.alias, "core.readonly") == "true" {
|
|
return fmt.Errorf("writing to %s is disabled by `core.readonly`", s.alias)
|
|
}
|
|
|
|
p := s.Passfile(name)
|
|
|
|
recipients, err := s.useableKeys(ctx, name)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to list useable keys for %q: %w", p, err)
|
|
}
|
|
|
|
// make sure the encryptor can decrypt later
|
|
recipients = s.ensureOurKeyID(ctx, recipients)
|
|
|
|
// we can not encrypt without recipients
|
|
if len(recipients) < 1 {
|
|
return fmt.Errorf("no useable recipients for %q. can not encrypt without recipients", name)
|
|
}
|
|
|
|
ciphertext, err := s.crypto.Encrypt(ctx, sec.Bytes(), recipients)
|
|
if err != nil {
|
|
debug.Log("Failed encrypt secret: %s", err)
|
|
|
|
return store.ErrEncrypt
|
|
}
|
|
|
|
if err := s.storage.Set(ctx, p, ciphertext); err != nil {
|
|
return fmt.Errorf("failed to write secret: %w", err)
|
|
}
|
|
|
|
// It is not possible to perform concurrent git add and git commit commands
|
|
// so we need to skip this step when using concurrency and perform them
|
|
// at the end of the batch processing.
|
|
if IsNoGitOps(ctx) {
|
|
debug.Log("sub.Set(%s) - skipping git ops (disabled)")
|
|
|
|
return nil
|
|
}
|
|
|
|
if err := s.storage.TryAdd(ctx, p); err != nil {
|
|
return fmt.Errorf("failed to add %q to git: %w", p, err)
|
|
}
|
|
|
|
if !ctxutil.IsGitCommit(ctx) {
|
|
return nil
|
|
}
|
|
|
|
// try to enqueue this task, if the queue is not available
|
|
// it will return the task and we will execute it inline
|
|
t := queue.GetQueue(ctx).Add(func(_ context.Context) (context.Context, error) {
|
|
return nil, s.gitCommitAndPush(ctx, name)
|
|
})
|
|
|
|
ctx, err = t(ctx)
|
|
|
|
return err
|
|
}
|
|
|
|
func (s *Store) gitCommitAndPush(ctx context.Context, name string) error {
|
|
commitMessage := ctxutil.GetCommitMessage(ctx)
|
|
message := fmt.Sprintf("Save secret %s: %s", name, commitMessage)
|
|
if commitMessage == "" {
|
|
message = fmt.Sprintf("Save secret: %s", name)
|
|
}
|
|
if err := s.storage.TryCommit(ctx, message); err != nil {
|
|
return fmt.Errorf("failed to commit changes to git: %w", err)
|
|
}
|
|
|
|
ctx = config.WithMount(ctx, s.alias)
|
|
if !config.Bool(ctx, "core.autopush") {
|
|
debug.Log("not pushing to git remote, core.autopush is false")
|
|
|
|
return nil
|
|
}
|
|
|
|
debug.Log("pushing to remote ...")
|
|
|
|
if err := s.storage.TryPush(ctx, "", ""); err != nil {
|
|
return fmt.Errorf("failed to push to git remote: %w", err)
|
|
}
|
|
|
|
debug.Log("pushed to remote")
|
|
|
|
return nil
|
|
}
|