Files
server/DocService/sources/server.js
2017-10-11 12:50:02 +03:00

316 lines
11 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* (c) Copyright Ascensio System SIA 2010-2017
*
* This program is a free software product. You can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License (AGPL)
* version 3 as published by the Free Software Foundation. In accordance with
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non-infringement
* of any third-party rights.
*
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
*
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
* EU, LV-1021.
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7(b) of the License you must retain the original Product
* logo when distributing the program. Pursuant to Section 7(e) we decline to
* grant you any rights under trademark law for use of our trademarks.
*
* All the Product's GUI elements, including illustrations and icon sets, as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
*
*/
'use strict';
const cluster = require('cluster');
const configCommon = require('config');
const config = configCommon.get('services.CoAuthoring');
//process.env.NODE_ENV = config.get('server.mode');
const logger = require('./../../Common/sources/logger');
const co = require('co');
const license = require('./../../Common/sources/license');
if (cluster.isMaster) {
const fs = require('fs');
//const numCPUs = require('os').cpus().length;
//const cfgWorkerPerCpu = config.get('server.workerpercpu');
let licenseInfo, workersCount = 0, updateTime;
const readLicense = function*() {
licenseInfo = yield* license.readLicense();
workersCount = Math.min(1, licenseInfo.count/*, Math.ceil(numCPUs * cfgWorkerPerCpu)*/);
};
const updateLicenseWorker = (worker) => {
worker.send({type: 1, data: licenseInfo});
};
const updateWorkers = () => {
const arrKeyWorkers = Object.keys(cluster.workers);
if (arrKeyWorkers.length < workersCount) {
for (let i = arrKeyWorkers.length; i < workersCount; ++i) {
const newWorker = cluster.fork();
logger.warn('worker %s started.', newWorker.process.pid);
}
} else {
for (let i = workersCount; i < arrKeyWorkers.length; ++i) {
const killWorker = cluster.workers[arrKeyWorkers[i]];
if (killWorker) {
killWorker.kill();
}
}
}
};
const updatePlugins = (eventType, filename) => {
console.log('update Folder: %s ; %s', eventType, filename);
if (updateTime && 1000 >= (new Date() - updateTime)) {
return;
}
console.log('update Folder true: %s ; %s', eventType, filename);
updateTime = new Date();
for (let i in cluster.workers) {
cluster.workers[i].send({type: 2});
}
};
const updateLicense = () => {
return co(function*() {
try {
yield* readLicense();
logger.warn('update cluster with %s workers', workersCount);
for (let i in cluster.workers) {
updateLicenseWorker(cluster.workers[i]);
}
updateWorkers();
} catch (err) {
logger.error('updateLicense error:\r\n%s', err.stack);
}
});
};
cluster.on('fork', (worker) => {
updateLicenseWorker(worker);
});
cluster.on('exit', (worker, code, signal) => {
logger.warn('worker %s died (code = %s; signal = %s).', worker.process.pid, code, signal);
updateWorkers();
});
updateLicense();
try {
fs.watch(config.get('plugins.path'), updatePlugins);
} catch (e) {
logger.warn('Plugins watch exception (https://nodejs.org/docs/latest/api/fs.html#fs_availability).');
}
fs.watchFile(configCommon.get('license').get('license_file'), updateLicense);
setInterval(updateLicense, 86400000);
} else {
logger.warn('Express server starting...');
const express = require('express');
const http = require('http');
const urlModule = require('url');
const path = require('path');
const bodyParser = require("body-parser");
const mime = require('mime');
const docsCoServer = require('./DocsCoServer');
const canvasService = require('./canvasservice');
const converterService = require('./converterservice');
const fontService = require('./fontservice');
const fileUploaderService = require('./fileuploaderservice');
const constants = require('./../../Common/sources/constants');
const utils = require('./../../Common/sources/utils');
const commonDefines = require('./../../Common/sources/commondefines');
const configStorage = configCommon.get('storage');
const app = express();
const server = http.createServer(app);
let userPlugins = null, updatePlugins = true;
if (config.has('server.static_content')) {
const staticContent = config.get('server.static_content');
for (let i in staticContent) {
app.use(i, express.static(staticContent[i]['path'], staticContent[i]['options']));
}
}
if (configStorage.has('fs.folderPath')) {
const cfgBucketName = configStorage.get('bucketName');
const cfgStorageFolderName = configStorage.get('storageFolderName');
app.use('/' + cfgBucketName + '/' + cfgStorageFolderName, (req, res, next) => {
const index = req.url.lastIndexOf('/');
if ('GET' === req.method && -1 != index) {
const contentDisposition = req.query['disposition'] || 'attachment';
let sendFileOptions = {
root: configStorage.get('fs.folderPath'), dotfiles: 'deny', headers: {
'Content-Disposition': contentDisposition
}
};
const urlParsed = urlModule.parse(req.url);
if (urlParsed && urlParsed.pathname) {
const filename = decodeURIComponent(path.basename(urlParsed.pathname));
sendFileOptions.headers['Content-Type'] = mime.lookup(filename);
}
const realUrl = req.url.substring(0, index);
res.sendFile(realUrl, sendFileOptions, (err) => {
if (err) {
logger.error(err);
res.status(400).end();
}
});
} else {
res.sendStatus(404)
}
});
}
// Если захочется использовать 'development' и 'production',
// то с помощью app.settings.env (https://github.com/strongloop/express/issues/936)
// Если нужна обработка ошибок, то теперь она такая https://github.com/expressjs/errorhandler
docsCoServer.install(server, () => {
server.listen(config.get('server.port'), () => {
logger.warn("Express server listening on port %d in %s mode", config.get('server.port'), app.settings.env);
});
app.get('/index.html', (req, res) => {
res.send('Server is functioning normally. Version: ' + commonDefines.buildVersion + '. Build: ' +
commonDefines.buildNumber);
});
const rawFileParser = bodyParser.raw(
{inflate: true, limit: config.get('server.limits_tempfile_upload'), type: '*/*'});
app.get('/coauthoring/CommandService.ashx', utils.checkClientIp, rawFileParser, docsCoServer.commandFromServer);
app.post('/coauthoring/CommandService.ashx', utils.checkClientIp, rawFileParser,
docsCoServer.commandFromServer);
if (config.has('server.fonts_route')) {
const fontsRoute = config.get('server.fonts_route');
app.get('/' + fontsRoute + 'native/:fontname', fontService.getFont);
app.get('/' + fontsRoute + 'js/:fontname', fontService.getFont);
app.get('/' + fontsRoute + 'odttf/:fontname', fontService.getFont);
}
app.get('/ConvertService.ashx', utils.checkClientIp, rawFileParser, converterService.convert);
app.post('/ConvertService.ashx', utils.checkClientIp, rawFileParser, converterService.convert);
app.get('/FileUploader.ashx', utils.checkClientIp, rawFileParser, fileUploaderService.uploadTempFile);
app.post('/FileUploader.ashx', utils.checkClientIp, rawFileParser, fileUploaderService.uploadTempFile);
const docIdRegExp = new RegExp("^[" + constants.DOC_ID_PATTERN + "]*$", 'i');
app.param('docid', (req, res, next, val) => {
if (docIdRegExp.test(val)) {
next();
} else {
res.sendStatus(403);
}
});
app.param('index', (req, res, next, val) => {
if (!isNaN(parseInt(val))) {
next();
} else {
res.sendStatus(403);
}
});
app.post('/uploadold/:docid/:userid/:index/:jwt?', fileUploaderService.uploadImageFileOld);
app.post('/upload/:docid/:userid/:index/:jwt?', rawFileParser, fileUploaderService.uploadImageFile);
app.post('/downloadas/:docid', rawFileParser, canvasService.downloadAs);
app.get('/healthcheck', utils.checkClientIp, docsCoServer.healthCheck);
app.post('/docbuilder', utils.checkClientIp, rawFileParser, (req, res) => {
if (constants.PACKAGE_TYPE_I !== license.packageType) {
logger.error('In this installation there is no docbuilder');
res.sendStatus(403);
return;
}
const licenseInfo = docsCoServer.getLicenseInfo();
if (licenseInfo.type !== constants.LICENSE_RESULT.Success) {
logger.error('License expired');
res.sendStatus(403);
return;
}
converterService.builder(req, res);
});
const sendUserPlugins = (res, data) => {
res.setHeader('Content-Type', 'application/json');
res.send(JSON.stringify(data));
};
app.get('/plugins.json', (req, res) => {
if (userPlugins && !updatePlugins) {
sendUserPlugins(res, userPlugins);
return;
}
if (!config.has('server.static_content') || !config.has('plugins.uri')) {
res.sendStatus(404);
return;
}
let staticContent = config.get('server.static_content');
let pluginsUri = config.get('plugins.uri');
let pluginsPath = undefined;
let pluginsAutostart = config.get('plugins.autostart');
if (staticContent[pluginsUri]) {
pluginsPath = staticContent[pluginsUri].path;
}
let baseUrl = '../../../..';
utils.listFolders(pluginsPath, true).then((values) => {
return co(function*() {
const configFile = 'config.json';
let stats = null;
let result = [];
for (let i = 0; i < values.length; ++i) {
try {
stats = yield utils.fsStat(path.join(values[i], configFile));
} catch (err) {
stats = null;
}
if (stats && stats.isFile) {
result.push( baseUrl + pluginsUri + '/' + path.basename(values[i]) + '/' + configFile);
}
}
userPlugins = {'url': '', 'pluginsData': result, 'autostart': pluginsAutostart};
sendUserPlugins(res, userPlugins);
});
});
});
});
process.on('message', (msg) => {
if (!docsCoServer) {
return;
}
switch (msg.type) {
case 1:
docsCoServer.setLicenseInfo(msg.data);
break;
case 2:
updatePlugins = true;
break;
}
});
}
process.on('uncaughtException', (err) => {
logger.error((new Date).toUTCString() + ' uncaughtException:', err.message);
logger.error(err.stack);
logger.shutdown(() => {
process.exit(1);
});
});