This repository has been archived by the owner on Jun 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontexts.go
313 lines (280 loc) · 11 KB
/
contexts.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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
// Code generated by goagen v1.3.0, DO NOT EDIT.
//
// API "letto": Application Contexts
//
// Command:
// $ goagen
// --design=github.com/rchampourlier/letto_go/design
// --out=$(GOPATH)/src/github.com/rchampourlier/letto_go
// --version=v1.3.0
package app
import (
"context"
"github.com/goadesign/goa"
"net/http"
)
// WebhookTriggersContext provides the triggers webhook action context.
type WebhookTriggersContext struct {
context.Context
*goa.ResponseData
*goa.RequestData
Group string
}
// NewWebhookTriggersContext parses the incoming request URL and body, performs validations and creates the
// context used by the triggers controller webhook action.
func NewWebhookTriggersContext(ctx context.Context, r *http.Request, service *goa.Service) (*WebhookTriggersContext, error) {
var err error
resp := goa.ContextResponse(ctx)
resp.Service = service
req := goa.ContextRequest(ctx)
req.Request = r
rctx := WebhookTriggersContext{Context: ctx, ResponseData: resp, RequestData: req}
paramGroup := req.Params["group"]
if len(paramGroup) > 0 {
rawGroup := paramGroup[0]
rctx.Group = rawGroup
}
return &rctx, err
}
// OK sends a HTTP response with status code 200.
func (ctx *WebhookTriggersContext) OK(resp []byte) error {
ctx.ResponseData.Header().Set("Content-Type", "text/plain")
ctx.ResponseData.WriteHeader(200)
_, err := ctx.ResponseData.Write(resp)
return err
}
// CreateWorkflowContext provides the workflow create action context.
type CreateWorkflowContext struct {
context.Context
*goa.ResponseData
*goa.RequestData
Payload *CreateWorkflowPayload
}
// NewCreateWorkflowContext parses the incoming request URL and body, performs validations and creates the
// context used by the workflow controller create action.
func NewCreateWorkflowContext(ctx context.Context, r *http.Request, service *goa.Service) (*CreateWorkflowContext, error) {
var err error
resp := goa.ContextResponse(ctx)
resp.Service = service
req := goa.ContextRequest(ctx)
req.Request = r
rctx := CreateWorkflowContext{Context: ctx, ResponseData: resp, RequestData: req}
return &rctx, err
}
// createWorkflowPayload is the workflow create action payload.
type createWorkflowPayload struct {
// A way of grouping workflows together to be triggered by a specific endpoint's URL
Group *string `form:"group,omitempty" json:"group,omitempty" xml:"group,omitempty"`
// Name of the workflow
Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
// Source code to execute for this workflow
Source *string `form:"source,omitempty" json:"source,omitempty" xml:"source,omitempty"`
}
// Validate runs the validation rules defined in the design.
func (payload *createWorkflowPayload) Validate() (err error) {
if payload.Source == nil {
err = goa.MergeErrors(err, goa.MissingAttributeError(`raw`, "source"))
}
if payload.Name == nil {
err = goa.MergeErrors(err, goa.MissingAttributeError(`raw`, "name"))
}
if payload.Group == nil {
err = goa.MergeErrors(err, goa.MissingAttributeError(`raw`, "group"))
}
if payload.Group != nil {
if ok := goa.ValidatePattern(`\A[\w-]+\z`, *payload.Group); !ok {
err = goa.MergeErrors(err, goa.InvalidPatternError(`raw.group`, *payload.Group, `\A[\w-]+\z`))
}
}
return
}
// Publicize creates CreateWorkflowPayload from createWorkflowPayload
func (payload *createWorkflowPayload) Publicize() *CreateWorkflowPayload {
var pub CreateWorkflowPayload
if payload.Group != nil {
pub.Group = *payload.Group
}
if payload.Name != nil {
pub.Name = *payload.Name
}
if payload.Source != nil {
pub.Source = *payload.Source
}
return &pub
}
// CreateWorkflowPayload is the workflow create action payload.
type CreateWorkflowPayload struct {
// A way of grouping workflows together to be triggered by a specific endpoint's URL
Group string `form:"group" json:"group" xml:"group"`
// Name of the workflow
Name string `form:"name" json:"name" xml:"name"`
// Source code to execute for this workflow
Source string `form:"source" json:"source" xml:"source"`
}
// Validate runs the validation rules defined in the design.
func (payload *CreateWorkflowPayload) Validate() (err error) {
if payload.Source == "" {
err = goa.MergeErrors(err, goa.MissingAttributeError(`raw`, "source"))
}
if payload.Name == "" {
err = goa.MergeErrors(err, goa.MissingAttributeError(`raw`, "name"))
}
if payload.Group == "" {
err = goa.MergeErrors(err, goa.MissingAttributeError(`raw`, "group"))
}
if ok := goa.ValidatePattern(`\A[\w-]+\z`, payload.Group); !ok {
err = goa.MergeErrors(err, goa.InvalidPatternError(`raw.group`, payload.Group, `\A[\w-]+\z`))
}
return
}
// Created sends a HTTP response with status code 201.
func (ctx *CreateWorkflowContext) Created() error {
ctx.ResponseData.WriteHeader(201)
return nil
}
// BadRequest sends a HTTP response with status code 400.
func (ctx *CreateWorkflowContext) BadRequest(r error) error {
ctx.ResponseData.Header().Set("Content-Type", "application/vnd.goa.error")
return ctx.ResponseData.Service.Send(ctx.Context, 400, r)
}
// InternalServerError sends a HTTP response with status code 500.
func (ctx *CreateWorkflowContext) InternalServerError(r error) error {
ctx.ResponseData.Header().Set("Content-Type", "application/vnd.goa.error")
return ctx.ResponseData.Service.Send(ctx.Context, 500, r)
}
// DeleteWorkflowContext provides the workflow delete action context.
type DeleteWorkflowContext struct {
context.Context
*goa.ResponseData
*goa.RequestData
WorkflowUUID string
}
// NewDeleteWorkflowContext parses the incoming request URL and body, performs validations and creates the
// context used by the workflow controller delete action.
func NewDeleteWorkflowContext(ctx context.Context, r *http.Request, service *goa.Service) (*DeleteWorkflowContext, error) {
var err error
resp := goa.ContextResponse(ctx)
resp.Service = service
req := goa.ContextRequest(ctx)
req.Request = r
rctx := DeleteWorkflowContext{Context: ctx, ResponseData: resp, RequestData: req}
paramWorkflowUUID := req.Params["workflowUUID"]
if len(paramWorkflowUUID) > 0 {
rawWorkflowUUID := paramWorkflowUUID[0]
rctx.WorkflowUUID = rawWorkflowUUID
}
return &rctx, err
}
// OK sends a HTTP response with status code 200.
func (ctx *DeleteWorkflowContext) OK(r *LettoWorkflow) error {
ctx.ResponseData.Header().Set("Content-Type", "application/letto.workflow+json")
return ctx.ResponseData.Service.Send(ctx.Context, 200, r)
}
// OKFull sends a HTTP response with status code 200.
func (ctx *DeleteWorkflowContext) OKFull(r *LettoWorkflowFull) error {
ctx.ResponseData.Header().Set("Content-Type", "application/letto.workflow+json")
return ctx.ResponseData.Service.Send(ctx.Context, 200, r)
}
// OKLink sends a HTTP response with status code 200.
func (ctx *DeleteWorkflowContext) OKLink(r *LettoWorkflowLink) error {
ctx.ResponseData.Header().Set("Content-Type", "application/letto.workflow+json")
return ctx.ResponseData.Service.Send(ctx.Context, 200, r)
}
// ListWorkflowContext provides the workflow list action context.
type ListWorkflowContext struct {
context.Context
*goa.ResponseData
*goa.RequestData
}
// NewListWorkflowContext parses the incoming request URL and body, performs validations and creates the
// context used by the workflow controller list action.
func NewListWorkflowContext(ctx context.Context, r *http.Request, service *goa.Service) (*ListWorkflowContext, error) {
var err error
resp := goa.ContextResponse(ctx)
resp.Service = service
req := goa.ContextRequest(ctx)
req.Request = r
rctx := ListWorkflowContext{Context: ctx, ResponseData: resp, RequestData: req}
return &rctx, err
}
// OK sends a HTTP response with status code 200.
func (ctx *ListWorkflowContext) OK(r *LettoWorkflowList) error {
ctx.ResponseData.Header().Set("Content-Type", "application/letto.workflow_list+json")
return ctx.ResponseData.Service.Send(ctx.Context, 200, r)
}
// ReadWorkflowContext provides the workflow read action context.
type ReadWorkflowContext struct {
context.Context
*goa.ResponseData
*goa.RequestData
WorkflowUUID string
}
// NewReadWorkflowContext parses the incoming request URL and body, performs validations and creates the
// context used by the workflow controller read action.
func NewReadWorkflowContext(ctx context.Context, r *http.Request, service *goa.Service) (*ReadWorkflowContext, error) {
var err error
resp := goa.ContextResponse(ctx)
resp.Service = service
req := goa.ContextRequest(ctx)
req.Request = r
rctx := ReadWorkflowContext{Context: ctx, ResponseData: resp, RequestData: req}
paramWorkflowUUID := req.Params["workflowUUID"]
if len(paramWorkflowUUID) > 0 {
rawWorkflowUUID := paramWorkflowUUID[0]
rctx.WorkflowUUID = rawWorkflowUUID
}
return &rctx, err
}
// OK sends a HTTP response with status code 200.
func (ctx *ReadWorkflowContext) OK(r *LettoWorkflow) error {
ctx.ResponseData.Header().Set("Content-Type", "application/letto.workflow+json")
return ctx.ResponseData.Service.Send(ctx.Context, 200, r)
}
// OKFull sends a HTTP response with status code 200.
func (ctx *ReadWorkflowContext) OKFull(r *LettoWorkflowFull) error {
ctx.ResponseData.Header().Set("Content-Type", "application/letto.workflow+json")
return ctx.ResponseData.Service.Send(ctx.Context, 200, r)
}
// OKLink sends a HTTP response with status code 200.
func (ctx *ReadWorkflowContext) OKLink(r *LettoWorkflowLink) error {
ctx.ResponseData.Header().Set("Content-Type", "application/letto.workflow+json")
return ctx.ResponseData.Service.Send(ctx.Context, 200, r)
}
// UpdateWorkflowContext provides the workflow update action context.
type UpdateWorkflowContext struct {
context.Context
*goa.ResponseData
*goa.RequestData
WorkflowUUID string
}
// NewUpdateWorkflowContext parses the incoming request URL and body, performs validations and creates the
// context used by the workflow controller update action.
func NewUpdateWorkflowContext(ctx context.Context, r *http.Request, service *goa.Service) (*UpdateWorkflowContext, error) {
var err error
resp := goa.ContextResponse(ctx)
resp.Service = service
req := goa.ContextRequest(ctx)
req.Request = r
rctx := UpdateWorkflowContext{Context: ctx, ResponseData: resp, RequestData: req}
paramWorkflowUUID := req.Params["workflowUUID"]
if len(paramWorkflowUUID) > 0 {
rawWorkflowUUID := paramWorkflowUUID[0]
rctx.WorkflowUUID = rawWorkflowUUID
}
return &rctx, err
}
// OK sends a HTTP response with status code 200.
func (ctx *UpdateWorkflowContext) OK(r *LettoWorkflow) error {
ctx.ResponseData.Header().Set("Content-Type", "application/letto.workflow+json")
return ctx.ResponseData.Service.Send(ctx.Context, 200, r)
}
// OKFull sends a HTTP response with status code 200.
func (ctx *UpdateWorkflowContext) OKFull(r *LettoWorkflowFull) error {
ctx.ResponseData.Header().Set("Content-Type", "application/letto.workflow+json")
return ctx.ResponseData.Service.Send(ctx.Context, 200, r)
}
// OKLink sends a HTTP response with status code 200.
func (ctx *UpdateWorkflowContext) OKLink(r *LettoWorkflowLink) error {
ctx.ResponseData.Header().Set("Content-Type", "application/letto.workflow+json")
return ctx.ResponseData.Service.Send(ctx.Context, 200, r)
}