forked from criteo/vault-auth-plugin-chef
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
94 lines (83 loc) · 2.66 KB
/
config.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
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
package main
import (
"context"
"encoding/json"
"time"
"fmt"
"github.com/hashicorp/vault/sdk/framework"
"github.com/hashicorp/vault/sdk/logical"
)
type config struct {
Host string `json:"host"`
DefaultPolicies []string `json:"default_policies"`
DefaultTTL time.Duration `json:"default_ttl" structs:"default_ttl" mapstructure:"default_ttl"`
DefaultMaxTTL time.Duration `json:"default_max_ttl" structs:"default_max_ttl" mapstructure:"default_max_ttl"`
DefaultPeriod time.Duration `json:"default_period" structs:"default_period" mapstructure:"default_period"`
}
func pathConfig(b *backend) *framework.Path {
return &framework.Path{
Pattern: "config$",
Fields: map[string]*framework.FieldSchema{
"host": {
Type: framework.TypeString,
Description: "Host must be a host string, a host:port pair, or a URL to the base of the Chef server.",
},
"default_policies": {
Type: framework.TypeStringSlice,
Description: "The default list of policies assigned to every maching policy/role.",
},
},
Callbacks: map[logical.Operation]framework.OperationFunc{
logical.UpdateOperation: b.pathConfigWrite,
logical.CreateOperation: b.pathConfigWrite,
logical.ReadOperation: b.pathConfigRead,
},
}
}
func (b *backend) pathConfigWrite(ctx context.Context, req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
policies := d.Get("default_policies").([]string)
host := d.Get("host").(string)
if host == "" {
return logical.ErrorResponse("no host provided"), nil
}
config := &config{
Host: host,
DefaultPolicies: policies,
}
entry, err := logical.StorageEntryJSON("config", config)
if err != nil {
return logical.ErrorResponse(fmt.Sprintf("Error while creating config entry : %s", err)), err
}
b.Lock()
defer b.Unlock()
if err := req.Storage.Put(ctx, entry); err != nil {
b.Logger().Error("error occured while saving chef host config: %s", err)
return nil, err
}
return nil, nil
}
func (b *backend) pathConfigRead(ctx context.Context, req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
b.RLock()
defer b.RUnlock()
raw, err := req.Storage.Get(ctx, "config")
if err != nil {
b.Logger().Error("error occured while fetching chef host config: %s", err)
return logical.ErrorResponse(fmt.Sprintf("Error while fetching config : %s", err)), err
}
if raw == nil {
return nil, nil
}
conf := &config{}
if err := json.Unmarshal(raw.Value, conf); err != nil {
return nil, err
} else if conf == nil {
return nil, nil
} else {
resp := &logical.Response{
Data: map[string]interface{}{
"host": conf.Host,
},
}
return resp, nil
}
}