-
Notifications
You must be signed in to change notification settings - Fork 51
/
sshkey.go
435 lines (357 loc) · 11.5 KB
/
sshkey.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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
package mcir
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"strconv"
"strings"
"github.com/cloud-barista/cb-tumblebug/src/common"
"github.com/labstack/echo"
)
// 2020-04-03 https://github.com/cloud-barista/cb-spider/blob/master/cloud-control-manager/cloud-driver/interfaces/resources/KeyPairHandler.go
type SpiderKeyPairReqInfo struct { // Spider
ConnectionName string
ReqInfo KeyPairReqInfo
}
type KeyPairReqInfo struct { // Spider
Name string
}
type KeyPairInfo struct { // Spider
IId common.IID // {NameId, SystemId}
Fingerprint string
PublicKey string
PrivateKey string
VMUserID string
KeyValueList []common.KeyValue
}
type sshKeyReq struct {
//Id string `json:"id"`
Name string `json:"name"`
ConnectionName string `json:"connectionName"`
//CspSshKeyName string `json:"cspSshKeyName"`
//Fingerprint string `json:"fingerprint"`
//Username string `json:"username"`
//PublicKey string `json:"publicKey"`
//PrivateKey string `json:"privateKey"`
Description string `json:"description"`
}
type sshKeyInfo struct {
Id string `json:"id"`
Name string `json:"name"`
ConnectionName string `json:"connectionName"`
CspSshKeyName string `json:"cspSshKeyName"`
Fingerprint string `json:"fingerprint"`
Username string `json:"username"`
PublicKey string `json:"publicKey"`
PrivateKey string `json:"privateKey"`
Description string `json:"description"`
KeyValueList []common.KeyValue `json:"keyValueList"`
}
// MCIS API Proxy: SshKey
func RestPostSshKey(c echo.Context) error {
nsId := c.Param("nsId")
u := &sshKeyReq{}
if err := c.Bind(u); err != nil {
return err
}
/*
action := c.QueryParam("action")
fmt.Println("[POST SshKey requested action: " + action)
if action == "create" {
fmt.Println("[Creating SshKey]")
content, _ := createSshKey(nsId, u)
return c.JSON(http.StatusCreated, content)
} else if action == "register" {
fmt.Println("[Registering SshKey]")
content, _ := registerSshKey(nsId, u)
return c.JSON(http.StatusCreated, content)
} else {
mapA := map[string]string{"message": "You must specify: action=create"}
return c.JSON(http.StatusFailedDependency, &mapA)
}
*/
fmt.Println("[POST SshKey")
fmt.Println("[Creating SshKey]")
content, responseCode, _, err := createSshKey(nsId, u)
if err != nil {
cblog.Error(err)
/*
mapA := map[string]string{
"message": "Failed to create a SshKey"}
return c.JSON(http.StatusFailedDependency, &mapA)
*/
//return c.JSON(res.StatusCode, res)
//body, _ := ioutil.ReadAll(res.Body)
mapA := map[string]string{"message": err.Error()}
return c.JSON(responseCode, &mapA)
}
return c.JSON(http.StatusCreated, content)
}
func RestGetSshKey(c echo.Context) error {
nsId := c.Param("nsId")
id := c.Param("sshKeyId")
content := sshKeyInfo{}
fmt.Println("[Get sshKey for id]" + id)
key := common.GenResourceKey(nsId, "sshKey", id)
fmt.Println(key)
keyValue, _ := store.Get(key)
if keyValue == nil {
mapA := map[string]string{"message": "Failed to find the sshKey with given ID."}
return c.JSON(http.StatusNotFound, &mapA)
} else {
fmt.Println("<" + keyValue.Key + "> \n" + keyValue.Value)
fmt.Println("===============================================")
json.Unmarshal([]byte(keyValue.Value), &content)
content.Id = id // Optional. Can be omitted.
return c.JSON(http.StatusOK, &content)
}
}
func RestGetAllSshKey(c echo.Context) error {
nsId := c.Param("nsId")
var content struct {
//Name string `json:"name"`
SshKey []sshKeyInfo `json:"sshKey"`
}
sshKeyList := getResourceList(nsId, "sshKey")
for _, v := range sshKeyList {
key := common.GenResourceKey(nsId, "sshKey", v)
fmt.Println(key)
keyValue, _ := store.Get(key)
fmt.Println("<" + keyValue.Key + "> \n" + keyValue.Value)
sshKeyTmp := sshKeyInfo{}
json.Unmarshal([]byte(keyValue.Value), &sshKeyTmp)
sshKeyTmp.Id = v
content.SshKey = append(content.SshKey, sshKeyTmp)
}
fmt.Printf("content %+v\n", content)
return c.JSON(http.StatusOK, &content)
}
func RestPutSshKey(c echo.Context) error {
//nsId := c.Param("nsId")
return nil
}
func RestDelSshKey(c echo.Context) error {
nsId := c.Param("nsId")
id := c.Param("sshKeyId")
forceFlag := c.QueryParam("force")
//responseCode, body, err := delSshKey(nsId, id, forceFlag)
responseCode, body, err := delResource(nsId, "sshKey", id, forceFlag)
if err != nil {
cblog.Error(err)
//mapA := map[string]string{"message": "Failed to delete the sshKey"}
//return c.JSON(http.StatusFailedDependency, &mapA)
return c.JSONBlob(responseCode, body)
}
mapA := map[string]string{"message": "The sshKey has been deleted"}
return c.JSON(http.StatusOK, &mapA)
//return c.JSON(http.StatusOK, body)
}
func RestDelAllSshKey(c echo.Context) error {
nsId := c.Param("nsId")
forceFlag := c.QueryParam("force")
sshKeyList := getResourceList(nsId, "sshKey")
if len(sshKeyList) == 0 {
mapA := map[string]string{"message": "There is no sshKey element in this namespace."}
return c.JSON(http.StatusNotFound, &mapA)
} else {
for _, v := range sshKeyList {
//responseCode, body, err := delSshKey(nsId, v, forceFlag)
responseCode, body, err := delResource(nsId, "sshKey", v, forceFlag)
if err != nil {
cblog.Error(err)
/*
mapA := map[string]string{"message": "Failed to delete the sshKey"}
return c.JSON(http.StatusFailedDependency, &mapA)
*/
return c.JSONBlob(responseCode, body)
}
}
mapA := map[string]string{"message": "All sshKeys has been deleted"}
return c.JSON(http.StatusOK, &mapA)
}
}
func createSshKey(nsId string, u *sshKeyReq) (sshKeyInfo, int, []byte, error) {
check, _ := checkResource(nsId, "sshKey", u.Name)
if check {
temp := sshKeyInfo{}
err := fmt.Errorf("The sshKey " + u.Name + " already exists.")
return temp, http.StatusConflict, nil, err
}
/* FYI; as of 2020-04-17
type sshKeyReq struct {
//Id string `json:"id"`
Name string `json:"name"`
ConnectionName string `json:"connectionName"`
CspSshKeyName string `json:"cspSshKeyName"`
//Fingerprint string `json:"fingerprint"`
//Username string `json:"username"`
//PublicKey string `json:"publicKey"`
//PrivateKey string `json:"privateKey"`
Description string `json:"description"`
}
*/
//url := SPIDER_URL + "/keypair?connection_name=" + u.ConnectionName
url := SPIDER_URL + "/keypair"
method := "POST"
//payload := strings.NewReader("{ \"Name\": \"" + u.CspSshKeyName + "\"}")
tempReq := SpiderKeyPairReqInfo{}
tempReq.ConnectionName = u.ConnectionName
tempReq.ReqInfo.Name = u.Name
payload, _ := json.MarshalIndent(tempReq, "", " ")
//fmt.Println("payload: " + string(payload)) // for debug
client := &http.Client{
CheckRedirect: func(req *http.Request, via []*http.Request) error {
return http.ErrUseLastResponse
},
}
req, err := http.NewRequest(method, url, strings.NewReader(string(payload)))
if err != nil {
fmt.Println(err)
}
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
cblog.Error(err)
content := sshKeyInfo{}
return content, res.StatusCode, nil, err
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
fmt.Println(string(body))
if err != nil {
cblog.Error(err)
content := sshKeyInfo{}
return content, res.StatusCode, body, err
}
fmt.Println("HTTP Status code " + strconv.Itoa(res.StatusCode))
switch {
case res.StatusCode >= 400 || res.StatusCode < 200:
err := fmt.Errorf(string(body))
fmt.Println("body: ", string(body))
cblog.Error(err)
content := sshKeyInfo{}
return content, res.StatusCode, body, err
}
temp := KeyPairInfo{}
err2 := json.Unmarshal(body, &temp)
if err2 != nil {
fmt.Println("whoops:", err2)
}
content := sshKeyInfo{}
//content.Id = common.GenUuid()
content.Id = common.GenId(u.Name)
content.Name = u.Name
content.ConnectionName = u.ConnectionName
content.CspSshKeyName = temp.IId.NameId
content.Fingerprint = temp.Fingerprint
content.Username = temp.VMUserID
content.PublicKey = temp.PublicKey
content.PrivateKey = temp.PrivateKey
content.Description = u.Description
content.KeyValueList = temp.KeyValueList
// cb-store
fmt.Println("=========================== PUT createSshKey")
Key := common.GenResourceKey(nsId, "sshKey", content.Id)
/*
mapA := map[string]string{
"connectionName": content.ConnectionName,
"cspSshKeyName": content.CspSshKeyName,
"fingerprint": content.Fingerprint,
"username": content.Username,
"publicKey": content.PublicKey,
"privateKey": content.PrivateKey,
"description": content.Description}
Val, _ := json.Marshal(mapA)
*/
Val, _ := json.Marshal(content)
cbStorePutErr := store.Put(string(Key), string(Val))
if cbStorePutErr != nil {
cblog.Error(cbStorePutErr)
return content, res.StatusCode, body, cbStorePutErr
}
keyValue, _ := store.Get(string(Key))
fmt.Println("<" + keyValue.Key + "> \n" + keyValue.Value)
fmt.Println("===========================")
return content, res.StatusCode, body, nil
}
/*
func getSshKeyList(nsId string) []string {
fmt.Println("[Get sshKeys")
key := "/ns/" + nsId + "/resources/sshKey"
fmt.Println(key)
keyValue, _ := store.GetList(key, true)
var sshKeyList []string
for _, v := range keyValue {
//if !strings.Contains(v.Key, "vm") {
sshKeyList = append(sshKeyList, strings.TrimPrefix(v.Key, "/ns/"+nsId+"/resources/sshKey/"))
//}
}
for _, v := range sshKeyList {
fmt.Println("<" + v + "> \n")
}
fmt.Println("===============================================")
return sshKeyList
}
*/
/*
func delSshKey(nsId string, Id string, forceFlag string) (int, []byte, error) {
fmt.Println("[Delete sshKey] " + Id)
key := genResourceKey(nsId, "sshKey", Id)
fmt.Println("key: " + key)
keyValue, _ := store.Get(key)
fmt.Println("keyValue: " + keyValue.Key + " / " + keyValue.Value)
temp := sshKeyInfo{}
unmarshalErr := json.Unmarshal([]byte(keyValue.Value), &temp)
if unmarshalErr != nil {
fmt.Println("unmarshalErr:", unmarshalErr)
}
fmt.Println("temp.CspSshKeyName: " + temp.CspSshKeyName)
//url := SPIDER_URL + "/keypair?connection_name=" + temp.ConnectionName // for testapi.io
url := SPIDER_URL + "/keypair/" + temp.CspSshKeyName + "?connection_name=" + temp.ConnectionName // for CB-Spider
fmt.Println("url: " + url)
method := "DELETE"
client := &http.Client{
CheckRedirect: func(req *http.Request, via []*http.Request) error {
return http.ErrUseLastResponse
},
}
req, err := http.NewRequest(method, url, nil)
if err != nil {
fmt.Println(err)
}
res, err := client.Do(req)
if err != nil {
cblog.Error(err)
return res.StatusCode, nil, err
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
fmt.Println(string(body))
if err != nil {
cblog.Error(err)
return res.StatusCode, body, err
}
fmt.Println("HTTP Status code " + strconv.Itoa(res.StatusCode))
switch {
case forceFlag == "true":
cbStoreDeleteErr := store.Delete(key)
if cbStoreDeleteErr != nil {
cblog.Error(cbStoreDeleteErr)
return res.StatusCode, body, cbStoreDeleteErr
}
return res.StatusCode, body, nil
case res.StatusCode >= 400 || res.StatusCode < 200:
err := fmt.Errorf(string(body))
cblog.Error(err)
return res.StatusCode, body, err
default:
cbStoreDeleteErr := store.Delete(key)
if cbStoreDeleteErr != nil {
cblog.Error(cbStoreDeleteErr)
return res.StatusCode, body, cbStoreDeleteErr
}
return res.StatusCode, body, nil
}
}
*/