2016-05-05 02:29:43 +08:00
|
|
|
import { logger } from '/imports/startup/server/logger';
|
2016-05-05 04:25:34 +08:00
|
|
|
import '/server/server';
|
|
|
|
import { RedisPubSub } from '/imports/startup/server/RedisPubSub';
|
2016-05-05 02:29:43 +08:00
|
|
|
import { EventQueue } from '/imports/startup/server/EventQueue';
|
2016-06-02 01:18:13 +08:00
|
|
|
import { clearCollections } from '/imports/api/common/server/helpers';
|
2016-05-05 02:29:43 +08:00
|
|
|
|
2016-05-05 05:49:01 +08:00
|
|
|
Meteor.startup(function () {
|
2016-08-17 23:48:03 +08:00
|
|
|
redisPubSub = new RedisPubSub();
|
|
|
|
|
2016-05-05 04:25:34 +08:00
|
|
|
clearCollections();
|
2016-08-17 23:48:03 +08:00
|
|
|
const APP_CONFIG = Meteor.settings.public.app;
|
|
|
|
|
2016-07-28 00:36:33 +08:00
|
|
|
let determineConnectionType = function() {
|
|
|
|
let baseConnection = 'HTTP';
|
2016-08-17 23:48:03 +08:00
|
|
|
if(APP_CONFIG.httpsConnection){
|
2016-07-28 00:36:33 +08:00
|
|
|
baseConnection += ('S');
|
|
|
|
}
|
|
|
|
return baseConnection;
|
|
|
|
};
|
|
|
|
logger.info(`server start. Connection type:${determineConnectionType()}`);
|
2016-05-05 04:25:34 +08:00
|
|
|
});
|
2016-05-05 01:00:57 +08:00
|
|
|
|
2016-06-14 01:56:41 +08:00
|
|
|
WebApp.connectHandlers.use('/check', (req, res, next) => {
|
|
|
|
let payload = { html5clientStatus: 'running' };
|
|
|
|
|
|
|
|
res.setHeader('Content-Type', 'application/json');
|
|
|
|
res.writeHead(200);
|
|
|
|
res.end(JSON.stringify(payload));
|
|
|
|
});
|
|
|
|
|
2016-05-05 01:00:57 +08:00
|
|
|
export const myQueue = new EventQueue();
|
|
|
|
|
|
|
|
export const eventEmitter = new (Npm.require('events').EventEmitter);
|
|
|
|
|
2016-08-17 23:48:03 +08:00
|
|
|
export let redisPubSub = {};
|