-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmerver.js
222 lines (196 loc) · 5.96 KB
/
merver.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
const http = require("http");
const url = require("url");
const { matchurls } = require("./params");
const querystring = require("querystring");
const nodeStatic = require("node-static");
// +& MIDDLEWARE FOR ADDING CLASSIC RESPONSE FUNCIONS
const classics = (req, res) => {
req.query = url.parse(req.url, true).query;
res.json = (obj, status = 200) => {
if (!res.headersSent) {
try {
res.writeHead(status, { "Content-Type": "application/json" });
res.write(JSON.stringify(obj));
} catch (err) {
console.error(err);
res.write(JSON.stringify(err));
}
return res.end();
} else {
console.log(
"Request already has been responded too, if not intended, consider extending the resTimeout config to facilitate time for promises to resolve"
);
}
};
res.html = (html, status = 200) => {
if (!res.headersSent) {
try {
res.writeHead(status, { "Content-Type": "text/html" });
res.write(html);
} catch (err) {
console.error(err);
res.write(JSON.stringify(err));
}
return res.end();
} else {
console.log(
"Request already has been responded too, if not intended, consider extending the resTimeout config to facilitate time for promises to resolve"
);
}
};
};
// +& MIDDLE OBJECT FOR RUNNING MIDDLEWARE
class Middler {
constructor() {
this.middleware = [];
}
addMiddleware(middleware) {
this.middleware.push(middleware);
}
runMiddleware(req, res) {
this.middleware.forEach((mw) => mw(req, res));
}
bodyParser(req, res) {
switch (req.headers["content-type"]) {
case "application/json":
req.body = JSON.parse(req.body);
break;
case "application/x-www-form-urlencoded":
req.body = querystring.decode(req.body);
break;
}
}
}
// +& Responder Object for Creating Routes
class Responder {
constructor() {
this.response = [];
}
respond(req, res) {
this.response.forEach((route) => {
try {
if (matchurls(route.endpoint, url.parse(req.url).pathname, req)) {
route.middler ? route.middler.runMiddleware(req, res) : null;
if (route[req.method]) {
route[req.method](req, res);
} else {
res.json({ error: "no response for this verb" }, 400);
}
}
} catch (err) {
res.json({ err }, 400);
}
});
}
newResponse(route) {
this.response.push(route);
}
}
// +& Merver for creating Server
class Merver {
constructor(config) {
this.PORT = config.PORT;
this.responder = config.responder || new Responder();
this.middler = config.middler || new Middler();
this.allowOrigin = config.allowOrigin || "*";
this.requestMethod = config.requestMethod || "*";
this.allowMethods = config.allowMethods || "OPTIONS, GET";
this.allowHeaders = config.allowHeaders || "*";
this.mwTimeout = config.mwTimeout || 10;
this.resTimeout = config.resTimeout || 500;
this.serveStatic = config.serveStatic;
this.publicFolder = config.publicFolder || "./public";
this.cache = config.cache || 3000;
this.static = new nodeStatic.Server(this.publicFolder, {
cache: this.cache,
});
this.server = http.createServer((req, res) => this.init(req, res, this));
}
listen(callback) {
this.server.listen(this.PORT);
console.log(`Listening on port ${this.PORT}`);
callback ? callback() : null;
}
init(req, res, merv) {
try {
//classic methods (req.query, res.html, res.json) are added
classics(req, res);
const bodyPromise = new Promise((done, fail) => {
//Receive Request Body
let body = [];
req
.on("error", (err) => {
console.error(err);
res.json({ err });
fail(err);
})
.on("data", (chunk) => {
body.push(chunk);
})
.on("end", () => {
req.body = Buffer.concat(body).toString();
done();
});
});
//Handle Response Errors
res.on("error", (err) => {
console.error(err);
res.json({ err });
});
//CORS HEADERS
res.setHeader("Access-Control-Allow-Origin", merv.allowOrigin);
res.setHeader("Access-Control-Request-Method", merv.requestMethod);
res.setHeader("Access-Control-Allow-Methods", merv.allowMethods);
res.setHeader("Access-Control-Allow-Headers", merv.allowHeaders);
//Handle request after body has been streamed
let mwPromise;
let resPromise;
bodyPromise.then(() => {
//MIDDLEWARE PROMISE
mwPromise = new Promise((done, fail) => {
merv.middler.runMiddleware(req, res);
setTimeout(done, merv.mwTimeout);
});
//ROUTE PROMISE
resPromise = new Promise((done, fail) => {
merv.responder.respond(req, res);
setTimeout(done, merv.resTimeout);
});
//Serve Files
//Failed Response if both promises timeout
Promise.all([mwPromise, resPromise]).then(() => {
if (res.headersSent) {
} else {
if (merv.serveStatic) {
merv.static.serve(req, res, function (err, result) {
if (err) {
// There was an error serving the file
console.error(
"Error serving " + req.url + " - " + err.message
);
// Respond to the client
res.json({ err });
}
});
} else {
if (!res.headersSent) {
res.json(
{ error: `no response for ${req.method} ${req.url}` },
400
);
}
}
}
});
});
} catch (err) {
console.error(err);
res.json({ err: `No Response for ${req.method} - ${req.url}` }, 400);
}
}
}
module.exports = {
Responder,
Merver,
Middler,
};