-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaddress.js
270 lines (220 loc) · 6.74 KB
/
address.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
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
define(function(require) {
var _ = require('underscore')
, nap = require('@websdk/nap')
, zapp = require('./z-app')
, codes = require('./http-status-code')
, isView = require('./is-view')
, isStream = require('./is-stream')
, interpolate = require('./interpolate')
, compose = require('./compose')
, wrapView = require('./view-wrapper')
, invokeView = require('./view-invoker')
, toObject = require('./kv-to-object')
, parseUri = require('./uri')
, error = require('./error')
, dispatch = require('d3-dispatch').dispatch
, rebind = require('./rebind')
, location = require('./location')
, middleware = require('./middleware')
function address(r) {
var uri
, web
, method = "get"
, headers = { accept : "application/x.nap.view" }
, params = {}
, query = {}
, body
, origin
, callback
, target
, into
, timeout = 30
, dispatcher = dispatch.apply(null, codes.range().concat(['err', 'done']))
if(r && _.isString(r)) {
uri = r
query = parseUri(uri).query() || query
} else if(r && _.isObject(r)) {
uri = r.uri || uri
query = r.query || query
method = r.method || method
headers = r.headers || headers
body = r.body || body
timeout = r.timeout || timeout
}
function api() {
var request = req()
// this should be removed once this issues are fixed
// https://github.com/websdk/nap/issues/34
if (!request.uri || request.uri === 'undefined') return bail()
function bail() {
var err = error(400, {
message: 'request is missing URI'
})
codes(err.statusCode).forEach(function(type) {
console.debug(err.statusCode, type, err.body.message, request.method)
dispatcher[type](err)
})
}
web.req(request, _.partial(handleResponse, request, callback))
}
api.web = function(w) {
if(!arguments.length) return web
web = augmentWeb(w)
return api
}
api.web(nap.web())
api.uri = function(u) {
if(!arguments.length) return uri
uri = u
return api
}
api.method = function(m) {
if(!arguments.length) return method
method = m
return api
}
api.header = function(k, v) {
if(!arguments.length) return headers
_.extend(headers, toObject(k, v))
return api
}
api.param = function(k, v) {
if(!arguments.length) return params
_.extend(params, toObject(k, v))
return api
}
api.query = function(k, v) {
if(!arguments.length) return query
_.extend(query, toObject(k, v))
return api
}
api.body = function(b) {
if(!arguments.length) return body
body = b
return api
}
api.then = function(cb) {
console.log("deprecated : address.then(). please use event api instead.")
if(!arguments.length) return callback
callback = cb
return api
}
api.into = function(v) {
into = v || null
return api
}
api.target = function(t) {
if(!arguments.length) return target
target = t
return api
}
api.origin = function(n) {
if(!arguments.length) return origin
origin = n
return api
}
api.navigate = function(t) {
if (t) api.target(t)
var request = req()
, root = zapp.root(origin)
, isLocalRoot = root !== zapp.root()
if (target) return location.openNewWindow(request.uri, target)
if (isLocalRoot) return api.into(root)()
return location.setState(request.uri)
}
api.view = function() {
return api.header('accept','application/x.nap.view')
}
api.app = function() {
return api.header('accept','application/x.am.app')
}
api.stream = function() {
return api.header('accept','application/x.zap.stream')
}
api.json = function() {
return api.header('accept','application/json')
}
api.xml = function() {
return api.header('accept','text/xml')
}
api.text = function() {
return api.header('accept','text/plain')
}
api.get = function() {
api.method('get')()
}
api.post = function(body) {
api.method('post').body(body)()
}
api.send = function(body) {
api.method('send').body(body)()
}
api.put = function(body) {
api.method('put').body(body)()
}
api.patch = function(body) {
api.method('patch').body(body)()
}
api.remove = function(body) {
api.method('remove').body(body)()
}
api.timeout = function(v) {
if(!arguments.length) return timeout
timeout = v
return api
}
return rebind(api, dispatcher, 'on')
function req() {
var context = getContext()
return {
uri : getUri()
, method : method
, headers : headers
, body : body
, context : context
, origin: origin
, timeout: timeout
}
function getUri() {
var interpolatedUri = interpolate(web, uri, params)
, parsedUri = parseUri(interpolatedUri)
, q = _.extend({}, parsedUri.query(), query)
, mergedUri = (_.isEmpty(q) ? parsedUri : parsedUri.query(q)).path()
if (!zapp.isRoot(context)) return mergedUri
return compose(web, mergedUri, zapp.resource(context))
}
function getContext() {
if (!isView({headers: headers})) return undefined
if (_.isString(into)) return zapp.root(origin).querySelector(into)
if (_.isNull(into) || _.isUndefined(into)) return zapp.root(origin)
return into
}
}
function handleResponse(req, callback, err, res) {
// deprecated //
callback && callback(err, res)
if (err) return dispatcher.err(err), null
if (isView(res)) {
if (res.statusCode != 302) wrapView(location, req, res)
req.context && invokeView(req, res)
}
if (isStream(res)) {
if (res.body && res.body.dispatcher) {
res.body = res.body.dispatcher
}
}
codes(res.statusCode).concat(['done']).forEach(function(type) {
dispatcher[type](res)
})
}
}
function augmentWeb(web) {
if (!web.use._address_decodeParams) {
web.use._address_decodeParams = true
web.use(middleware.decodeParams)
}
return web
}
return address
}
)