-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.js
executable file
·62 lines (54 loc) · 1.52 KB
/
app.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
import express from 'express';
import logger from 'morgan';
import http from 'http';
import cookieParser from 'cookie-parser';
import bodyParser from 'body-parser';
import * as authMiddle from './modules/auth/middleware';
import routes from './modules/routes';
import wsController from './modules/websocket';
import cors from 'cors';
import socketIO from 'socket.io';
import swagger from 'express-swagger-generator';
import configs from './config';
import path from 'path';
const app = express();
const server = http.createServer(app);
const io = socketIO.listen(server);
//
if (configs.WS === 'true') {
app.use(function (req, res, next) {
req.io = io;
next();
});
}
app.use(express.static(path.join(__dirname, 'public')));
app.set('trust proxy', 1);
app.use(authMiddle.throttleLimit());
app.use(cors());
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(authMiddle.init());
app.use(authMiddle.mapReqToRes);
app.get('/', function (req, res) {
res.sendFile(__dirname + '/public/index.html');
});
// Document API
swagger(app)(configs.generator);
// Group Event On Socket
if (configs.WS === 'true') {
console.log('Websocket Successfully!');
wsController(io);
}
// Group Routes API
app.use('/api', routes);
// catch 404 and forward to error handler
app.use((req, res, next) => {
const err = new Error('Not Found');
err.status = 404;
res.send({
message: err.message,
error: err.status,
});
});
export { app, server };