2020-09-28 18:52:54 +02:00
|
|
|
import { Readable } from 'stream';
|
|
|
|
import { us_listen_socket_close, TemplatedApp, HttpResponse, HttpRequest } from 'uWebSockets.js';
|
|
|
|
|
2020-10-01 14:11:34 +02:00
|
|
|
import formData from './formdata';
|
2020-09-28 18:52:54 +02:00
|
|
|
import { stob } from './utils';
|
2020-09-29 10:57:14 +02:00
|
|
|
import { Handler } from './types';
|
2020-10-01 14:11:34 +02:00
|
|
|
import {join} from "path";
|
2020-09-28 18:52:54 +02:00
|
|
|
|
2020-10-01 14:11:34 +02:00
|
|
|
const contTypes = ['application/x-www-form-urlencoded', 'multipart/form-data'];
|
2020-09-28 18:52:54 +02:00
|
|
|
const noOp = () => true;
|
|
|
|
|
|
|
|
const handleBody = (res: HttpResponse, req: HttpRequest) => {
|
|
|
|
const contType = req.getHeader('content-type');
|
|
|
|
|
|
|
|
res.bodyStream = function() {
|
|
|
|
const stream = new Readable();
|
2020-09-29 16:12:17 +02:00
|
|
|
stream._read = noOp; // eslint-disable-line @typescript-eslint/unbound-method
|
2020-09-28 18:52:54 +02:00
|
|
|
|
2020-10-01 14:11:34 +02:00
|
|
|
this.onData((ab: ArrayBuffer, isLast: boolean) => {
|
2020-09-28 18:52:54 +02:00
|
|
|
// uint and then slicing is bit faster than slice and then uint
|
2020-09-29 16:12:17 +02:00
|
|
|
stream.push(new Uint8Array(ab.slice((ab as any).byteOffset, ab.byteLength))); // eslint-disable-line @typescript-eslint/no-explicit-any
|
2020-09-28 18:52:54 +02:00
|
|
|
if (isLast) {
|
|
|
|
stream.push(null);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return stream;
|
|
|
|
};
|
|
|
|
|
|
|
|
res.body = () => stob(res.bodyStream());
|
|
|
|
|
2020-09-29 16:12:17 +02:00
|
|
|
if (contType.includes('application/json'))
|
2020-09-28 18:52:54 +02:00
|
|
|
res.json = async () => JSON.parse(await res.body());
|
2020-10-01 15:55:23 +02:00
|
|
|
if (contTypes.map(t => contType.includes(t)).includes(true))
|
2020-10-01 14:11:34 +02:00
|
|
|
res.formData = formData.bind(res, contType);
|
2020-09-28 18:52:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class BaseApp {
|
|
|
|
_sockets = new Map();
|
|
|
|
ws!: TemplatedApp['ws'];
|
|
|
|
get!: TemplatedApp['get'];
|
|
|
|
_post!: TemplatedApp['post'];
|
|
|
|
_put!: TemplatedApp['put'];
|
|
|
|
_patch!: TemplatedApp['patch'];
|
|
|
|
_listen!: TemplatedApp['listen'];
|
|
|
|
|
|
|
|
post(pattern: string, handler: Handler) {
|
|
|
|
if (typeof handler !== 'function')
|
|
|
|
throw Error(`handler should be a function, given ${typeof handler}.`);
|
|
|
|
this._post(pattern, (res, req) => {
|
|
|
|
handleBody(res, req);
|
|
|
|
handler(res, req);
|
|
|
|
});
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
put(pattern: string, handler: Handler) {
|
|
|
|
if (typeof handler !== 'function')
|
|
|
|
throw Error(`handler should be a function, given ${typeof handler}.`);
|
|
|
|
this._put(pattern, (res, req) => {
|
|
|
|
handleBody(res, req);
|
|
|
|
|
|
|
|
handler(res, req);
|
|
|
|
});
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
patch(pattern: string, handler: Handler) {
|
|
|
|
if (typeof handler !== 'function')
|
|
|
|
throw Error(`handler should be a function, given ${typeof handler}.`);
|
|
|
|
this._patch(pattern, (res, req) => {
|
|
|
|
handleBody(res, req);
|
|
|
|
|
|
|
|
handler(res, req);
|
|
|
|
});
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
listen(h: string | number, p: Function | number = noOp, cb?: Function) {
|
|
|
|
if (typeof p === 'number' && typeof h === 'string') {
|
|
|
|
this._listen(h, p, socket => {
|
|
|
|
this._sockets.set(p, socket);
|
|
|
|
if (cb === undefined) {
|
|
|
|
throw new Error('cb undefined');
|
|
|
|
}
|
|
|
|
cb(socket);
|
|
|
|
});
|
|
|
|
} else if (typeof h === 'number' && typeof p === 'function') {
|
|
|
|
this._listen(h, socket => {
|
|
|
|
this._sockets.set(h, socket);
|
|
|
|
p(socket);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
throw Error(
|
|
|
|
'Argument types: (host: string, port: number, cb?: Function) | (port: number, cb?: Function)'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
close(port: null | number = null) {
|
|
|
|
if (port) {
|
|
|
|
this._sockets.has(port) && us_listen_socket_close(this._sockets.get(port));
|
|
|
|
this._sockets.delete(port);
|
|
|
|
} else {
|
|
|
|
this._sockets.forEach(app => {
|
|
|
|
us_listen_socket_close(app);
|
|
|
|
});
|
|
|
|
this._sockets.clear();
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default BaseApp;
|