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

134 lines
3.1 KiB
TypeScript
Raw Normal View History

2016-03-14 18:07:08 +08:00
///<reference path="../typings/main.d.ts"/>
2016-03-12 19:53:19 +08:00
import * as _express from 'express';
2016-03-19 04:36:58 +08:00
import * as _session from 'express-session';
2016-03-12 19:53:19 +08:00
import * as _debug from 'debug';
import * as _http from 'http';
2016-03-19 04:36:58 +08:00
import {PublicRouter} from "./routes/PublicRouter";
import {UserRouter} from "./routes/UserRouter";
import {GalleryRouter} from "./routes/GalleryRouter";
import {AdminRouter} from "./routes/AdminRouter";
2016-03-12 19:53:19 +08:00
2016-03-12 21:57:22 +08:00
export class Server {
2016-03-12 19:53:19 +08:00
2016-03-12 21:57:22 +08:00
private debug:any;
private app:any;
private server:any;
private port:number;
2016-03-12 19:53:19 +08:00
2016-03-12 21:57:22 +08:00
constructor(){
2016-03-12 19:53:19 +08:00
2016-03-12 21:57:22 +08:00
this.debug = _debug("PiGallery2:server");
this.app = _express();
2016-03-12 19:53:19 +08:00
2016-03-12 21:57:22 +08:00
if(process.env.DEBUG) {
var _morgan = require('morgan');
this.app.use(_morgan('dev'));
}
2016-03-12 19:53:19 +08:00
2016-03-19 04:36:58 +08:00
/**
* Session above all
*/
this.app.use(_session({
2016-03-12 19:53:19 +08:00
2016-03-19 04:36:58 +08:00
secret: 'keyboard cat',
cookie: {
maxAge: 60000
},
resave: true,
saveUninitialized: false
}));
new PublicRouter(this.app);
new UserRouter(this.app);
new GalleryRouter(this.app);
new AdminRouter(this.app);
2016-03-13 01:11:19 +08:00
2016-03-12 19:53:19 +08:00
2016-03-12 21:57:22 +08:00
// Get port from environment and store in Express.
this.port = Server.normalizePort(process.env.PORT || '80');
this.app.set('port', this.port);
2016-03-12 19:53:19 +08:00
2016-03-12 21:57:22 +08:00
// Create HTTP server.
this.server = _http.createServer(this.app);
2016-03-12 19:53:19 +08:00
2016-03-12 21:57:22 +08:00
//Listen on provided port, on all network interfaces.
this.server.listen(this.port);
this.server.on('error', this.onError);
this.server.on('listening', this.onListening);
2016-03-12 19:53:19 +08:00
}
2016-03-12 21:57:22 +08:00
/**
* Normalize a port into a number, string, or false.
*/
private static normalizePort(val) {
var port = parseInt(val, 10);
2016-03-12 19:53:19 +08:00
2016-03-12 21:57:22 +08:00
if (isNaN(port)) {
// named pipe
return val;
}
2016-03-12 19:53:19 +08:00
2016-03-12 21:57:22 +08:00
if (port >= 0) {
// port number
return port;
}
return false;
2016-03-12 19:53:19 +08:00
}
2016-03-12 21:57:22 +08:00
/**
* Event listener for HTTP server "error" event.
*/
private onError = (error) => {
if (error.syscall !== 'listen') {
2016-03-12 19:53:19 +08:00
throw error;
2016-03-12 21:57:22 +08:00
}
var bind = typeof this.port === 'string'
? 'Pipe ' + this.port
: 'Port ' + this.port;
// handle specific listen errors with friendly messages
switch (error.code) {
case 'EACCES':
console.error(bind + ' requires elevated privileges');
process.exit(1);
break;
case 'EADDRINUSE':
console.error(bind + ' is already in use');
process.exit(1);
break;
default:
throw error;
}
};
/**
* Event listener for HTTP server "listening" event.
*/
private onListening = () => {
var addr = this.server.address();
var bind = typeof addr === 'string'
? 'pipe ' + addr
: 'port ' + addr.port;
this.debug('Listening on ' + bind);
};
2016-03-12 19:53:19 +08:00
}
2016-03-12 21:57:22 +08:00
if(process.env.DEBUG) {
console.log("Running in DEBUG mode");
2016-03-12 19:53:19 +08:00
}
2016-03-12 21:57:22 +08:00
new Server();