forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresource.go
92 lines (75 loc) · 2.36 KB
/
resource.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
package ccv3
import (
"encoding/json"
"os"
"strconv"
"code.cloudfoundry.org/cli/api/cloudcontroller"
"code.cloudfoundry.org/cli/api/cloudcontroller/ccv3/internal"
)
type Checksum struct {
Value string `json:"value"`
}
type Resource struct {
// FilePath is the path of the resource.
FilePath string `json:"path"`
// Mode is the operating system file mode (aka file permissions) of the
// resource.
Mode os.FileMode `json:"mode"`
// SHA1 represents the SHA-1 hash of the resource.
Checksum Checksum `json:"checksum"`
// Size represents the file size of the resource.
SizeInBytes int64 `json:"size_in_bytes"`
}
// MarshalJSON converts a resource into a Cloud Controller Resource.
func (r Resource) MarshalJSON() ([]byte, error) {
var ccResource struct {
FilePath string `json:"path,omitempty"`
Mode string `json:"mode,omitempty"`
Checksum Checksum `json:"checksum"`
SizeInBytes int64 `json:"size_in_bytes"`
}
ccResource.FilePath = r.FilePath
ccResource.SizeInBytes = r.SizeInBytes
ccResource.Checksum = r.Checksum
ccResource.Mode = strconv.FormatUint(uint64(r.Mode), 8)
return json.Marshal(ccResource)
}
func (r Resource) ToV2FormattedResource() V2FormattedResource {
return V2FormattedResource{
Filename: r.FilePath,
Mode: r.Mode,
SHA1: r.Checksum.Value,
Size: r.SizeInBytes,
}
}
// UnmarshalJSON helps unmarshal a Cloud Controller Resource response.
func (r *Resource) UnmarshalJSON(data []byte) error {
var ccResource struct {
FilePath string `json:"path,omitempty"`
Mode string `json:"mode,omitempty"`
Checksum Checksum `json:"checksum"`
SizeInBytes int64 `json:"size_in_bytes"`
}
err := cloudcontroller.DecodeJSON(data, &ccResource)
if err != nil {
return err
}
r.FilePath = ccResource.FilePath
r.SizeInBytes = ccResource.SizeInBytes
r.Checksum = ccResource.Checksum
mode, err := strconv.ParseUint(ccResource.Mode, 8, 32)
if err != nil {
return err
}
r.Mode = os.FileMode(mode)
return nil
}
func (client Client) ResourceMatch(resources []Resource) ([]Resource, Warnings, error) {
var responseBody map[string][]Resource
_, warnings, err := client.MakeRequest(RequestParams{
RequestName: internal.PostResourceMatchesRequest,
RequestBody: map[string][]Resource{"resources": resources},
ResponseBody: &responseBody,
})
return responseBody["resources"], warnings, err
}