forked from canonical/snapd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount.go
102 lines (85 loc) · 2.65 KB
/
account.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
95
96
97
98
99
100
101
102
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2016 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package asserts
import (
"fmt"
"time"
)
var (
accountValidationCertified = "certified"
)
// Account holds an account assertion, which ties a name for an account
// to its identifier and provides the authority's confidence in the name's validity.
type Account struct {
assertionBase
certified bool
timestamp time.Time
}
// AccountID returns the account-id of the account.
func (acc *Account) AccountID() string {
return acc.HeaderString("account-id")
}
// Username returns the user name for the account.
func (acc *Account) Username() string {
return acc.HeaderString("username")
}
// DisplayName returns the human-friendly name for the account.
func (acc *Account) DisplayName() string {
return acc.HeaderString("display-name")
}
// IsCertified returns true if the authority has confidence in the account's name.
func (acc *Account) IsCertified() bool {
return acc.certified
}
// Timestamp returns the time when the account was issued.
func (acc *Account) Timestamp() time.Time {
return acc.timestamp
}
// Implement further consistency checks.
func (acc *Account) checkConsistency(db RODatabase, acck *AccountKey) error {
if !db.IsTrustedAccount(acc.AuthorityID()) {
return fmt.Errorf("account assertion for %q is not signed by a directly trusted authority: %s", acc.AccountID(), acc.AuthorityID())
}
return nil
}
// sanity
var _ consistencyChecker = (*Account)(nil)
func assembleAccount(assert assertionBase) (Assertion, error) {
_, err := checkNotEmptyString(assert.headers, "display-name")
if err != nil {
return nil, err
}
_, err = checkNotEmptyString(assert.headers, "validation")
if err != nil {
return nil, err
}
certified := assert.headers["validation"] == accountValidationCertified
timestamp, err := checkRFC3339Date(assert.headers, "timestamp")
if err != nil {
return nil, err
}
_, err = checkOptionalString(assert.headers, "username")
if err != nil {
return nil, err
}
return &Account{
assertionBase: assert,
certified: certified,
timestamp: timestamp,
}, nil
}