iceshrimp-legacy/src/server/index.ts

95 lines
1.8 KiB
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
/**
* Core Server
*/
import * as fs from 'fs';
import * as http from 'http';
import * as https from 'https';
import * as express from 'express';
2017-01-19 08:00:14 +01:00
import * as morgan from 'morgan';
2017-04-05 02:58:29 +02:00
import Accesses from 'accesses';
2016-12-28 23:49:51 +01:00
import activityPub from './activitypub';
2018-04-01 07:12:07 +02:00
import webFinger from './webfinger';
2017-11-13 11:58:29 +01:00
import log from './log-request';
2018-04-02 06:15:53 +02:00
import config from '../config';
2017-01-17 00:06:39 +01:00
2016-12-28 23:49:51 +01:00
/**
* Init app
*/
const app = express();
app.disable('x-powered-by');
2017-02-14 01:01:25 +01:00
app.set('trust proxy', 'loopback');
2016-12-28 23:49:51 +01:00
2017-01-19 08:00:14 +01:00
// Log
2017-04-05 02:58:29 +02:00
if (config.accesses && config.accesses.enable) {
const accesses = new Accesses({
appName: 'Misskey',
2017-05-24 09:29:00 +02:00
port: config.accesses.port
2017-04-05 02:58:29 +02:00
});
app.use(accesses.express);
}
app.use(morgan(process.env.NODE_ENV == 'production' ? 'combined' : 'dev', {
// create a write stream (in append mode)
stream: config.accesslog ? fs.createWriteStream(config.accesslog) : null
}));
2017-01-19 08:00:14 +01:00
2017-11-13 11:58:29 +01:00
app.use((req, res, next) => {
log(req);
next();
});
2017-11-13 07:04:20 +01:00
// Drop request when without 'Host' header
app.use((req, res, next) => {
2017-01-18 08:31:43 +01:00
if (!req.headers['host']) {
res.sendStatus(400);
} else {
next();
}
});
2018-04-08 10:23:06 +02:00
// 互換性のため
app.post('/meta', (req, res) => {
res.header('Access-Control-Allow-Origin', '*');
res.json({
version: 'nighthike'
});
});
2016-12-28 23:49:51 +01:00
/**
* Register modules
*/
2018-03-29 13:34:39 +02:00
app.use('/api', require('./api'));
app.use('/files', require('./file'));
app.use(activityPub);
2018-04-01 07:12:07 +02:00
app.use(webFinger);
2018-03-29 13:34:39 +02:00
app.use(require('./web'));
2016-12-28 23:49:51 +01:00
2018-03-28 18:20:40 +02:00
function createServer() {
2017-11-25 00:11:58 +01:00
if (config.https) {
const certs = {};
Object.keys(config.https).forEach(k => {
certs[k] = fs.readFileSync(config.https[k]);
});
return https.createServer(certs, app);
} else {
return http.createServer(app);
}
2018-03-28 18:20:40 +02:00
}
2016-12-28 23:49:51 +01:00
2018-03-28 18:20:40 +02:00
export default () => new Promise(resolve => {
const server = createServer();
2016-12-28 23:49:51 +01:00
2018-03-28 18:20:40 +02:00
/**
* Steaming
*/
require('./api/streaming')(server);
2017-01-16 23:51:27 +01:00
2018-03-28 18:20:40 +02:00
/**
* Server listen
*/
server.listen(config.port, resolve);
});