-
Notifications
You must be signed in to change notification settings - Fork 0
/
TopContainers.go
131 lines (110 loc) · 3.03 KB
/
TopContainers.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
package aspace
import (
"encoding/json"
"fmt"
"io"
)
func (a *ASClient) GetTopContainerIDs(repositoryID int) ([]int, error) {
var topContainers = []int{}
endpoint := fmt.Sprintf("/repositories/%d/top_containers?all_ids=true", repositoryID)
response, err := a.get(endpoint, true)
if err != nil {
return topContainers, err
}
body, err := io.ReadAll(response.Body)
if err != nil {
return topContainers, err
}
err = json.Unmarshal(body, &topContainers)
if err != nil {
return topContainers, err
}
return topContainers, nil
}
func (a *ASClient) GetTopContainer(repositoryID int, topContainerID int) (TopContainer, error) {
tc := TopContainer{}
endpoint := fmt.Sprintf("/repositories/%d/top_containers/%d", repositoryID, topContainerID)
reponse, err := a.get(endpoint, true)
if err != nil {
return tc, err
}
body, err := io.ReadAll(reponse.Body)
if err != nil {
return tc, err
}
err = json.Unmarshal(body, &tc)
if err != nil {
return tc, err
}
return tc, nil
}
// Update a Top Container for a given Repository and Accession ID
func (a *ASClient) UpdateTopContainer(repositoryID int, topContainerID int, topContainer TopContainer) (string, error) {
endpoint := fmt.Sprintf("/repositories/%d/top_containers/%d", repositoryID, topContainerID)
body, err := json.Marshal(topContainer)
if err != nil {
return "", err
}
response, err := a.post(endpoint, true, string(body))
if err != nil {
return "", err
}
msg, err := io.ReadAll(response.Body)
if err != nil {
return "", err
}
return string(msg), nil
}
// Delete a Top Container
func (a *ASClient) DeleteTopContainer(repositoryID int, topContainerID int) (string, error) {
endpoint := fmt.Sprintf("/repositories/%d/top_containers/%d", repositoryID, topContainerID)
response, err := a.delete(endpoint)
if err != nil {
return fmt.Sprintf("code %d", response.StatusCode), err
}
msg, err := io.ReadAll(response.Body)
if err != nil {
return fmt.Sprintf("code %d", response.StatusCode), err
}
return string(msg), nil
}
func (a *ASClient) GetTopContainerIDsForResource(repositoryID int, resourceID int) ([]string, error) {
tcs := []string{}
responseMap := []map[string]string{}
endpoint := fmt.Sprintf("/repositories/%d/resources/%d/top_containers", repositoryID, resourceID)
reponse, err := a.get(endpoint, true)
if err != nil {
return tcs, err
}
body, err := io.ReadAll(reponse.Body)
if err != nil {
return tcs, err
}
err = json.Unmarshal(body, &responseMap)
if err != nil {
return tcs, err
}
for _, tc := range responseMap {
tcs = append(tcs, tc["ref"])
}
return tcs, nil
}
func (a *ASClient) GetTopContainersForResource(repositoryID int, resourceID int) ([]TopContainer, error) {
tcs := []TopContainer{}
tcIds, err := a.GetTopContainerIDsForResource(repositoryID, resourceID)
if err != nil {
return tcs, err
}
for _, tcId := range tcIds {
_, tcId, err := URISplit(tcId)
if err != nil {
return tcs, err
}
tc, err := a.GetTopContainer(repositoryID, tcId)
if err != nil {
return tcs, err
}
tcs = append(tcs, tc)
}
return tcs, nil
}