Browse Source

base/http

CrazyDoctor 2 months ago
parent
commit
0f1a6eb54f

+ 4 - 0
dist/base/http/NextFunction.d.ts

@@ -0,0 +1,4 @@
+import { NextFunction as ExpressNextFunction } from 'express';
+interface NextFunction extends ExpressNextFunction {
+}
+export { NextFunction };

+ 4 - 0
dist/base/http/NextFunction.js

@@ -0,0 +1,4 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+;
+//# sourceMappingURL=NextFunction.js.map

+ 1 - 0
dist/base/http/NextFunction.js.map

@@ -0,0 +1 @@
+{"version":3,"file":"NextFunction.js","sourceRoot":"","sources":["../../../lib/base/http/NextFunction.ts"],"names":[],"mappings":";;AAEqD,CAAC"}

+ 2 - 1
dist/base/http/Route.d.ts

@@ -1,6 +1,7 @@
-import { Request, Response } from 'express';
 import { HttpMethod } from './HttpMethod';
 import { HttpHandler } from './HttpHandler';
+import { Request } from './Request';
+import { Response } from './Response';
 declare abstract class Route extends HttpHandler {
     protected abstract method: HttpMethod;
     protected abstract action: (req: Request, res: Response) => any;

+ 1 - 1
dist/base/http/Route.js.map

@@ -1 +1 @@
-{"version":3,"file":"Route.js","sourceRoot":"","sources":["../../../lib/base/http/Route.ts"],"names":[],"mappings":";;;AAEA,+CAA4C;AAE5C,MAAe,KAAM,SAAQ,yBAAW;IAIvC,IAAc,aAAa;QAC1B,OAAO,EAAE,CAAC;IACX,CAAC;IAEM,SAAS;QACf,OAAO,IAAI,CAAC,MAAM,CAAC;IACpB,CAAC;IAEM,gBAAgB;QACtB,OAAO,IAAI,CAAC,aAAa,CAAC;IAC3B,CAAC;CACD;AAEQ,sBAAK"}
+{"version":3,"file":"Route.js","sourceRoot":"","sources":["../../../lib/base/http/Route.ts"],"names":[],"mappings":";;;AACA,+CAA4C;AAI5C,MAAe,KAAM,SAAQ,yBAAW;IAIvC,IAAc,aAAa;QAC1B,OAAO,EAAE,CAAC;IACX,CAAC;IAEM,SAAS;QACf,OAAO,IAAI,CAAC,MAAM,CAAC;IACpB,CAAC;IAEM,gBAAgB;QACtB,OAAO,IAAI,CAAC,aAAa,CAAC;IAC3B,CAAC;CACD;AAEQ,sBAAK"}

+ 1 - 0
dist/base/http/index.d.ts

@@ -5,3 +5,4 @@ export { Route } from './Route';
 export { StatusCodes } from './StatusCodes';
 export { Response } from './Response';
 export { Request } from './Request';
+export { NextFunction } from './NextFunction';

+ 1 - 2
dist/middlewares/InternalServerErrorHandler.d.ts

@@ -1,5 +1,4 @@
-import { Middleware } from '../base/http';
-import { NextFunction, Request, Response } from 'express';
+import { Middleware, Request, Response, NextFunction } from '../base/http';
 declare class InternalServerErrorHandler extends Middleware {
     protected order: number;
     protected route: null;

+ 1 - 1
dist/middlewares/InternalServerErrorHandler.js.map

@@ -1 +1 @@
-{"version":3,"file":"InternalServerErrorHandler.js","sourceRoot":"","sources":["../../lib/middlewares/InternalServerErrorHandler.ts"],"names":[],"mappings":";;AAAA,uCAAuD;AAEvD,uCAAkC;AAElC,MAAM,0BAA2B,SAAQ,iBAAU;IAAnD;;QACW,UAAK,GAAG,KAAK,CAAC;QACd,UAAK,GAAG,IAAI,CAAC;QACb,WAAM,GAAG,CAAC,GAAU,EAAE,GAAY,EAAE,GAAa,EAAE,IAAkB,EAAO,EAAE;YACvF,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,GAAG,CAAC,OAAO,KAAK,GAAG,CAAC,KAAK,EAAE,CAAC,CAAC;YACtD,GAAG,CAAC,MAAM,CAAC,kBAAW,CAAC,qBAAqB,CAAC,CAAC,IAAI,CAAC,IAAA,SAAE,EAAC,yCAAyC,CAAC,CAAC,CAAC;QACnG,CAAC,CAAC;IACH,CAAC;CAAA;AAED,kBAAe,0BAA0B,CAAC"}
+{"version":3,"file":"InternalServerErrorHandler.js","sourceRoot":"","sources":["../../lib/middlewares/InternalServerErrorHandler.ts"],"names":[],"mappings":";;AAAA,uCAAwF;AACxF,uCAAkC;AAElC,MAAM,0BAA2B,SAAQ,iBAAU;IAAnD;;QACW,UAAK,GAAG,KAAK,CAAC;QACd,UAAK,GAAG,IAAI,CAAC;QACb,WAAM,GAAG,CAAC,GAAU,EAAE,GAAY,EAAE,GAAa,EAAE,IAAkB,EAAO,EAAE;YACvF,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,GAAG,CAAC,OAAO,KAAK,GAAG,CAAC,KAAK,EAAE,CAAC,CAAC;YACtD,GAAG,CAAC,MAAM,CAAC,kBAAW,CAAC,qBAAqB,CAAC,CAAC,IAAI,CAAC,IAAA,SAAE,EAAC,yCAAyC,CAAC,CAAC,CAAC;QACnG,CAAC,CAAC;IACH,CAAC;CAAA;AAED,kBAAe,0BAA0B,CAAC"}

+ 1 - 2
dist/middlewares/LoggerMiddleware.d.ts

@@ -1,5 +1,4 @@
-import { Middleware } from '../base/http';
-import { NextFunction, Request, Response } from 'express';
+import { Middleware, Request, Response, NextFunction } from '../base/http';
 declare class LoggerMiddleware extends Middleware {
     protected order: number;
     protected route: null;

+ 1 - 1
dist/middlewares/LoggerMiddleware.js.map

@@ -1 +1 @@
-{"version":3,"file":"LoggerMiddleware.js","sourceRoot":"","sources":["../../lib/middlewares/LoggerMiddleware.ts"],"names":[],"mappings":";;AAAA,uCAA0C;AAE1C,2CAA2C;AAE3C,MAAM,gBAAiB,SAAQ,iBAAU;IAAzC;;QACW,UAAK,GAAG,CAAC,EAAE,CAAC;QACZ,UAAK,GAAG,IAAI,CAAC;QACvB,0EAA0E;QAChE,WAAM,GAAG,CAAC,GAAa,EAAE,GAAY,EAAE,IAAkB,EAAO,EAAE;YAC3E,IAAI,EAAE,CAAC;QACR,CAAC,CAAC;IACH,CAAC;CAAA;AAED,kBAAe,gBAAgB,CAAC"}
+{"version":3,"file":"LoggerMiddleware.js","sourceRoot":"","sources":["../../lib/middlewares/LoggerMiddleware.ts"],"names":[],"mappings":";;AAAA,uCAA2E;AAC3E,2CAA2C;AAE3C,MAAM,gBAAiB,SAAQ,iBAAU;IAAzC;;QACW,UAAK,GAAG,CAAC,EAAE,CAAC;QACZ,UAAK,GAAG,IAAI,CAAC;QACvB,0EAA0E;QAChE,WAAM,GAAG,CAAC,GAAa,EAAE,GAAY,EAAE,IAAkB,EAAO,EAAE;YAC3E,IAAI,EAAE,CAAC;QACR,CAAC,CAAC;IACH,CAAC;CAAA;AAED,kBAAe,gBAAgB,CAAC"}

+ 1 - 2
dist/middlewares/NotFoundErrorHandler.d.ts

@@ -1,5 +1,4 @@
-import { Middleware } from '../base/http';
-import { NextFunction, Request, Response } from 'express';
+import { Middleware, Request, Response, NextFunction } from '../base/http';
 declare class NotFoundErrorHandler extends Middleware {
     protected order: number;
     protected route: null;

+ 1 - 1
dist/middlewares/NotFoundErrorHandler.js.map

@@ -1 +1 @@
-{"version":3,"file":"NotFoundErrorHandler.js","sourceRoot":"","sources":["../../lib/middlewares/NotFoundErrorHandler.ts"],"names":[],"mappings":";;AAAA,uCAAuD;AAEvD,uCAAkC;AAElC,MAAM,oBAAqB,SAAQ,iBAAU;IAA7C;;QACW,UAAK,GAAG,IAAI,CAAC;QACb,UAAK,GAAG,IAAI,CAAC;QACb,WAAM,GAAG,CAAC,GAAY,EAAE,GAAa,EAAE,IAAkB,EAAO,EAAE;YAC3E,GAAG,CAAC,MAAM,CAAC,kBAAW,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,IAAA,SAAE,EAAC,yCAAyC,EAAE,EAAE,GAAG,EAAE,GAAG,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACzG,CAAC,CAAC;IACH,CAAC;CAAA;AAED,kBAAe,oBAAoB,CAAC"}
+{"version":3,"file":"NotFoundErrorHandler.js","sourceRoot":"","sources":["../../lib/middlewares/NotFoundErrorHandler.ts"],"names":[],"mappings":";;AAAA,uCAAwF;AACxF,uCAAkC;AAElC,MAAM,oBAAqB,SAAQ,iBAAU;IAA7C;;QACW,UAAK,GAAG,IAAI,CAAC;QACb,UAAK,GAAG,IAAI,CAAC;QACb,WAAM,GAAG,CAAC,GAAY,EAAE,GAAa,EAAE,IAAkB,EAAO,EAAE;YAC3E,GAAG,CAAC,MAAM,CAAC,kBAAW,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,IAAA,SAAE,EAAC,yCAAyC,EAAE,EAAE,GAAG,EAAE,GAAG,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACzG,CAAC,CAAC;IACH,CAAC;CAAA;AAED,kBAAe,oBAAoB,CAAC"}

+ 1 - 2
dist/middlewares/PoweredByHeaderMiddleware.d.ts

@@ -1,5 +1,4 @@
-import { Request, Response, NextFunction } from 'express';
-import { Middleware } from '../base/http';
+import { Request, Response, Middleware, NextFunction } from '../base/http';
 declare class PoweredByHeaderMiddleware extends Middleware {
     protected action: (req: Request, res: Response, next: NextFunction) => any;
     protected order: number;

+ 1 - 1
dist/middlewares/PoweredByHeaderMiddleware.js.map

@@ -1 +1 @@
-{"version":3,"file":"PoweredByHeaderMiddleware.js","sourceRoot":"","sources":["../../lib/middlewares/PoweredByHeaderMiddleware.ts"],"names":[],"mappings":";;AACA,uCAA0C;AAE1C,MAAM,yBAA0B,SAAQ,iBAAU;IAAlD;;QACW,WAAM,GAAG,CAAC,GAAY,EAAE,GAAa,EAAE,IAAkB,EAAO,EAAE;YAC3E,GAAG,CAAC,SAAS,CAAC,cAAc,EAAE,2BAA2B,CAAC,CAAC;YAC3D,IAAI,EAAE,CAAC;QACR,CAAC,CAAC;QACQ,UAAK,GAAG,CAAC,GAAG,CAAC;QACb,UAAK,GAAG,IAAI,CAAC;IACxB,CAAC;CAAA;AAED,kBAAe,yBAAyB,CAAC"}
+{"version":3,"file":"PoweredByHeaderMiddleware.js","sourceRoot":"","sources":["../../lib/middlewares/PoweredByHeaderMiddleware.ts"],"names":[],"mappings":";;AAAA,uCAA2E;AAE3E,MAAM,yBAA0B,SAAQ,iBAAU;IAAlD;;QACW,WAAM,GAAG,CAAC,GAAY,EAAE,GAAa,EAAE,IAAkB,EAAO,EAAE;YAC3E,GAAG,CAAC,SAAS,CAAC,cAAc,EAAE,2BAA2B,CAAC,CAAC;YAC3D,IAAI,EAAE,CAAC;QACR,CAAC,CAAC;QACQ,UAAK,GAAG,CAAC,GAAG,CAAC;QACb,UAAK,GAAG,IAAI,CAAC;IACxB,CAAC;CAAA;AAED,kBAAe,yBAAyB,CAAC"}

+ 1 - 2
dist/routes/GetIndex.d.ts

@@ -1,5 +1,4 @@
-import { Request, Response } from 'express';
-import { Route, HttpMethod } from '../base/http';
+import { Route, HttpMethod, Request, Response } from '../base/http';
 declare class GetIndex extends Route {
     protected order: number;
     protected method: HttpMethod;

+ 1 - 1
dist/routes/GetIndex.js.map

@@ -1 +1 @@
-{"version":3,"file":"GetIndex.js","sourceRoot":"","sources":["../../lib/routes/GetIndex.ts"],"names":[],"mappings":";;AACA,uCAA8D;AAE9D,MAAM,QAAS,SAAQ,YAAK;IAA5B;;QACW,UAAK,GAAG,CAAC,CAAC;QACV,WAAM,GAAG,iBAAU,CAAC,GAAG,CAAC;QACxB,UAAK,GAAG,GAAG,CAAC;QACZ,WAAM,GAAG,CAAC,GAAY,EAAE,GAAa,EAAO,EAAE;YACvD,GAAG,CAAC,MAAM,CAAC,kBAAW,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,8CAA8C,CAAC,CAAC;QACjF,CAAC,CAAC;IACH,CAAC;CAAA;AAED,kBAAe,QAAQ,CAAC"}
+{"version":3,"file":"GetIndex.js","sourceRoot":"","sources":["../../lib/routes/GetIndex.ts"],"names":[],"mappings":";;AAAA,uCAAiF;AAEjF,MAAM,QAAS,SAAQ,YAAK;IAA5B;;QACW,UAAK,GAAG,CAAC,CAAC;QACV,WAAM,GAAG,iBAAU,CAAC,GAAG,CAAC;QACxB,UAAK,GAAG,GAAG,CAAC;QACZ,WAAM,GAAG,CAAC,GAAY,EAAE,GAAa,EAAO,EAAE;YACvD,GAAG,CAAC,MAAM,CAAC,kBAAW,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,8CAA8C,CAAC,CAAC;QACjF,CAAC,CAAC;IACH,CAAC;CAAA;AAED,kBAAe,QAAQ,CAAC"}

+ 13 - 13
dist/server/Server.js

@@ -46,15 +46,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
 };
 Object.defineProperty(exports, "__esModule", { value: true });
 exports.Server = void 0;
+const path_1 = __importDefault(require("path"));
+const fs_1 = __importDefault(require("fs"));
+const http_1 = __importDefault(require("http"));
 const express_1 = __importDefault(require("express"));
-const http_1 = require("../base/http");
+const http_2 = require("../base/http");
 const exceptions_1 = require("../base/exceptions");
 const exceptions_2 = require("../base/exceptions");
 const logger_1 = require("../base/logger");
 const i18n_1 = require("../base/i18n");
-const path_1 = __importDefault(require("path"));
-const fs_1 = __importDefault(require("fs"));
-const http_2 = __importDefault(require("http"));
 const ws_1 = require("ws");
 const exceptions_3 = require("../base/exceptions");
 const exceptions_4 = require("../base/exceptions");
@@ -65,7 +65,7 @@ class Server {
     constructor(properties) {
         var _a, _b, _c, _d, _e, _f, _g;
         this.instance = (0, express_1.default)();
-        this.httpServer = http_2.default.createServer(this.instance);
+        this.httpServer = http_1.default.createServer(this.instance);
         this.port = properties.port;
         this.host = properties.host || `http://localhost:${this.port}`;
         this.i18n = i18n_1.i18nLoader.getInstance();
@@ -128,9 +128,9 @@ class Server {
             handlers.push(this.httpHandlers[key]);
         handlers.sort((a, b) => a.getOrder() - b.getOrder());
         for (const handler of handlers) {
-            if (handler instanceof http_1.Middleware)
+            if (handler instanceof http_2.Middleware)
                 this.addMiddleware(handler);
-            else if (handler instanceof http_1.Route)
+            else if (handler instanceof http_2.Route)
                 this.addRoute(handler);
         }
     }
@@ -145,9 +145,9 @@ class Server {
         if (route.getRoute() == null)
             throw new exceptions_1.RouteNotSetException();
         switch (route.getMethod()) {
-            case http_1.HttpMethod.GET:
+            case http_2.HttpMethod.GET:
                 return this.get(route);
-            case http_1.HttpMethod.POST:
+            case http_2.HttpMethod.POST:
                 return this.post(route);
             default:
                 throw new exceptions_2.IncorrectMethodException();
@@ -158,11 +158,11 @@ class Server {
             return this;
         for (const routeName in this.httpHandlers) {
             const route = this.httpHandlers[routeName];
-            if (!(route instanceof http_1.Route))
+            if (!(route instanceof http_2.Route))
                 continue;
             if (route.getRoute() == null)
                 throw new exceptions_1.RouteNotSetException();
-            if (![http_1.HttpMethod.GET, http_1.HttpMethod.POST].includes(route.getMethod()))
+            if (![http_2.HttpMethod.GET, http_2.HttpMethod.POST].includes(route.getMethod()))
                 throw new exceptions_2.IncorrectMethodException();
             const docs = route.getDocumentation();
             if (docs.length > 0) {
@@ -238,7 +238,7 @@ class Server {
             for (const file of files) {
                 if (/\.js$/.test(file)) {
                     const { default: RouteClass } = yield Promise.resolve(`${path_1.default.join(dir, file)}`).then(s => __importStar(require(s)));
-                    if (RouteClass.prototype instanceof http_1.Route) {
+                    if (RouteClass.prototype instanceof http_2.Route) {
                         this.httpHandlers[RouteClass.name] = new RouteClass(this);
                     }
                     else
@@ -254,7 +254,7 @@ class Server {
             for (const file of files) {
                 if (/\.js$/.test(file)) {
                     const { default: MiddlewareClass } = yield Promise.resolve(`${path_1.default.join(dir, file)}`).then(s => __importStar(require(s)));
-                    if (MiddlewareClass.prototype instanceof http_1.Middleware) {
+                    if (MiddlewareClass.prototype instanceof http_2.Middleware) {
                         this.httpHandlers[MiddlewareClass.name] = new MiddlewareClass(this);
                     }
                     else

File diff suppressed because it is too large
+ 0 - 0
dist/server/Server.js.map


+ 5 - 0
lib/base/http/NextFunction.ts

@@ -0,0 +1,5 @@
+import { NextFunction as ExpressNextFunction } from 'express';
+
+interface NextFunction extends ExpressNextFunction {};
+
+export { NextFunction };

+ 2 - 1
lib/base/http/Route.ts

@@ -1,6 +1,7 @@
-import { Request, Response } from 'express';
 import { HttpMethod } from './HttpMethod';
 import { HttpHandler } from './HttpHandler';
+import { Request } from './Request';
+import { Response } from './Response';
 
 abstract class Route extends HttpHandler {
 	protected abstract method: HttpMethod;

+ 2 - 1
lib/base/http/index.ts

@@ -4,4 +4,5 @@ export { Middleware } from './Middleware';
 export { Route } from './Route';
 export { StatusCodes } from './StatusCodes';
 export { Response } from './Response';
-export { Request } from './Request';
+export { Request } from './Request';
+export { NextFunction } from './NextFunction';

+ 1 - 2
lib/middlewares/InternalServerErrorHandler.ts

@@ -1,5 +1,4 @@
-import { Middleware, StatusCodes } from '../base/http';
-import { NextFunction, Request, Response } from 'express';
+import { Middleware, StatusCodes, Request, Response, NextFunction } from '../base/http';
 import { $$ } from '../base/i18n';
 
 class InternalServerErrorHandler extends Middleware {

+ 1 - 2
lib/middlewares/LoggerMiddleware.ts

@@ -1,5 +1,4 @@
-import { Middleware } from '../base/http';
-import { NextFunction, Request, Response } from 'express';
+import { Middleware, Request, Response, NextFunction } from '../base/http';
 // import { Logger } from '../base/logger';
 
 class LoggerMiddleware extends Middleware {

+ 1 - 2
lib/middlewares/NotFoundErrorHandler.ts

@@ -1,5 +1,4 @@
-import { Middleware, StatusCodes } from '../base/http';
-import {NextFunction, Request, Response} from 'express';
+import { Middleware, StatusCodes, Request, Response, NextFunction } from '../base/http';
 import { $$ } from '../base/i18n';
 
 class NotFoundErrorHandler extends Middleware {

+ 1 - 2
lib/middlewares/PoweredByHeaderMiddleware.ts

@@ -1,5 +1,4 @@
-import { Request, Response, NextFunction } from 'express';
-import { Middleware } from '../base/http';
+import { Request, Response, Middleware, NextFunction } from '../base/http';
 
 class PoweredByHeaderMiddleware extends Middleware {
 	protected action = (req: Request, res: Response, next: NextFunction): any => {

+ 1 - 2
lib/routes/GetIndex.ts

@@ -1,5 +1,4 @@
-import {Request, Response} from 'express';
-import { Route, HttpMethod, StatusCodes } from '../base/http';
+import { Route, HttpMethod, StatusCodes, Request, Response } from '../base/http';
 
 class GetIndex extends Route {
 	protected order = 0;

+ 3 - 5
lib/server/Server.ts

@@ -1,3 +1,6 @@
+import path from 'path';
+import fs from 'fs';
+import http from 'http';
 import express, { Express } from 'express';
 import { Middleware, Route, HttpMethod, HttpHandler } from '../base/http';
 import { RouteNotSetException } from '../base/exceptions';
@@ -5,16 +8,11 @@ import { IncorrectMethodException } from '../base/exceptions';
 import { Logger, Message, MessageTypes } from '../base/logger';
 import { ServerProperties } from './ServerProperties';
 import { i18nLoader, $$ } from '../base/i18n';
-import path from 'path';
-import fs from 'fs';
-import http from 'http';
 import { Server as WebSocketServer, WebSocket as WS } from 'ws';
 import { InvalidMiddlewareException } from '../base/exceptions';
 import { InvalidRouteException } from '../base/exceptions';
 import { ServerNotInitializedException } from '../base/exceptions';
 import { WebSocketHandler } from '../base/websocket';
-import swaggerJsDoc, { OAS3Options, Options, SecurityRequirement } from 'swagger-jsdoc';
-import swaggerUi from 'swagger-ui-express';
 
 /** @sealed */
 class Server {

Some files were not shown because too many files changed in this diff