This repository has been archived by the owner on Jan 13, 2022. It is now read-only.
forked from felixb/swamp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
aliases.go
136 lines (120 loc) · 3.4 KB
/
aliases.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
package main
import (
"fmt"
"gopkg.in/yaml.v2"
"html/template"
"io"
"io/ioutil"
"regexp"
"sort"
)
type aliasConfig struct {
AllArgs string `yaml:"allArgs"`
AllExecs map[string]string `yaml:"allExecs"`
DefaultAdditionalArgs string `yaml:"defaultAdditionalArgs"`
Teams []team `yaml:"teams"`
}
type team struct {
Name string `yaml:"name"`
AdditionalArgs string `yaml:"additionalArgs"`
Accounts []account `yaml:"accounts"`
}
type account struct {
AccountId string `yaml:"accountId"`
Name string `yaml:"name"`
Roles []string `yaml:"roles"`
Execs map[string]string `yaml:"execs"`
}
type templateVars struct {
AccountId string
AccountName string
AliasName string
Args template.HTML
ProfileName string
Role string
TeamName string
}
const (
aliasTemplate = `
function swamp-{{.AliasName}}() {
SWAMP_TARGET_PROFILE='{{.ProfileName}}' \
SWAMP_ACCOUNT='{{.AccountId}}' \
SWAMP_ACCOUNT_NAME='{{.AccountName}}' \
SWAMP_TARGET_ROLE='{{.Role}}' \
swamp {{.Args}}
}
`
)
func generateAliases(w io.Writer, path string) error {
fmt.Fprintln(w, "# This aliases are generated with swamp")
c := &aliasConfig{}
if bytes, err := ioutil.ReadFile(path); err != nil {
return err
} else {
if err := yaml.Unmarshal(bytes, c); err != nil {
return err
}
for _, team := range c.Teams {
if err := generateAliasTeam(w, c, team); err != nil {
return err
}
}
}
return nil
}
func generateAliasTeam(w io.Writer, config *aliasConfig, team team) error {
for _, account := range team.Accounts {
if err := generateAliasAccount(w, config, team, account); err != nil {
return err
}
}
return nil
}
func generateAliasAccount(w io.Writer, config *aliasConfig, team team, account account) error {
if tpl, err := template.New("aliases").Option("missingkey=error").Parse(aliasTemplate); err != nil {
return err
} else {
for _, role := range account.Roles {
generateAliasRole(w, config, team, account, role, tpl)
}
}
return nil
}
func generateAliasRole(w io.Writer, config *aliasConfig, team team, account account, role string, tpl *template.Template) {
re := regexp.MustCompile(`[^a-zA-Z0-9_]`)
profileName := team.Name + "-" + account.Name + "-" + re.ReplaceAllString(role, "-")
args := config.AllArgs
if team.AdditionalArgs != "" {
args += " " + team.AdditionalArgs
} else {
args += " " + config.DefaultAdditionalArgs
}
args += " -account '" + account.AccountId + "'"
args += " -target-role '" + role + "'"
args += " -target-profile '" + profileName + "'"
baseArgs := args
t := templateVars{
AccountId: account.AccountId,
AccountName: account.Name,
AliasName: profileName,
Args: template.HTML(baseArgs + ` "${@}"`),
ProfileName: profileName,
Role: role,
TeamName: team.Name,
}
tpl.Execute(w, t)
generateExecs(w, baseArgs, profileName, tpl, t, config.AllExecs)
generateExecs(w, baseArgs, profileName, tpl, t, account.Execs)
}
func generateExecs(w io.Writer, baseArgs string, profileName string, tpl *template.Template, t templateVars, execs map[string]string) {
var keys []string
for k := range execs {
keys = append(keys, k)
}
sort.Strings(keys)
for _, k := range keys {
t.AliasName = profileName + "-" + k
t.Args = template.HTML(baseArgs + ` -exec "` + execs[k] + `"`)
tpl.Execute(w, t)
}
}