-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.go
353 lines (302 loc) · 12 KB
/
api.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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
//Copyright 2011 Siyabonga Dlamini ([email protected]). All rights reserved.
//
//Redistribution and use in source and binary forms, with or without
//modification, are permitted provided that the following conditions
//are met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
//
//THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
//IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
//OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
//IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
//SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
//PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
//OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
//WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
//OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
//ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
package gorest
import (
"net/http"
"strconv"
"time"
)
const (
XSXRF_COOKIE_NAME = "X-Xsrf-Cookie"
XSXRF_PARAM_NAME = "xsrft"
)
//Used to declare a new service.
//See code example below:
//
//
// type HelloService struct {
// gorest.RestService `root:"/tutorial/"`
// helloWorld gorest.EndPoint `method:"GET" path:"/hello-world/" output:"string"`
// sayHello gorest.EndPoint `method:"GET" path:"/hello/{name:string}" output:"string"`
// }
//
type RestService struct {
Context *Context
rb *ResponseBuilder
}
//Used to declare and EndPoint, wich represents a single point of entry to gorest applications, via a URL.
//See code example below:
//
// type HelloService struct {
// gorest.RestService `root:"/tutorial/"`
// helloWorld gorest.EndPoint `method:"GET" path:"/hello-world/" output:"string"`
// sayHello gorest.EndPoint `method:"GET" path:"/hello/{name:string}" output:"string"`
// }
//
type EndPoint bool
//Returns the ResponseBuilder associated with the current Context and Request.
//This can be called multiple times within a service method, the same instance will be returned.
func (serv RestService) RB() *ResponseBuilder {
return serv.ResponseBuilder()
}
//Returns the ResponseBuilder associated with the current Context and Request.
//This can be called multiple times within a service method, the same instance will be returned.
func (serv RestService) ResponseBuilder() *ResponseBuilder {
if serv.rb == nil {
serv.rb = &ResponseBuilder{ctx: serv.Context}
}
return serv.rb
}
//Get the SessionData associated with the current request, as sotred in the Context.
func (serv RestService) Session() SessionData {
return serv.Context.relSessionData
}
//Interface to be implemented by any session storage mechanism to be used with authorization.
type SessionData interface {
SessionId() string
}
type Context struct {
writer http.ResponseWriter
request *http.Request
xsrftoken string
args map[string]string
queryArgs map[string]string
relSessionData SessionData
//Response flags
overide bool
responseCode int
responseMimeSet bool
dataHasBeenWritten bool
}
//Returns a *http.Request associated with this Context
func (c *Context) Request() *http.Request {
return c.request
}
//Facilitates the construction of the response to be sent to the client.
type ResponseBuilder struct {
ctx *Context
}
//Returns the "xsrftoken" token associated with the current request and hence session.
//This token is either passed vi a URL query parameter "xsrft=1234567" or via a cookie with the name "X-Xsrf-Cookie",
//all depending on how your Authoriser is set up.
func (this *ResponseBuilder) SessionToken() string {
return this.ctx.xsrftoken
}
//Sets the "xsrftoken" token associated with the current request and hence session, only valid for the sepcified root path and period.
//This creates a cookie and sets an http header with the name "X-Xsrf-Cookie"
func (this *ResponseBuilder) SetSessionToken(token string, path string, expires time.Time) {
this.ctx.xsrftoken = token
this.SetHeader(XSXRF_COOKIE_NAME, token)
http.SetCookie(this.ctx.writer, &http.Cookie{Name: XSXRF_COOKIE_NAME, Value: token, Path: path, Expires: expires})
}
//This cleares the "xsrftoken" token associated with the current request and hence session.
//Calling this will unlink the current session, making it un-addressable/invalid. Therefore if maintaining a session store
//you may want to evict/destroy the session there.
func (this *ResponseBuilder) RemoveSessionToken(path string) {
this.SetSessionToken("", path, time.Unix(0, 0).UTC())
}
func (this *ResponseBuilder) writer() http.ResponseWriter {
return this.ctx.writer
}
//Set the http code to be sent with the response, to the client.
func (this *ResponseBuilder) SetResponseCode(code int) *ResponseBuilder {
this.ctx.responseCode = code
return this
}
//Set the content type of the http entity that is to be sent to the client.
func (this *ResponseBuilder) SetContentType(mime string) *ResponseBuilder {
this.ctx.responseMimeSet = true
this.writer().Header().Set("Content-Type", mime)
return this
}
//This indicates whether the data returned by the endpoint service method should be ignored or appendend to the data
//already writen to the response via ResponseBuilder. A vlaue of "true" will discard, while a value of "false"" will append.
func (this *ResponseBuilder) Overide(overide bool) {
this.ctx.overide = overide
}
//This will write to the response and then call Overide(true), even if it had been set to "false" in a previous call.
func (this *ResponseBuilder) WriteAndOveride(data []byte) *ResponseBuilder {
this.ctx.overide = true
return this.Write(data)
}
//This will write to the response and then call Overide(false), even if it had been set to "true" in a previous call.
func (this *ResponseBuilder) WriteAndContinue(data []byte) *ResponseBuilder {
this.ctx.overide = false
return this.Write(data)
}
//This will just write to the response without affecting the change done by a call to Overide().
func (this *ResponseBuilder) Write(data []byte) *ResponseBuilder {
if this.ctx.responseCode == 0 {
this.SetResponseCode(getDefaultResponseCode(this.ctx.request.Method))
}
if !this.ctx.dataHasBeenWritten {
//TODO: Check for content type set.......
this.writer().WriteHeader(this.ctx.responseCode)
}
this.writer().Write(data)
this.ctx.dataHasBeenWritten = true
return this
}
func (this *ResponseBuilder) LongPoll(delay int, producer func(interface{}) interface{}) *ResponseBuilder {
return this
}
//Cache related
//Add a "Cache-control" field of "public" to the response header.
func (this *ResponseBuilder) CachePublic() *ResponseBuilder {
this.setCache("public")
return this
}
//Add a "Cache-control" field of "private" to the response header.
func (this *ResponseBuilder) CachePrivate() *ResponseBuilder {
this.setCache("private")
return this
}
//Add a "Cache-control" field of "no-cache" to the response header.
func (this *ResponseBuilder) CacheNoCache() *ResponseBuilder {
this.setCache("no-cache")
return this
}
//Add a "Cache-control" field of "no-store" to the response header.
func (this *ResponseBuilder) CacheNoStore() *ResponseBuilder {
this.setCache("no-store")
return this
}
//Add a "Cache-control" field of "no-transform" to the response header.
func (this *ResponseBuilder) CacheNoTransform() *ResponseBuilder {
this.setCache("no-transform")
return this
}
//Add a "Cache-control" field of "must-revalidate" to the response header.
func (this *ResponseBuilder) CacheMustReval() *ResponseBuilder {
this.setCache("must-revalidate")
return this
}
//Add a "Cache-control" field of "proxy-revalidate" to the response header.
func (this *ResponseBuilder) CacheProxyReval() *ResponseBuilder {
this.setCache("proxy-revalidate")
return this
}
//Add a "Cache-control" field of "max-age = ?" to the response header.
func (this *ResponseBuilder) CacheMaxAge(seconds int) *ResponseBuilder {
this.setCache("max-age = " + strconv.Itoa(seconds))
return this
}
//Add a "Cache-control" field of "s-maxage = ?" to the response header.
func (this *ResponseBuilder) CacheSMaxAge(seconds int) *ResponseBuilder {
this.setCache("s-maxage = " + strconv.Itoa(seconds))
return this
}
//Delete/clear all Cache-control options from the response header.
func (this *ResponseBuilder) CacheClearAllOptions() *ResponseBuilder {
this.writer().Header().Del("Cache-control")
return this
}
//Set a "Connection" field of "keep-alive" to the response header.
func (this *ResponseBuilder) ConnectionKeepAlive() *ResponseBuilder {
this.writer().Header().Set("Connection", "keep-alive")
return this
}
//Set a "Connection" field of "close" to the response header.
func (this *ResponseBuilder) ConnectionClose() *ResponseBuilder {
this.writer().Header().Set("Connection", "close")
return this
}
//Set a "Location" field of "??" to the response header.
func (this *ResponseBuilder) Location(location string) *ResponseBuilder {
this.writer().Header().Set("Location", location)
return this
}
//Set a "Location" field of "??" and set the responseCode to 201, to the response header.
func (this *ResponseBuilder) Created(location string) *ResponseBuilder {
this.ctx.responseCode = 201
this.writer().Header().Set("Location", location)
return this
}
//Set a "Location" field of "??" and set the responseCode to 301, to the response header.
func (this *ResponseBuilder) MovedPermanently(location string) *ResponseBuilder {
this.ctx.responseCode = 301
this.writer().Header().Set("Location", location)
return this
}
//Set a "Location" field of "??" and set the responseCode to 302, to the response header.
func (this *ResponseBuilder) Found(location string) *ResponseBuilder {
this.ctx.responseCode = 302
this.writer().Header().Set("Location", location)
return this
}
//Set a "Location" field of "??" and set the responseCode to 303, to the response header.
func (this *ResponseBuilder) SeeOther(location string) *ResponseBuilder {
this.ctx.responseCode = 303
this.writer().Header().Set("Location", location)
return this
}
//Set a "Location" field of "??" and set the responseCode to 307, to the response header.
func (this *ResponseBuilder) MovedTemporarily(location string) *ResponseBuilder {
this.ctx.responseCode = 307
this.writer().Header().Set("Location", location)
return this
}
//Set the "Age" field to the provided period. Controls data expiration.
//Experiment together with Etag for flexible cacheing combinations.
func (this *ResponseBuilder) Age(seconds int) *ResponseBuilder {
this.writer().Header().Set("Age", strconv.Itoa(seconds))
return this
}
//Set "Etag" to the resopnse.
func (this *ResponseBuilder) ETag(tag string) *ResponseBuilder {
this.writer().Header().Set("ETag", tag)
return this
}
//Add an "Allow" field to the response header.
func (this *ResponseBuilder) Allow(tag string) *ResponseBuilder {
this.writer().Header().Add("Allow", tag)
return this
}
func (this *ResponseBuilder) setCache(option string) {
this.writer().Header().Add("Cache-control", option)
}
func (this *ResponseBuilder) SetHeader(key string, value string) *ResponseBuilder {
this.writer().Header().Set(key, value)
return this
}
//Used to add gereric/custom headers to the response.
//Good use for proxying and cross origins/site stuff.
//Example usage:
//
//
// rb := serv.ResponseBuilder()
// rb.AddHeader("Access-Control-Allow-Origin","http://127.0.0.1:8888")
// rb.AddHeader("Access-Control-Allow-Headers","X-HTTP-Method-Override")
// rb.AddHeader("Access-Control-Allow-Headers","X-Xsrf-Cookie")
// rb.AddHeader("Access-Control-Expose-Headers","X-Xsrf-Cookie")
//
func (this *ResponseBuilder) AddHeader(key string, value string) *ResponseBuilder {
this.writer().Header().Add(key, value)
return this
}
func (this *ResponseBuilder) DelHeader(key string) *ResponseBuilder {
this.writer().Header().Del(key)
return this
}