forked from marpaia/chef-golang
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathclient.go
93 lines (85 loc) · 2.48 KB
/
client.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
package chef
import (
"encoding/json"
"fmt"
"strings"
)
// chef.Client defines the relevant parameters of a Chef client. This includes
// it's name, whether or not it's an admin, etc.
type Client struct {
Name string `json:"name"`
Admin bool `json:"admin"`
JSONClass string `json:"json_class"`
ChefType string `json:"chef_type"`
ClientName string `json:"clientname"`
Org string `json:"orgname"`
Validator bool `json:"validator"`
Certificate string `json:"certificate"`
PublicKey string `json:"public_key"`
}
// chef.GetClients returns a map of client name's to client REST urls as well as
// an error indicating if the request was successful or not.
//
// Usage:
//
// clients, err := chef.GetClients()
// if err != nil {
// fmt.Println(err)
// os.Exit(1)
// }
// // do what you please with the "clients" variable which is map of client
// // names to client REST urls
// for client := range clients {
// fmt.Println("Client:", client)
// }
func (chef *Chef) GetClients() (map[string]string, error) {
resp, err := chef.Get("clients")
if err != nil {
return nil, err
}
body, err := responseBody(resp)
if err != nil {
return nil, err
}
clients := map[string]string{}
json.Unmarshal(body, &clients)
return clients, nil
}
// GetClient accept a string representing the client name and returns a Client
// type which illustrates various information about the client. It also returns
// a bool indicating whether or not the client was found and an error indicating
// if the request failed or not.
//
// Note that if the request is successful but no such client existed, the error
// return value will be nil but the bool will be false.
//
// Usage:
//
// client, ok, err := chef.GetClient("clientname")
// if err != nil {
// fmt.Println(err)
// os.Exit(1)
// }
// if !ok {
// fmt.Println("Couldn't find that client!")
// } else {
// // do what you please with the "client" variable which is of the
// // *Chef.Client type
// fmt.Printf("%#v\n", client)
// }
func (chef *Chef) GetClient(name string) (*Client, bool, error) {
resp, err := chef.Get(fmt.Sprintf("clients/%s", name))
if err != nil {
return nil, false, err
}
body, err := responseBody(resp)
if err != nil {
if strings.Contains(err.Error(), "404") {
return nil, false, nil
}
return nil, false, err
}
client := new(Client)
json.Unmarshal(body, client)
return client, true, nil
}