mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
64 lines
1.6 KiB
JavaScript
64 lines
1.6 KiB
JavaScript
const _ = require('lodash');
|
|
const http = require('http');
|
|
|
|
module.exports = {
|
|
invoke: function (app, reqParams) {
|
|
let req = new http.IncomingMessage();
|
|
let res = new http.ServerResponse({
|
|
method: reqParams.method
|
|
});
|
|
|
|
res.end = function () {
|
|
this.emit('finish');
|
|
};
|
|
|
|
req.connection = {
|
|
encrypted: reqParams.secure
|
|
};
|
|
|
|
req.method = 'GET';
|
|
req.url = reqParams.url;
|
|
req.headers = {
|
|
host: reqParams.host
|
|
};
|
|
|
|
res.connection = {
|
|
_httpMessage: res,
|
|
writable: true,
|
|
destroyed: false,
|
|
cork: function () {},
|
|
uncork: function () {},
|
|
write: function () {},
|
|
on: function () {}
|
|
};
|
|
|
|
return new Promise(function (resolve) {
|
|
res.end = function (body) {
|
|
resolve({
|
|
err: res.req.err,
|
|
body: body,
|
|
statusCode: res.statusCode,
|
|
headers: res._headers,
|
|
template: res._template,
|
|
req: req,
|
|
res: res
|
|
});
|
|
};
|
|
|
|
res.send = function (body) {
|
|
resolve({
|
|
err: res.req.err,
|
|
body: body,
|
|
statusCode: res.statusCode,
|
|
headers: res._headers,
|
|
template: res._template,
|
|
req: req,
|
|
res: res
|
|
});
|
|
};
|
|
|
|
app(req, res);
|
|
});
|
|
}
|
|
};
|