forked from nathankerr/rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.go
225 lines (199 loc) · 5.28 KB
/
server.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
package rest
import (
"fmt"
"net/http"
"net/url"
"strings"
)
var resources = make(map[string]interface{})
var contentTypes = make(map[string]string)
// Lists all the items in the resource
// GET /resource/
type index interface {
Index(http.ResponseWriter)
}
// Lists all the items in the resource
// GET /resource/
type informed_index interface {
Index(http.ResponseWriter, url.Values, http.Header)
}
// Creates a new resource item
// POST /resource/
type create interface {
Create(http.ResponseWriter, *http.Request)
}
// Views a resource item
// GET /resource/id
type find interface {
Find(http.ResponseWriter, string)
}
// Views a resource item
// GET /resource/id
type informed_find interface {
Find(http.ResponseWriter, string, url.Values, http.Header)
}
// PUT /resource/id
type update interface {
Update(http.ResponseWriter, string, *http.Request)
}
// Acts on a resource item, or performs a top level action
// POST /resource/id/** or POST /resource/top-level-action
type action interface {
Act(http.ResponseWriter, []string, *http.Request)
}
type operations interface {
GetOps(http.ResponseWriter)
Ops(http.ResponseWriter, string, *http.Request)
}
// DELETE /resource/id
type delete interface {
Delete(http.ResponseWriter, string)
}
// Return options to use the service. If string is nil, then it is the base URL
// OPTIONS /resource/id
// OPTIONS /resource/
type options interface {
Options(http.ResponseWriter, string)
}
// Generic resource handler
func resourceHandler(c http.ResponseWriter, req *http.Request) {
// Parse request URI to resource URI and (potential) ID
var resourceEnd = strings.Index(req.URL.Path[1:], "/") + 1
var resourceName string
if resourceEnd == -1 {
resourceName = req.URL.Path[1:]
} else {
resourceName = req.URL.Path[1:resourceEnd]
}
var id = req.URL.Path[resourceEnd+1:]
resource, ok := resources[resourceName]
if !ok {
fmt.Fprintf(c, "resource %s not found\n", resourceName)
}
SetResponseContentType(c, resourceName)
if len(id) == 0 {
switch req.Method {
case "GET":
// Index
if resIndex, ok := resource.(informed_index); ok {
if err := req.ParseForm(); err != nil {
BadRequest(c, err.Error())
return
}
resIndex.Index(c, req.Form, req.Header)
} else if resIndex, ok := resource.(index); ok {
resIndex.Index(c)
} else {
NotImplemented(c)
}
case "POST":
// Create
if resCreate, ok := resource.(create); ok {
resCreate.Create(c, req)
} else {
NotImplemented(c)
}
case "OPTIONS":
// automatic options listing
if resOptions, ok := resource.(options); ok {
resOptions.Options(c, id)
} else {
NotImplemented(c)
}
default:
NotImplemented(c)
}
} else { // ID was passed
switch req.Method {
case "GET":
// Find
if resFind, ok := resource.(informed_find); ok {
if err := req.ParseForm(); err != nil {
BadRequest(c, err.Error())
return
}
resFind.Find(c, id, req.Form, req.Header)
} else if resFind, ok := resource.(find); ok {
resFind.Find(c, id)
} else {
NotImplemented(c)
}
case "POST":
// Action
if resVerb, ok := resource.(action); ok {
parts := strings.Split(id, "/")
if parts[0] == "" {
http.Error(c, "invalid uri "+id, http.StatusBadRequest)
return
}
resVerb.Act(c, parts, req)
} else {
NotImplemented(c)
}
case "PUT":
// Update
if resUpdate, ok := resource.(update); ok {
resUpdate.Update(c, id, req)
} else {
NotImplemented(c)
}
case "DELETE":
// Delete
if resDelete, ok := resource.(delete); ok {
resDelete.Delete(c, id)
} else {
NotImplemented(c)
}
case "OPTIONS":
// automatic options
if resOptions, ok := resource.(options); ok {
resOptions.Options(c, id)
} else {
NotImplemented(c)
}
default:
NotImplemented(c)
}
}
}
// Add a resource route to http
func Resource(name string, res interface{}) {
resources[name] = res
http.Handle("/"+name+"/", http.HandlerFunc(resourceHandler))
}
// Registers content type for given resource, e.g. ResourceContentType("foo", "application/json")
func ResourceContentType(name string, contentType string) {
contentTypes[name] = contentType
}
func SetResponseContentType(c http.ResponseWriter, resourceName string) {
if contentType := contentTypes[resourceName]; contentType != "" {
c.Header().Set("Content-Type", contentType)
}
}
// Emits a 404 Not Found
func NotFound(c http.ResponseWriter) {
http.Error(c, "404 Not Found", http.StatusNotFound)
}
// Emits a 501 Not Implemented
func NotImplemented(c http.ResponseWriter) {
http.Error(c, "501 Not Implemented", http.StatusNotImplemented)
}
// Emits a 201 Created with the URI for the new location
func Created(c http.ResponseWriter, location string) {
c.Header().Set("Location", location)
http.Error(c, "201 Created", http.StatusCreated)
}
// Emits a 200 OK with a location. Used when after a PUT
func Updated(c http.ResponseWriter, location string) {
c.Header().Set("Location", location)
http.Error(c, "200 OK", http.StatusOK)
}
// Emits a bad request with the specified instructions
func BadRequest(c http.ResponseWriter, instructions string) {
c.WriteHeader(http.StatusBadRequest)
c.Write([]byte(instructions))
}
// Emits a 204 No Content
func NoContent(c http.ResponseWriter) {
http.Error(c, "204 No Content", http.StatusNoContent)
}