forked from ldej/go-acapy-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
138 lines (116 loc) · 3.05 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
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
package acapy
import (
"bytes"
"encoding/json"
"errors"
"io"
"io/ioutil"
"log"
"net/http"
"strings"
)
type Client struct {
acapyURL string
apiKey string
tracing bool
preserveExchangeRecords bool
autoRespondCredentialOffer bool
HTTPClient http.Client
}
func NewClient(acapyURL string) *Client {
return &Client{
acapyURL: strings.TrimRight(acapyURL, "/"),
HTTPClient: http.Client{},
}
}
func (c *Client) SetAPIKey(apiKey string) *Client {
c.apiKey = apiKey
return c
}
func (c *Client) EnableTracing() *Client {
c.tracing = true
return c
}
func (c *Client) DisableTracing() *Client {
c.tracing = false
return c
}
func (c *Client) PreserveExchangeRecords() *Client {
c.preserveExchangeRecords = true
return c
}
func (c *Client) AutoRespondCredentialOffer() *Client {
c.autoRespondCredentialOffer = true
return c
}
func (c *Client) post(path string, queryParam map[string]string, body interface{}, response interface{}) error {
return c.request(http.MethodPost, c.acapyURL+path, queryParam, body, response)
}
func (c *Client) get(path string, queryParams map[string]string, response interface{}) error {
return c.request(http.MethodGet, c.acapyURL+path, queryParams, nil, response)
}
func (c *Client) patch(path string, queryParams map[string]string, body interface{}, response interface{}) error {
return c.request(http.MethodPatch, c.acapyURL+path, queryParams, body, response)
}
func (c *Client) put(path string) error {
return c.request(http.MethodPut, c.acapyURL+path, nil, nil, nil)
}
func (c *Client) delete(path string) error {
return c.request(http.MethodDelete, c.acapyURL+path, nil, nil, nil)
}
func (c *Client) request(method string, url string, queryParams map[string]string, body interface{}, responseObject interface{}) error {
var input io.Reader
var err error
if body != nil {
jsonInput, err := json.Marshal(body)
if err != nil {
return err
}
input = bytes.NewReader(jsonInput)
}
r, err := http.NewRequest(method, url, input)
if err != nil {
return err
}
if c.apiKey != "" {
r.Header.Add("X-API-KEY", c.apiKey)
}
r.Header.Add("Content-Type", "application/json")
q := r.URL.Query()
for k, v := range queryParams {
if k != "" && v != "" {
q.Add(k, v)
}
}
r.URL.RawQuery = q.Encode()
response, err := c.HTTPClient.Do(r)
if err != nil || response.StatusCode >= 300 {
if response != nil {
log.Printf("Request failed: %s", response.Status)
if body, _ := ioutil.ReadAll(response.Body); err != nil {
log.Printf("Response body: %s", body)
err = errors.New(string(body))
}
}
return err
}
if responseObject != nil {
err = json.NewDecoder(response.Body).Decode(responseObject)
if err != nil {
return err
}
}
return nil
}
func (c *Client) getFile(url string) ([]byte, error) {
r, err := http.NewRequest(http.MethodGet, url, nil)
if err != nil {
return nil, err
}
response, err := c.HTTPClient.Do(r)
if err != nil {
return nil, err
}
defer response.Body.Close()
return ioutil.ReadAll(response.Body)
}