2015-04-01 22:46:13 +00:00
|
|
|
package framework
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/hashicorp/vault/logical"
|
|
|
|
)
|
|
|
|
|
|
|
|
// PolicyMap is a specialization of PathMap that expects the values to
|
|
|
|
// be lists of policies. This assists in querying and loading policies
|
|
|
|
// from the PathMap.
|
|
|
|
type PolicyMap struct {
|
2015-04-17 16:35:49 +00:00
|
|
|
PathMap
|
2015-04-01 22:46:13 +00:00
|
|
|
|
|
|
|
DefaultKey string
|
2015-04-17 16:35:49 +00:00
|
|
|
PolicyKey string
|
2015-04-01 22:46:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PolicyMap) Policies(s logical.Storage, names ...string) ([]string, error) {
|
2015-04-17 16:35:49 +00:00
|
|
|
policyKey := "value"
|
|
|
|
if p.PolicyKey != "" {
|
|
|
|
policyKey = p.PolicyKey
|
|
|
|
}
|
|
|
|
|
2015-04-01 22:46:13 +00:00
|
|
|
if p.DefaultKey != "" {
|
|
|
|
newNames := make([]string, len(names)+1)
|
|
|
|
newNames[0] = p.DefaultKey
|
|
|
|
copy(newNames[1:], names)
|
|
|
|
names = newNames
|
|
|
|
}
|
|
|
|
|
|
|
|
set := make(map[string]struct{})
|
|
|
|
for _, name := range names {
|
|
|
|
v, err := p.Get(s, name)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-04-17 16:35:49 +00:00
|
|
|
valuesRaw, ok := v[policyKey]
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
values, ok := valuesRaw.(string)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, p := range strings.Split(values, ",") {
|
2015-04-01 22:46:13 +00:00
|
|
|
if p = strings.TrimSpace(p); p != "" {
|
|
|
|
set[p] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
list := make([]string, 0, len(set))
|
|
|
|
for k, _ := range set {
|
|
|
|
list = append(list, k)
|
|
|
|
}
|
|
|
|
sort.Strings(list)
|
|
|
|
|
|
|
|
return list, nil
|
|
|
|
}
|