-
Notifications
You must be signed in to change notification settings - Fork 57
/
config.go
244 lines (214 loc) · 6.85 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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
package sso
/*
* AWS SSO CLI
* Copyright (c) 2021-2023 Aaron Turner <synfinatic at gmail dot com>
*
* This program is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or with the authors permission any later version.
*
* 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/>.
*/
import (
"fmt"
"strings"
"github.com/synfinatic/aws-sso-cli/internal/tags"
"github.com/synfinatic/aws-sso-cli/internal/url"
"github.com/synfinatic/aws-sso-cli/internal/utils"
)
type SSOConfig struct {
settings *Settings // pointer back up
key string // our key in Settings.SSO[]
SSORegion string `koanf:"SSORegion" yaml:"SSORegion"`
StartUrl string `koanf:"StartUrl" yaml:"StartUrl"`
Accounts map[string]*SSOAccount `koanf:"Accounts" yaml:"Accounts,omitempty"` // key must be a string to avoid parse errors!
DefaultRegion string `koanf:"DefaultRegion" yaml:"DefaultRegion,omitempty"`
// overrides for this SSO Instance
AuthUrlAction url.Action `koanf:"AuthUrlAction" yaml:"AuthUrlAction,omitempty"`
// passed to AWSSSO from our Settings
MaxBackoff int `koanf:"-" yaml:"-"`
MaxRetry int `koanf:"-" yaml:"-"`
}
type SSOAccount struct {
config *SSOConfig // pointer back up
Name string `koanf:"Name" yaml:"Name,omitempty"` // Admin configured Account Name
Tags map[string]string `koanf:"Tags" yaml:"Tags,omitempty" `
Roles map[string]*SSORole `koanf:"Roles" yaml:"Roles,omitempty"`
DefaultRegion string `koanf:"DefaultRegion" yaml:"DefaultRegion,omitempty"`
}
type SSORole struct {
account *SSOAccount // pointer back up
ARN string `yaml:"ARN"`
Profile string `koanf:"Profile" yaml:"Profile,omitempty"`
Tags map[string]string `koanf:"Tags" yaml:"Tags,omitempty"`
DefaultRegion string `koanf:"DefaultRegion" yaml:"DefaultRegion,omitempty"`
Via string `koanf:"Via" yaml:"Via,omitempty"`
ExternalId string `koanf:"ExternalId" yaml:"ExternalId,omitempty"`
SourceIdentity string `koanf:"SourceIdentity" yaml:"SourceIdentity,omitempty"`
}
// Refresh should be called any time you load the SSOConfig into memory or add a role
// to update the Role -> Account references
func (c *SSOConfig) Refresh(s *Settings) {
c.MaxBackoff = s.MaxBackoff
c.MaxRetry = s.MaxRetry
if c.AuthUrlAction == url.Undef {
c.AuthUrlAction = s.UrlAction
}
for accountId, a := range c.Accounts {
a.SetParentConfig(c)
for roleName, r := range a.Roles {
r.SetParentAccount(a)
r.ARN = utils.MakeRoleARNs(accountId, roleName)
}
}
c.settings = s
}
// CreatedAt returns the Unix epoch seconds that this config file was created at
func (c *SSOConfig) CreatedAt() int64 {
return c.settings.CreatedAt()
}
// GetRoles returns a list of all the roles for this SSOConfig
func (s *SSOConfig) GetRoles() []*SSORole {
roles := []*SSORole{}
for _, a := range s.Accounts {
for _, r := range a.Roles {
roles = append(roles, r)
}
}
return roles
}
// returns all of the available account & role tags for our SSO Provider
func (s *SSOConfig) GetAllTags() *tags.TagsList {
tags := tags.NewTagsList()
for _, accountInfo := range s.Accounts {
/*
if accountInfo.Tags != nil {
for k, v := range accountInfo.GetAllTags(account) {
tags.Add(k, v)
}
}
*/
for _, roleInfo := range accountInfo.Roles {
for k, v := range roleInfo.GetAllTags() {
tags.Add(k, v)
}
}
}
return tags
}
// GetRoleMatches finds all the roles which match all of the given tags
func (s *SSOConfig) GetRoleMatches(tags map[string]string) []*SSORole {
match := []*SSORole{}
for _, role := range s.GetRoles() {
isMatch := true
roleTags := role.GetAllTags()
for tk, tv := range tags {
if roleTags[tk] != tv {
isMatch = false
break
}
}
if isMatch {
match = append(match, role)
}
}
return match
}
// GetRole returns the matching role if it exists
func (s *SSOConfig) GetRole(accountId int64, role string) (*SSORole, error) {
id, err := utils.AccountIdToString(accountId)
if err != nil {
return &SSORole{}, err
}
if a, ok := s.Accounts[id]; ok {
if r, ok := a.Roles[role]; ok {
return r, nil
}
}
return &SSORole{}, fmt.Errorf("Unable to find %s:%s", id, role)
}
// HasRole returns true/false if the given Account has the provided arn
func (a *SSOAccount) HasRole(arn string) bool {
hasRole := false
for _, role := range a.Roles {
if role.ARN == arn {
hasRole = true
break
}
}
return hasRole
}
// GetAllTags returns all of the user defined tags and calculated tags for this account
func (a *SSOAccount) GetAllTags(id int64) map[string]string {
accountName := "*Unknown*"
if a.Name != "" {
accountName = strings.ReplaceAll(a.Name, " ", "_")
}
tags := map[string]string{
"AccountName": accountName,
}
if id > 0 {
accountId, _ := utils.AccountIdToString(id)
tags["AccountId"] = accountId
}
if a.DefaultRegion != "" {
tags["DefaultRegion"] = a.DefaultRegion
}
for k, v := range a.Tags {
tags[k] = v
}
return tags
}
func (r *SSORole) SetParentAccount(a *SSOAccount) {
r.account = a
}
func (a *SSOAccount) SetParentConfig(c *SSOConfig) {
a.config = c
}
// GetAllTags returns all of the user defined and calculated tags for this role
func (r *SSORole) GetAllTags() map[string]string {
tags := map[string]string{}
// First pull in the account tags
for k, v := range r.account.GetAllTags(r.GetAccountId64()) {
tags[k] = v
}
// Then override/add any specific tags
tags["RoleName"] = r.GetRoleName()
tags["AccountId"] = r.GetAccountId()
if r.DefaultRegion != "" {
tags["DefaultRegion"] = r.DefaultRegion
}
for k, v := range r.Tags {
tags[k] = v
}
return tags
}
// GetRoleName returns the role name portion of the ARN
func (r *SSORole) GetRoleName() string {
s := strings.Split(r.ARN, "/")
return s[1]
}
// GetAccountId returns the accountId portion of the ARN or empty string on error
func (r *SSORole) GetAccountId() string {
a, err := utils.AccountIdToString(r.GetAccountId64())
if err != nil {
log.WithError(err).Errorf("Unable to parse AccountId '%s'", a)
return ""
}
return a
}
// GetAccountId64 returns the accountId portion of the ARN
func (r *SSORole) GetAccountId64() int64 {
a, _, err := utils.ParseRoleARN(r.ARN)
if err != nil {
log.WithError(err).Panicf("Unable to parse %s", r.ARN)
}
return a
}