forked from mendersoftware/mender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient_inventory.go
91 lines (74 loc) · 2.62 KB
/
client_inventory.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
// Copyright 2021 Northern.tech AS
//
// 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 client
import (
"bytes"
"encoding/json"
"net/http"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
)
type InventorySubmitter interface {
Submit(api ApiRequester, server string, data interface{}) error
}
type InventoryClient struct {
}
func NewInventory() InventorySubmitter {
return &InventoryClient{}
}
// Submit reports status information to the backend
func (i *InventoryClient) Submit(api ApiRequester, url string, data interface{}) error {
// PATCH used to be the only method available in Mender Product 2.5, so
// fall back to that if PUT fails.
r, err := doSubmitInventory(api, http.MethodPut, url, data)
if r != nil && r.StatusCode == http.StatusMethodNotAllowed {
r, err = doSubmitInventory(api, http.MethodPatch, url, data)
}
log.Debugf("Inventory update sent, response %v", r)
if err != nil {
log.Error(err.Error())
}
return err
}
func doSubmitInventory(api ApiRequester, method, url string, data interface{}) (*http.Response, error) {
req, err := makeInventorySubmitRequest(method, url, data)
if err != nil {
return nil, errors.Wrapf(err, "failed to prepare inventory submit request")
}
r, err := api.Do(req)
if err != nil {
log.Error("Failed to submit inventory data: ", err)
return r, errors.Wrapf(err, "inventory submit failed")
}
defer r.Body.Close()
if r.StatusCode != http.StatusOK {
return r, NewAPIError(errors.Errorf("Got unexpected HTTP status when submitting to inventory %d", r.StatusCode), r)
}
return r, nil
}
func makeInventorySubmitRequest(method, server string, data interface{}) (*http.Request, error) {
url := buildApiURL(server, "/v1/inventory/device/attributes")
out := &bytes.Buffer{}
enc := json.NewEncoder(out)
err := enc.Encode(&data)
if err != nil {
return nil, errors.Wrapf(err, "failed to encode inventory request data")
}
hreq, err := http.NewRequest(method, url, out)
if err != nil {
return nil, errors.Wrapf(err, "failed to create inventory HTTP request")
}
hreq.Header.Add("Content-Type", "application/json")
return hreq, nil
}