1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/backend/server.ts

159 lines
4.3 KiB
TypeScript
Raw Normal View History

2018-03-31 03:30:30 +08:00
import * as _express from 'express';
import * as _bodyParser from 'body-parser';
import * as cookieParser from 'cookie-parser';
import * as _http from 'http';
import {Server as HttpServer} from 'http';
2018-11-30 22:36:42 +08:00
// @ts-ignore
2018-03-31 03:30:30 +08:00
import * as locale from 'locale';
import {PublicRouter} from './routes/PublicRouter';
import {UserRouter} from './routes/UserRouter';
import {GalleryRouter} from './routes/GalleryRouter';
import {AdminRouter} from './routes/AdminRouter';
import {ErrorRouter} from './routes/ErrorRouter';
import {SharingRouter} from './routes/SharingRouter';
import {ObjectManagers} from './model/ObjectManagers';
2018-03-31 03:30:30 +08:00
import {Logger} from './Logger';
import {Config} from '../common/config/private/Config';
import {DatabaseType} from '../common/config/private/IPrivateConfig';
import {LoggerRouter} from './routes/LoggerRouter';
import {ThumbnailGeneratorMWs} from './middlewares/thumbnail/ThumbnailGeneratorMWs';
import {DiskManager} from './model/DiskManger';
import {NotificationRouter} from './routes/NotificationRouter';
2018-11-19 03:26:29 +08:00
import {ConfigDiagnostics} from './model/diagnostics/ConfigDiagnostics';
2018-03-31 03:30:30 +08:00
import {Localizations} from './model/Localizations';
import {CookieNames} from '../common/CookieNames';
2019-02-15 07:25:55 +08:00
import {PersonRouter} from './routes/PersonRouter';
2017-07-24 04:37:29 +08:00
const _session = require('cookie-session');
2016-03-12 19:53:19 +08:00
2018-03-31 03:30:30 +08:00
const LOG_TAG = '[server]';
2017-07-19 16:21:52 +08:00
2016-03-12 21:57:22 +08:00
export class Server {
2016-03-12 19:53:19 +08:00
2018-05-25 09:29:05 +08:00
private app: _express.Express;
private server: HttpServer;
constructor() {
if (!(process.env.NODE_ENV === 'production')) {
2018-11-30 22:36:42 +08:00
Logger.debug(LOG_TAG, 'Running in DEBUG mode, set env variable NODE_ENV=production to disable ');
}
this.init();
}
async init() {
2018-03-31 03:30:30 +08:00
Logger.info(LOG_TAG, 'running diagnostics...');
2017-07-14 05:39:09 +08:00
await ConfigDiagnostics.runDiagnostics();
2018-03-31 03:30:30 +08:00
Logger.info(LOG_TAG, 'using config:');
Logger.info(LOG_TAG, JSON.stringify(Config, null, '\t'));
this.app = _express();
2017-06-21 17:32:56 +08:00
LoggerRouter.route(this.app);
2016-03-12 19:53:19 +08:00
this.app.set('view engine', 'ejs');
2017-06-04 21:25:08 +08:00
2016-03-19 04:36:58 +08:00
/**
* Session above all
*/
function s4() {
return Math.floor((1 + Math.random()) * 0x10000)
.toString(16)
.substring(1);
}
this.app.use(_session({
name: CookieNames.session,
2018-03-31 03:30:30 +08:00
keys: ['key1' + s4() + s4() + s4() + s4(), 'key2' + s4() + s4() + s4() + s4(), 'key3' + s4() + s4() + s4() + s4()]
}));
2017-06-04 21:25:08 +08:00
2017-10-20 00:08:07 +08:00
/**
* Parse parameters in POST
*/
// for parsing application/json
this.app.use(_bodyParser.json());
this.app.use(cookieParser());
DiskManager.init();
ThumbnailGeneratorMWs.init();
Localizations.init();
2018-03-31 03:30:30 +08:00
this.app.use(locale(Config.Client.languages, 'en'));
if (Config.Server.database.type !== DatabaseType.memory) {
await ObjectManagers.InitSQLManagers();
2017-07-14 05:39:09 +08:00
} else {
await ObjectManagers.InitMemoryManagers();
2017-07-14 05:39:09 +08:00
}
PublicRouter.route(this.app);
UserRouter.route(this.app);
GalleryRouter.route(this.app);
2019-02-15 07:25:55 +08:00
PersonRouter.route(this.app);
SharingRouter.route(this.app);
AdminRouter.route(this.app);
2017-07-09 20:23:50 +08:00
NotificationRouter.route(this.app);
ErrorRouter.route(this.app);
// Get PORT from environment and store in Express.
this.app.set('port', Config.Server.port);
// Create HTTP server.
this.server = _http.createServer(this.app);
// Listen on provided PORT, on all network interfaces.
2018-12-28 05:14:32 +08:00
this.server.listen(Config.Server.port, Config.Server.host);
this.server.on('error', this.onError);
this.server.on('listening', this.onListening);
}
2019-02-15 07:25:55 +08:00
/**
* Event listener for HTTP server "error" event.
*/
private onError = (error: any) => {
if (error.syscall !== 'listen') {
Logger.error(LOG_TAG, 'Server error', error);
throw error;
}
const bind = Config.Server.host + ':' + Config.Server.port;
// handle specific listen error with friendly messages
switch (error.code) {
case 'EACCES':
Logger.error(LOG_TAG, bind + ' requires elevated privileges');
process.exit(1);
break;
case 'EADDRINUSE':
Logger.error(LOG_TAG, bind + ' is already in use');
process.exit(1);
break;
default:
throw error;
}
};
/**
* Event listener for HTTP server "listening" event.
*/
private onListening = () => {
const addr = this.server.address();
const bind = typeof addr === 'string'
? 'pipe ' + addr
: 'port ' + addr.port;
Logger.info(LOG_TAG, 'Listening on ' + bind);
};
2016-03-12 19:53:19 +08:00
}