-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.js
More file actions
227 lines (202 loc) · 5.49 KB
/
application.js
File metadata and controls
227 lines (202 loc) · 5.49 KB
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
'use strict';
var qs = require('qs');
var Promise = require('promise');
/**
* Core application
*
* @returns {CoreApplication}
* @constructor
*/
function CoreApplication() {
var preHookList = [];
var postHookList = [];
var routers = [];
/**
* Method that receive all http requests
* @param request
* @param response
* @returns {Promise}
*/
this.requestListener = function (request, response) {
return Promise.resolve()
.then(postDecode.bind(this, request))
.then(runHooks.bind(this, request, response, preHookList))
.then(dispatch.bind(this, request, response))
.then(runHooks.bind(this, request, response, postHookList))
.then(endResponse.bind(this, response))
.catch(this.onError.bind(this, request, response));
};
/**
* Add router to resolve uri
* @param router
* @returns {CoreApplication}
*/
this.addRouter = function (router) {
routers.push(router);
return this;
};
/**
* Add hook before calling action
* @param callableHook
* @returns {CoreApplication}
*/
this.addPreHook = function (callableHook) {
if (typeof callableHook !== 'function') {
this.error('Post hook is not callable');
}
preHookList.push(callableHook);
return this;
};
/**
* Add hook after calling action
* @param callableHook
* @returns {CoreApplication}
*/
this.addPostHook = function (callableHook) {
if (typeof callableHook !== 'function') {
this.error('Post hook is not callable');
}
postHookList.push(callableHook);
return this;
};
/**
* If page not found
* @param request
* @param response
* @param error
* @returns {CoreApplication}
*/
this.onPageNotFound = function (request, response, error) {
console.log(error);
response.writeHead(404);
response.end();
return this;
};
/**
* If an error occured
* @param request
* @param response
* @param error
* @returns {CoreApplication}
*/
this.onError = function (request, response, error) {
console.error(error);
response.writeHead(503);
response.end();
return this;
};
return this;
/**
* Dispatch request in good action using routers
* @param request
* @param response
* @returns {Promise}
*/
function dispatch(request, response) {
return Promise.resolve()
.then(resolveRouters.bind(this, request))
.then(callAction.bind(this, request, response));
}
/**
* Resolve uri using routers
* @param request
* @returns {Promise}
*/
function resolveRouters(request) {
for (var i = 0, l = routers.length; i < l; i++) {
var callback = routers[i].resolve(request);
if (null != callback) {
return Promise.resolve(callback);
}
}
return Promise.reject('Route not defined for "' + request.url + '"');
}
/**
* Call action and method form resolved route
* @param request
* @param response
* @param callback
* @returns {*}
*/
function callAction(request, response, callback) {
if (typeof callback == 'function') {
return Promive.resolve()
.then(callback.bind(null, request, response));
}
try {
var Action = require(ACTION_PATH + '/' + callback.action + '.js');
} catch (error) {
if (error.message == 'Cannot find module \'' + ACTION_PATH + '/' + callback.action + '.js\'') {
return Promise.reject('Action ' + callback.action + ' does not exist.')
.catch(this.onPageNotFound.bind(this, request, response));
}
return Promise.reject(error)
.catch(this.onError.bind(this, request, response));
}
var instance = new Action(request, response);
// Test if method exists
if (!instance[callback.method]) {
return Promise.reject(new Error('Method "' + callback.method + '" not found in action "' + callback.action + '"'));
}
var promise = Promise.resolve();
if (instance.init && 'function' == typeof instance.init) {
promise = promise.then(function () {
return instance.init();
});
}
promise = promise.then(function () {
return instance[callback.method].apply(instance, callback.arguments);
});
if (instance.onError && 'function' == typeof instance.onError) {
promise = promise.catch(function (error) {
return instance.onError.call(instance, error)
});
}
promise = promise.catch(this.onError.bind(this, request, response));
return promise;
}
/**
* Decode post data and add input into request
* @param request
* @returns {Promise}
*/
function postDecode(request) {
return new Promise(function promisePostDecode(resolve) {
var postData = '';
if (request.method === 'POST') {
request.on('data', function (chunk) {
// append the current chunk of data to the fullBody variable
postData += chunk.toString();
});
request.on('end', function () {
request.body = qs.parse(postData);
resolve();
});
} else {
resolve();
}
});
}
/**
* Run given hooks
* @param request
* @param response
* @param hooks
* @returns {Promise}
*/
function runHooks(request, response, hooks) {
var promise = Promise.resolve();
for (var i = 0; i < hooks.length; i++) {
promise = promise.then(hooks[i].bind(this, request, response));
}
return promise;
}
/**
* Finalize response
* @param response
*/
function endResponse(response) {
response.end();
}
}
module.exports = CoreApplication;