-
-
Notifications
You must be signed in to change notification settings - Fork 496
/
context.go
47 lines (44 loc) · 1.25 KB
/
context.go
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
package config
import (
"context"
"github.com/gopasspw/gopass/pkg/ctxutil"
"github.com/gopasspw/gopass/pkg/store/sub"
)
// WithContext returns a context with all config options set for this store
// config, iff they have not been already set in the context
func (c StoreConfig) WithContext(ctx context.Context) context.Context {
if !ctxutil.HasAskForMore(ctx) {
ctx = ctxutil.WithAskForMore(ctx, c.AskForMore)
}
if !ctxutil.HasAutoClip(ctx) {
ctx = ctxutil.WithAutoClip(ctx, c.AutoClip)
}
if !c.AutoImport {
ctx = sub.WithImportFunc(ctx, nil)
}
if !sub.HasAutoSync(ctx) {
ctx = sub.WithAutoSync(ctx, c.AutoSync)
}
if !ctxutil.HasClipTimeout(ctx) {
ctx = ctxutil.WithClipTimeout(ctx, c.ClipTimeout)
}
if !ctxutil.HasConcurrency(ctx) {
ctx = ctxutil.WithConcurrency(ctx, c.Concurrency)
}
if !ctxutil.HasEditRecipients(ctx) {
ctx = ctxutil.WithEditRecipients(ctx, c.EditRecipients)
}
if !ctxutil.HasNoConfirm(ctx) {
ctx = ctxutil.WithNoConfirm(ctx, c.NoConfirm)
}
if !ctxutil.HasNoPager(ctx) {
ctx = ctxutil.WithNoPager(ctx, c.NoPager)
}
if !ctxutil.HasShowSafeContent(ctx) {
ctx = ctxutil.WithShowSafeContent(ctx, c.SafeContent)
}
if !ctxutil.HasUseSymbols(ctx) {
ctx = ctxutil.WithUseSymbols(ctx, c.UseSymbols)
}
return ctx
}