-
Notifications
You must be signed in to change notification settings - Fork 0
/
response.go
245 lines (229 loc) · 5.74 KB
/
response.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
package vcago
import (
"encoding/json"
"net/http"
)
// Response represents the default api response struct
// Status defines the response status code
// Type defines the response type. Can be success or error
// Message shows action information
// Model shows the collection that would be attached
// Payload contains the response model
type Response struct {
Status int `json:"-"`
Type string `json:"type" bson:"type"`
Message string `json:"message" bson:"message"`
Model string `json:"model,omitempty" bson:"model,omitempty"`
Payload interface{} `json:"payload,omitempty" bson:"payload,omitempty"`
}
// Response returns an tuple that can be used with echo.Context.JSON.
func (i *Response) Response() (int, *Response) {
return i.Status, i
}
// NewResp creates new Response model.
func NewResp(status int, typ string, message string, model string, payload interface{}) *Response {
return &Response{
Status: status,
Type: typ,
Message: message,
Model: model,
Payload: payload,
}
}
// Error implements an error interface for handling Responses as Error.
// The function returns an json.Marshal of the error as string.
func (i *Response) Error() string {
res, _ := json.Marshal(i)
return string(res)
}
// NewCreated returns a Response model intended for a POST request that creates a model.
//
// Status: 201 Created
//
// JSON:
//
// {
// "type": "success",
// "message": "successfully_created",
// "model": model,
// "payload": payload
// }
func NewCreated(model string, payload interface{}) *Response {
return NewResp(http.StatusCreated, "success", "successfully_created", model, payload)
}
// NewUpdated returns a Response model intended for a PUT request that updates a model.
//
// Status: 200 OK
//
// JSON:
//
// {
// "type": "success",
// "message": "successfully_updated",
// "model": model,
// "payload": payload
// }
func NewUpdated(model string, payload interface{}) *Response {
return NewResp(http.StatusOK, "success", "successfully_updated", model, payload)
}
// NewDeleted returns a Response model intended for a DELETE request that deletes a model.
//
// Status: 200 OK
//
// JSON:
//
// {
// "type": "success",
// "message": "successfully_deleted",
// "model": model,
// "payload": payload
// }
func NewDeleted(model string, payload interface{}) *Response {
return NewResp(http.StatusOK, "success", "successfully_deleted", model, payload)
}
// NewSelected returns a Response model intended for a GET request that selects a model or list.
//
// Status: 200 OK
//
// JSON:
//
// {
// "type": "success",
// "message": "successfully_selected",
// "model": model,
// "payload": payload
// }
func NewSelected(model string, payload interface{}) *Response {
return NewResp(http.StatusOK, "success", "successfully_selected", model, payload)
}
// NewExecuted returns an Response model intended for a request that execute an process.
//
// Status: 200 OK
//
// JSON:
//
// {
// "type": "success",
// "message": "successfully_executed",
// "model": model,
// "payload": payload
// }
func NewExecuted(model string, payload interface{}) *Response {
return NewResp(http.StatusOK, "success", "successfully_executed", model, payload)
}
// NewBadRequest returns an Response model intended for an bad request response.
//
// Status: 400 Bad Request
//
// JSON with payload:
//
// {
// "type": "error",
// "message": message,
// "model": model,
// "payload": payload
// }
//
// JSON without payload:
//
// {
// "type": "error",
// "message": message,
// "model": model,
// }
func NewBadRequest(model string, message string, payload ...interface{}) *Response {
return NewResp(http.StatusBadRequest, "error", message, model, payload)
}
// NewInternalServerError returns an Response model intended for an internal server error response.
// The payload param is optional.
//
// Status: 500 Internal Server Error
//
// JSON with payload:
//
// {
// "type": "error",
// "message": "internal_server_error",
// "model": model,
// "payload": payload
// }
//
// JSON without payload:
//
// {
// "type": "error",
// "message": "internal_server_error",
// "model": model
// }
func NewInternalServerError(model string, payload ...interface{}) *Response {
return NewResp(http.StatusInternalServerError, "error", "internal_server_error", model, payload)
}
// NewConflict returns an Response model intended for an conflict error response.
//
// Status: 409 Conflict
//
// JSON with payload:
//
// {
// "type": "error",
// "message": "conflict",
// "model": model,
// "payload": payload
// }
//
// JSON without payload:
//
// {
// "type": "error",
// "message": "conflict",
// "model": model
// }
func NewConflict(model string, payload ...interface{}) *Response {
return NewResp(http.StatusConflict, "error", "conflict", model, payload)
}
// NewNotFound returns an Response model intended for an not found error response.
//
// Status: 404 Not Found
//
// JSON with payload:
//
// {
// "type": "error",
// "message": "not_found",
// "model": model,
// "payload": payload
// }
//
// JSON without payload:
//
// {
// "type": "error",
// "message": "not_found",
// "model": model
// }
func NewNotFound(model string, payload ...interface{}) *Response {
return NewResp(http.StatusNotFound, "error", "not_found", model, payload)
}
// NewPermissionDenied returns an Response model intended for an permission denied error response.
//
// Status: 400 Bad Request
//
// JSON with payload:
//
// {
// "type": "error",
// "message": "permission_denied",
// "model": model,
// "payload": payload
// }
//
// JSON without payload:
//
// {
// "type": "error",
// "message": "permission_denied",
// "model": model
// }
func NewPermissionDenied(model string, payload ...interface{}) *Response {
return NewResp(http.StatusBadRequest, "error", "permission_denied", model, payload)
}