-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
219 lines (198 loc) · 4.96 KB
/
index.js
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
/**
* Dependencie(s)
*/
const compile = require('./lib/compile')
const { join, extname } = require('path')
const query = require('qs').parse
const parse = require('url').parse
const morph = require('morph-stream')
const body = require('request-body')
const lookup = require('mime-types').contentType
const stream = require('stream')
const assert = require('assert')
/**
* Create web resource.
*
* @param {Object} obj
* @param {Boolean} dev
* @return {Function}
* @api public
*/
module.exports = (obj, dev) => {
return compile(dev ? stub : resource, obj)
}
/**
* Create resource.
*
* A resource is a set of HTTP methods (or services).
*
* @param {Object} core
* @param {Object} services
* @param {ServerRequest} req
* @param {ServerResponse} res
* @return {Stream}
* @api public
*/
function resource (core, services, req, res) {
const method = req.method.toLowerCase()
const url = parse(join('/', req.url))
const service = core.has(method, url.pathname)
if (service) {
const conf = services[method][service.path]
return morph(
data(query(url.query), req, conf.limit)
.then(val => service({...val, ...req.query}, req, res))
.then(val => {
res.statusCode = Number(conf.options.status) || 200
res.setHeader('Content-Type', conf.options.type || mime(val))
return val
}, reason => status(res, reason))
)
} else {
return morph(status(res, {
status: 501,
message: `method ${method.toUpperCase()} not implemented`
}))
}
}
/**
* Stub resource.
*
* @param {Object} core
* @param {Object} services
* @param {ServerRequest} req
* @param {ServerResponse} res
* @return {Stream}
* @api private
*/
function stub (core, services, req, res) {
const method = req.method.toLowerCase()
const url = parse(join('/', req.url))
const handler = core.has(method, url.pathname)
if (handler) {
const service = services[method][handler.path]
const stories = service.stories
return morph(
data(query(url.query), req, service.limit)
.then(val => {
if (method !== 'options') return match(val, stories)
else {
res.writeHead(200, {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Methods': `*`,
'Access-Control-Allow-Headers': '*'
})
res.end()
return val
}
})
.then(story => {
const payload = story.payload
res.statusCode = story.status || 200
res.setHeader('Content-Type', mime(payload))
return payload
}, reason => status(res, {
status: 422,
message: `request content does not match any user story`
}))
)
} else {
return morph(status(res, {
status: 501,
message: `method ${method.toUpperCase()} not implemented`
}))
}
}
/**
* Check if data match one user story.
*
* @param {Object} data
* @param {Array} stories
* @return {Promise} resolved if match
* @api private
*/
function match (data, stories) {
var story
if (!(stories instanceof Array)) {
stories = Object.keys(stories).map(key => {
return {
key,
...stories[key]
}
})
}
return new Promise((resolve, reject) => {
for (var i = 0, l = stories.length; i < l; i++) {
story = stories[i]
assert.notDeepEqual(data, story.data)
}
resolve()
}).then(() => Promise.reject(), val => Promise.resolve(story))
}
/**
* Return MIME type according of a value.
*
* @note we could read the .path property of a stream
* to get the right content type using mime-types
*
* @param {String} type
* @return {String}
* @api private
*/
function mime (value) {
if (typeof value == 'object') {
let type = 'application/json; charset=utf-8'
if (value instanceof stream.Stream) {
type = lookup(extname(value.path || '')) || type
}
return type
}
return 'text/plain; charset=utf-8'
}
/**
* Set response error with custom status status code
* and payload.
*
* @param {ServerResponse} res
* @param {Object} err
* @return {Promise}
* @api private
*/
function status (res, err) {
const code = res.statusCode = Number(err.status) || 400
res.setHeader('Content-Type', 'application/json; charset=utf-8')
return Promise.resolve({
error: {
status: code,
message: err.message,
payload: err.payload || {}
}
})
}
/**
* Return the content of the body and the query parameters
* as a unified object.
*
* @param {Object} params
* @param {ServerRequest} req
* @param {Number} limit (default 100kb)
* @return {Promise}
* @api private
*/
function data (params, req, limit = 100000) {
return new Promise(resolve => {
const length = Number(req.headers['content-length'])
if (length && length > 0 && length <= limit) {
resolve(body(req).then(val => {
return {
...params,
...val
}
}))
} else {
resolve({
...params
})
}
})
}