-
Notifications
You must be signed in to change notification settings - Fork 0
/
image.go
215 lines (182 loc) · 5.32 KB
/
image.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
package agent
import (
"encoding/json"
"errors"
"net/http"
log "github.com/Sirupsen/logrus"
"github.com/gorilla/mux"
"github.com/mistifyio/mistify-agent/rpc"
)
func imageMultiQuery(ctx *Context, actionBaseName string, desiredImageType string, request *rpc.ImageRequest) ([]*rpc.Image, *HTTPError) {
// Determine the set of actions to query based on desired image type
imageTypes := []string{"", "container"}
if desiredImageType != "" {
imageTypes = []string{desiredImageType}
}
n := len(imageTypes)
// Create channels to aggregate results
resps := make(chan *rpc.ImageResponse, n)
errors := make(chan error, n)
// Get the action runner
runner, err := ctx.GetAgentRunner()
if err != nil {
return nil, NewHTTPError(http.StatusInternalServerError, err)
}
// Query in parallel
for _, imageType := range imageTypes {
actionName := prefixedActionName(imageType, actionBaseName)
go imageQuery(runner, actionName, request, resps, errors)
}
// Wait for all to finish and aggregate results
var images []*rpc.Image
for i := 0; i < n; i++ {
select {
case resp := <-resps:
images = append(images, resp.Images...)
case err = <-errors:
if err.Error() == "no such image" {
err = nil
continue
}
log.WithField("err", err).Info("image query error")
}
}
if err != nil {
return nil, NewHTTPError(http.StatusInternalServerError, err)
}
return images, nil
}
func imageQuery(runner *GuestRunner, actionName string, request *rpc.ImageRequest, respChan chan *rpc.ImageResponse, errChan chan error) {
response := &rpc.ImageResponse{}
action, err := runner.Context.GetAction(actionName)
if err != nil {
respChan <- response
return
}
pipeline := action.GeneratePipeline(request, response, nil, nil)
if err = runner.Process(pipeline); err != nil {
errChan <- err
return
}
respChan <- response
}
// listImages returns a list of images, optionally filtered by type
func listImages(w http.ResponseWriter, r *http.Request) {
hr := HTTPResponse{w}
ctx := getContext(r)
vars := mux.Vars(r)
request := &rpc.ImageRequest{}
images, err := imageMultiQuery(ctx, "listImages", vars["type"], request)
if err != nil {
hr.JSON(err.Code, err)
return
}
hr.JSON(http.StatusOK, images)
}
func getImage(w http.ResponseWriter, r *http.Request) {
hr := HTTPResponse{w}
ctx := getContext(r)
vars := mux.Vars(r)
request := &rpc.ImageRequest{
ID: vars["id"],
}
images, err := imageMultiQuery(ctx, "getImage", "", request)
if err != nil {
hr.JSON(err.Code, err)
return
}
if len(images) < 1 {
hr.JSONError(http.StatusNotFound, ErrNotFound)
return
}
// This may happen if more than one backend have the image stored under the
// same id, which is a problem. It will be much less likely when images are
// all pulled from a central image server that assigns ids.
if len(images) > 1 {
log.WithFields(log.Fields{
"imageID": request.ID,
"images": images,
}).Error("more than one image share id")
}
hr.JSON(http.StatusOK, images[0])
}
func deleteImage(w http.ResponseWriter, r *http.Request) {
hr := HTTPResponse{w}
ctx := getContext(r)
vars := mux.Vars(r)
response := &rpc.ImageResponse{}
request := &rpc.ImageRequest{
ID: vars["id"],
}
// First find the image in order to know the type and, therefore, what
// specific action to use to delete it
images, mqErr := imageMultiQuery(ctx, "getImage", "", request)
if mqErr != nil {
hr.JSON(mqErr.Code, mqErr)
return
}
if len(images) < 1 {
hr.JSONError(http.StatusNotFound, ErrNotFound)
return
}
// This may happen if more than one backend have the image stored under the
// same id, which is a problem. It will be much less likely when images are
// all pulled from a central image server that assigns ids.
if len(images) > 1 {
log.WithFields(log.Fields{
"imageID": request.ID,
"images": images,
}).Error("more than one image share id")
}
// Go ahead with the delete
action, err := ctx.GetAction(prefixedActionName(images[0].Type, "deleteImage"))
if err != nil {
hr.JSONError(http.StatusNotFound, err)
return
}
pipeline := action.GeneratePipeline(request, response, hr, nil)
hr.Header().Set("X-Guest-Job-ID", pipeline.ID)
runner, err := ctx.GetAgentRunner()
if err != nil {
hr.JSONError(http.StatusInternalServerError, err)
return
}
if err := runner.Process(pipeline); err != nil {
// how to check for not found??
hr.JSONError(http.StatusInternalServerError, err)
return
}
hr.JSON(http.StatusAccepted, struct{}{})
}
func fetchImage(w http.ResponseWriter, r *http.Request) {
hr := HTTPResponse{w}
ctx := getContext(r)
request := &rpc.ImageRequest{}
err := json.NewDecoder(r.Body).Decode(request)
if err != nil {
hr.JSONError(http.StatusBadRequest, err)
return
}
if request.ID == "" {
hr.JSONError(http.StatusBadRequest, errors.New("missing id"))
return
}
response := &rpc.ImageResponse{}
action, err := ctx.GetAction(prefixedActionName(request.Type, "fetchImage"))
if err != nil {
hr.JSONError(http.StatusNotFound, err)
return
}
pipeline := action.GeneratePipeline(request, response, hr, nil)
hr.Header().Set("X-Guest-Job-ID", pipeline.ID)
runner, err := ctx.GetAgentRunner()
if err != nil {
hr.JSONError(http.StatusInternalServerError, err)
return
}
if err := runner.Process(pipeline); err != nil {
hr.JSONError(http.StatusInternalServerError, err)
return
}
hr.JSON(http.StatusAccepted, response)
}