This repository has been archived by the owner on Mar 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
doit.go
275 lines (219 loc) · 6.37 KB
/
doit.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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
/*
Copyright 2016 The Doctl Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package doit
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"log"
"net/http"
"strconv"
"strings"
"github.com/blang/semver"
"github.com/bryanl/doit/pkg/runner"
"github.com/bryanl/doit/pkg/ssh"
"github.com/digitalocean/godo"
jww "github.com/spf13/jwalterweatherman"
"github.com/spf13/viper"
"golang.org/x/oauth2"
)
const (
// NSRoot is a configuration key that signifies this value is at the root.
NSRoot = "doit"
// LatestReleaseURL is the latest release URL endpoint.
LatestReleaseURL = "https://api.github.com/repos/bryanl/doit/releases/latest"
)
var (
// DoitConfig holds the app's current configuration.
DoitConfig Config = &LiveConfig{}
// DoitVersion is doit's version.
DoitVersion = Version{
Major: 1,
Minor: 0,
Patch: 0,
Label: "dev",
}
// Build is doit's build tag.
Build string
// Major is doctl's major version.
Major string
// Minor is doctl's minor version.
Minor string
// Patch is doctl's patch version.
Patch string
// Label is doctl's label.
Label string
// TraceHTTP traces http connections.
TraceHTTP bool
)
func init() {
jww.SetStdoutThreshold(jww.LevelError)
}
// Version is the version info for doit.
type Version struct {
Major, Minor, Patch int
Name, Build, Label string
}
func (v Version) String() string {
var buffer bytes.Buffer
buffer.WriteString(fmt.Sprintf("%d.%d.%d", v.Major, v.Minor, v.Patch))
if v.Label != "" {
buffer.WriteString("-" + v.Label)
}
return buffer.String()
}
// Complete is the complete version for doit.
func (v Version) Complete(lv LatestVersioner) string {
var buffer bytes.Buffer
buffer.WriteString(fmt.Sprintf("doctl version %s", v.String()))
if v.Build != "" {
buffer.WriteString(fmt.Sprintf("\nGit commit hash: %s", v.Build))
}
if tagName, err := lv.LatestVersion(); err == nil {
v0, err1 := semver.Make(tagName)
v1, err2 := semver.Make(v.String())
if err1 == nil && err2 == nil && v0.GT(v1) {
buffer.WriteString(fmt.Sprintf("\n%q is a newer release than %q", tagName, v.String()))
}
}
return buffer.String()
}
// LatestVersioner an interface for detecting the latest version.
type LatestVersioner interface {
LatestVersion() (string, error)
}
// GithubLatestVersioner retrieves the latest version from Github.
type GithubLatestVersioner struct{}
var _ LatestVersioner = &GithubLatestVersioner{}
// LatestVersion retrieves the latest version from Github or returns
// an error.
func (glv *GithubLatestVersioner) LatestVersion() (string, error) {
u := LatestReleaseURL
res, err := http.Get(u)
if err != nil {
return "", err
}
defer res.Body.Close()
var m map[string]interface{}
if err = json.NewDecoder(res.Body).Decode(&m); err != nil {
return "", err
}
tn, ok := m["tag_name"]
if !ok {
return "", errors.New("could not find tag name in response")
}
tagName := tn.(string)
return strings.TrimPrefix(tagName, "v"), nil
}
// Config is an interface that represent doit's config.
type Config interface {
GetGodoClient(trace bool) *godo.Client
SSH(user, host, keyPath string, port int) runner.Runner
Set(ns, key string, val interface{})
GetString(ns, key string) (string, error)
GetBool(ns, key string) (bool, error)
GetInt(ns, key string) (int, error)
GetStringSlice(ns, key string) ([]string, error)
}
// LiveConfig is an implementation of Config for live values.
type LiveConfig struct {
godoClient *godo.Client
}
var _ Config = &LiveConfig{}
// GetGodoClient returns a GodoClient.
func (c *LiveConfig) GetGodoClient(trace bool) *godo.Client {
if c.godoClient != nil {
return c.godoClient
}
token := viper.GetString("access-token")
tokenSource := &TokenSource{AccessToken: token}
oauthClient := oauth2.NewClient(oauth2.NoContext, tokenSource)
if trace {
r := newRecorder(oauthClient.Transport)
go func() {
for {
select {
case msg := <-r.req:
log.Println("->", strconv.Quote(msg))
case msg := <-r.resp:
log.Println("<-", strconv.Quote(msg))
}
}
}()
oauthClient.Transport = r
}
c.godoClient = godo.NewClient(oauthClient)
return c.godoClient
}
// SSH creates a ssh connection to a host.
func (c *LiveConfig) SSH(user, host, keyPath string, port int) runner.Runner {
return &ssh.Runner{
User: user,
Host: host,
KeyPath: keyPath,
Port: port,
}
}
// Set sets a config key.
func (c *LiveConfig) Set(ns, key string, val interface{}) {
nskey := fmt.Sprintf("%s-%s", ns, key)
viper.Set(nskey, val)
}
// GetString returns a config value as a string.
func (c *LiveConfig) GetString(ns, key string) (string, error) {
if ns == NSRoot {
return viper.GetString(key), nil
}
nskey := fmt.Sprintf("%s.%s", ns, key)
if _, ok := viper.AllSettings()[fmt.Sprintf("%s.required", nskey)]; ok {
if viper.GetString(nskey) == "" {
return "", NewMissingArgsErr(nskey)
}
}
return viper.GetString(nskey), nil
}
// GetBool returns a config value as a bool.
func (c *LiveConfig) GetBool(ns, key string) (bool, error) {
if ns == NSRoot {
return viper.GetBool(key), nil
}
nskey := fmt.Sprintf("%s.%s", ns, key)
return viper.GetBool(nskey), nil
}
// GetInt returns a config value as an int.
func (c *LiveConfig) GetInt(ns, key string) (int, error) {
if ns == NSRoot {
return viper.GetInt(key), nil
}
nskey := fmt.Sprintf("%s.%s", ns, key)
if _, ok := viper.AllSettings()[fmt.Sprintf("%s.required", nskey)]; ok {
if viper.GetInt(nskey) < 0 {
return 0, NewMissingArgsErr(nskey)
}
}
return viper.GetInt(nskey), nil
}
// GetStringSlice returns a config value as a string slice.
func (c *LiveConfig) GetStringSlice(ns, key string) ([]string, error) {
if ns == NSRoot {
return viper.GetStringSlice(key), nil
}
nskey := fmt.Sprintf("%s.%s", ns, key)
if _, ok := viper.AllSettings()[fmt.Sprintf("%s.required", nskey)]; ok {
if viper.GetStringSlice(nskey) == nil {
return nil, NewMissingArgsErr(nskey)
}
}
return viper.GetStringSlice(nskey), nil
}