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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
// Copyright 2016 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE.client file for details.
package candidclient
import (
"context"
"github.com/go-macaroon-bakery/macaroon-bakery/v3/bakery/identchecker"
"gopkg.in/errgo.v1"
"github.com/canonical/candid/params"
)
// Identity represents a Candid identity. It includes bakery.ACLIdentity but
// also includes methods for determining the username and
// enquiring about groups.
//
// Note that currently the Id method just returns the user
// name, but client code should not rely on it doing that - eventually
// it will return an opaque user identifier rather than the user name.
type Identity interface {
identchecker.ACLIdentity
// Username returns the user name of the user.
Username() (string, error)
// Groups returns all the groups that the user is a member of.
//
// Note: use of this method should be avoided if possible, as a user may
// potentially be in huge numbers of groups.
Groups() ([]string, error)
}
var _ Identity = (*usernameIdentity)(nil)
type usernameIdentity struct {
client *Client
username string
}
// Username implements Identity.Username.
func (id *usernameIdentity) Username() (string, error) {
return id.username, nil
}
// Groups implements Identity.Groups.
func (id *usernameIdentity) Groups() ([]string, error) {
if id.client.permChecker != nil {
return id.client.permChecker.cache.Groups(id.username)
}
return nil, nil
}
// Allow implements Identity.Allow.
func (id *usernameIdentity) Allow(ctx context.Context, acl []string) (bool, error) {
if id.client.permChecker != nil {
return id.client.permChecker.Allow(id.username, acl)
}
// No groups - just implement the trivial cases.
ok, _ := trivialAllow(id.username, acl)
return ok, nil
}
// Id implements Identity.Id.
func (id *usernameIdentity) Id() string {
return id.username
}
// Domain implements Identity.Domain.
func (id *usernameIdentity) Domain() string {
return ""
}
type useridIdentity struct {
client *Client
user params.User
}
// Username implements Identity.Username.
func (id *useridIdentity) Username() (string, error) {
if id.user.Username != "" {
return string(id.user.Username), nil
}
ctx := context.Background()
user, err := id.client.GetUserWithID(ctx, ¶ms.GetUserWithIDRequest{
UserID: id.user.ExternalID,
})
if err != nil {
return "", errgo.Mask(err)
}
id.user = *user
return string(id.user.Username), nil
}
// Groups implements Identity.Groups.
func (id *useridIdentity) Groups() ([]string, error) {
_, err := id.Username()
if err != nil {
return nil, errgo.Mask(err)
}
return id.user.IDPGroups, nil
}
// Allow implements Identity.Allow.
func (id *useridIdentity) Allow(ctx context.Context, acl []string) (bool, error) {
groups, err := id.Groups()
if err != nil {
return false, errgo.Mask(err)
}
groups = append(groups, string(id.user.Username))
for _, g := range groups {
if ok, _ := trivialAllow(g, acl); ok {
return true, nil
}
}
return false, nil
}
// Id implements Identity.Id.
func (id *useridIdentity) Id() string {
return id.user.ExternalID
}
// Domain implements Identity.Domain.
func (id *useridIdentity) Domain() string {
return ""
}
|