2020-04-04 04:08:12 +02:00
|
|
|
// lib/app.ts
|
2020-04-05 14:31:49 +02:00
|
|
|
import {IoSocketController} from "./Controller/IoSocketController"; //TODO fix import by "_Controller/..."
|
|
|
|
import {AuthenticateController} from "./Controller/AuthenticateController"; //TODO fix import by "_Controller/..."
|
2020-04-04 04:08:12 +02:00
|
|
|
import express from "express";
|
2020-04-05 20:57:14 +02:00
|
|
|
import {Application, Request, Response} from 'express';
|
2020-04-04 04:08:12 +02:00
|
|
|
import bodyParser = require('body-parser');
|
|
|
|
import * as http from "http";
|
2020-05-09 17:50:47 +02:00
|
|
|
import {MapController} from "./Controller/MapController";
|
2020-04-04 04:08:12 +02:00
|
|
|
|
|
|
|
class App {
|
|
|
|
public app: Application;
|
|
|
|
public server: http.Server;
|
|
|
|
public ioSocketController: IoSocketController;
|
2020-04-04 17:22:02 +02:00
|
|
|
public authenticateController: AuthenticateController;
|
2020-05-09 17:50:47 +02:00
|
|
|
public mapController: MapController;
|
2020-04-04 04:08:12 +02:00
|
|
|
|
|
|
|
constructor() {
|
|
|
|
this.app = express();
|
2020-04-04 17:22:02 +02:00
|
|
|
|
|
|
|
//config server http
|
2020-04-04 04:08:12 +02:00
|
|
|
this.server = http.createServer(this.app);
|
2020-04-04 17:22:02 +02:00
|
|
|
|
2020-05-10 17:31:27 +02:00
|
|
|
this.config();
|
|
|
|
this.crossOrigin();
|
|
|
|
|
|
|
|
//TODO add middleware with access token to secure api
|
|
|
|
|
2020-05-09 17:50:47 +02:00
|
|
|
//create socket controllers
|
2020-04-04 04:08:12 +02:00
|
|
|
this.ioSocketController = new IoSocketController(this.server);
|
2020-04-04 17:22:02 +02:00
|
|
|
this.authenticateController = new AuthenticateController(this.app);
|
2020-05-09 17:50:47 +02:00
|
|
|
this.mapController = new MapController(this.app);
|
2020-04-04 04:08:12 +02:00
|
|
|
}
|
|
|
|
|
2020-04-04 17:22:02 +02:00
|
|
|
// TODO add session user
|
2020-04-04 04:08:12 +02:00
|
|
|
private config(): void {
|
|
|
|
this.app.use(bodyParser.json());
|
|
|
|
this.app.use(bodyParser.urlencoded({extended: false}));
|
2020-05-10 17:31:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private crossOrigin(){
|
2020-04-29 01:40:32 +02:00
|
|
|
this.app.use((req: Request, res: Response, next) => {
|
2020-05-10 17:31:27 +02:00
|
|
|
res.setHeader("Access-Control-Allow-Origin", "*"); // update to match the domain you will make the request from
|
|
|
|
// Request methods you wish to allow
|
|
|
|
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');
|
|
|
|
// Request headers you wish to allow
|
|
|
|
res.setHeader("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
|
2020-04-05 20:57:14 +02:00
|
|
|
next();
|
|
|
|
});
|
2020-04-04 04:08:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default new App().server;
|