Use onlyoffice spreadsheets without ooserver

pull/1/head
yflory 6 years ago
parent b2b23446e8
commit 1e672c4a6b

@ -258,7 +258,7 @@ app.use(function (req, res, next) {
var httpServer = httpsOpts ? Https.createServer(httpsOpts, app) : Http.createServer(app); var httpServer = httpsOpts ? Https.createServer(httpsOpts, app) : Http.createServer(app);
/* Install sockjs websocket server */ /* Install sockjs websocket server */
OOServer.install(httpServer, config.httpPort, () => { //OOServer.install(httpServer, config.httpPort, () => {
httpServer.listen(config.httpPort,config.httpAddress,function(){ httpServer.listen(config.httpPort,config.httpAddress,function(){
var host = config.httpAddress; var host = config.httpAddress;
var hostName = !host.indexOf(':') ? '[' + host + ']' : host; var hostName = !host.indexOf(':') ? '[' + host + ']' : host;
@ -268,11 +268,11 @@ OOServer.install(httpServer, config.httpPort, () => {
console.log('\n[%s] server available http://%s%s', new Date().toISOString(), hostName, ps); console.log('\n[%s] server available http://%s%s', new Date().toISOString(), hostName, ps);
}); });
}); //});
if (config.httpSafePort) { if (config.httpSafePort) {
var safeHttpServer = Http.createServer(app).listen(config.httpSafePort, config.httpAddress); var safeHttpServer = Http.createServer(app).listen(config.httpSafePort, config.httpAddress);
OOServer.install(safeHttpServer, config.httpSafePort, () => { //OOServer.install(safeHttpServer, config.httpSafePort, () => {
}); //});
} }
var wsConfig = { server: httpServer }; var wsConfig = { server: httpServer };

@ -3174,6 +3174,7 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
DocsCoApi.prototype._send = function(data) { DocsCoApi.prototype._send = function(data) {
if (data !== null && typeof data === "object") { if (data !== null && typeof data === "object") {
if (this._state > 0) { if (this._state > 0) {
console.log(data);
this.sockjs.send(JSON.stringify(data)); this.sockjs.send(JSON.stringify(data));
} else { } else {
this._msgBuffer.push(JSON.stringify(data)); this._msgBuffer.push(JSON.stringify(data));
@ -3184,6 +3185,7 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
DocsCoApi.prototype._sendRaw = function(data) { DocsCoApi.prototype._sendRaw = function(data) {
if (data !== null && typeof data === "string") { if (data !== null && typeof data === "string") {
if (this._state > 0) { if (this._state > 0) {
console.log(data);
this.sockjs.send(data); this.sockjs.send(data);
} else { } else {
this._msgBuffer.push(data); this._msgBuffer.push(data);
@ -3755,6 +3757,7 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
var t = this; var t = this;
var sockjs; var sockjs;
/*
if (window['IS_NATIVE_EDITOR']) { if (window['IS_NATIVE_EDITOR']) {
sockjs = this.sockjs = window['SockJS']; sockjs = this.sockjs = window['SockJS'];
sockjs.open(); sockjs.open();
@ -3763,21 +3766,27 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
//ограничиваем transports WebSocket и XHR / JSONP polling, как и engine.io https://github.com/socketio/engine.io //ограничиваем transports WebSocket и XHR / JSONP polling, как и engine.io https://github.com/socketio/engine.io
//при переборе streaming transports у клиента с wirewall происходило зацикливание(не повторялось в версии sock.js 0.3.4) //при переборе streaming transports у клиента с wirewall происходило зацикливание(не повторялось в версии sock.js 0.3.4)
sockjs = this.sockjs = new (this._getSockJs())(this.sockjs_url, null, {transports: ['websocket', 'xdr-polling', 'xhr-polling', 'iframe-xhr-polling', 'jsonp-polling']}); sockjs = this.sockjs = new (this._getSockJs())(this.sockjs_url, null, {transports: ['websocket', 'xdr-polling', 'xhr-polling', 'iframe-xhr-polling', 'jsonp-polling']});
} }*/
sockjs = this.sockjs = {};
//t._state = true;
sockjs.onopen = function() { sockjs.onopen = function() {
/*
if (t.reconnectTimeout) { if (t.reconnectTimeout) {
clearTimeout(t.reconnectTimeout); clearTimeout(t.reconnectTimeout);
t.reconnectTimeout = null; t.reconnectTimeout = null;
t.attemptCount = 0; t.attemptCount = 0;
} }
*/
t._state = ConnectionState.WaitAuth; t._state = ConnectionState.WaitAuth;
t.onFirstConnect(); t.onFirstConnect();
}; };
sockjs.onopen();
sockjs.onmessage = function(e) { sockjs.onmessage = function(e) {
//TODO: add checks and error handling //TODO: add checks and error handling
//Get data type //Get data type
console.log(e.data);
var dataObject = JSON.parse(e.data); var dataObject = JSON.parse(e.data);
switch (dataObject['type']) { switch (dataObject['type']) {
case 'auth' : case 'auth' :
@ -3847,6 +3856,68 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
break; break;
} }
}; };
sockjs.close = function () {
console.error('Close realtime');
};
var send = function (data) {
setTimeout(function () {
console.log(data);
sockjs.onmessage({
data: JSON.stringify(data)
});
});
};
sockjs.send = function (data) {
console.log(data);
try {
var obj = JSON.parse(data);
} catch (e) {
console.error(e);
return;
}
var msg, msg2;
switch (obj.type) {
case 'auth':
msg = {
"type":"auth",
"result":1,
"sessionId":"08e77705-dc5c-477d-b73a-b1a7cbca1e9b",
"sessionTimeConnect":+new Date(),
"participants":[]
};
msg2 = {
"type":"documentOpen",
"data":{"type":"open","status":"ok","data":{"Editor.bin":obj.openCmd.url}}
};
send(msg);
send(msg2);
break;
case 'getMessages':
msg = {};
break;
}
};
var license = {
type: 'license',
license: {
type: 3,
light: false,
trial: false,
rights: 1,
buildVersion: "4.3.3",
buildNumber: 4,
branding: false
}
};
send(license);
/*
sockjs.onclose = function(evt) { sockjs.onclose = function(evt) {
if (ConnectionState.SaveChanges === t._state) { if (ConnectionState.SaveChanges === t._state) {
// Мы сохраняли изменения и разорвалось соединение // Мы сохраняли изменения и разорвалось соединение
@ -3871,6 +3942,7 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
t._tryReconnect(); t._tryReconnect();
} }
}; };
*/
return sockjs; return sockjs;
}; };
@ -3918,6 +3990,7 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
window['AscCommon'] = window['AscCommon'] || {}; window['AscCommon'] = window['AscCommon'] || {};
window['AscCommon'].CDocsCoApi = CDocsCoApi; window['AscCommon'].CDocsCoApi = CDocsCoApi;
})(window); })(window);
/* /*
* (c) Copyright Ascensio System SIA 2010-2017 * (c) Copyright Ascensio System SIA 2010-2017
* *
@ -9205,7 +9278,6 @@ function saveWithParts(fSendCommand, fCallback, fCallbackRequest, oAdditionalDat
} }
function loadFileContent(url, callback) { function loadFileContent(url, callback) {
console.error(url);
asc_ajax({ asc_ajax({
url: url, url: url,
dataType: "text", dataType: "text",
@ -9231,7 +9303,6 @@ function getImageFromChanges (name) {
function openFileCommand(binUrl, changesUrl, Signature, callback) { function openFileCommand(binUrl, changesUrl, Signature, callback) {
var bError = false, oResult = new OpenFileResult(), bEndLoadFile = false, bEndLoadChanges = false; var bError = false, oResult = new OpenFileResult(), bEndLoadFile = false, bEndLoadChanges = false;
var onEndOpen = function() { var onEndOpen = function() {
console.error("this is where we should decrypt");
if (bEndLoadFile && bEndLoadChanges) { if (bEndLoadFile && bEndLoadChanges) {
if (callback) { if (callback) {
callback(bError, oResult); callback(bError, oResult);
@ -9259,7 +9330,6 @@ function openFileCommand(binUrl, changesUrl, Signature, callback) {
} }
bEndLoadFile = true; bEndLoadFile = true;
onEndOpen(); onEndOpen();
console.error(oResult); // XXX
}, },
error: function() { error: function() {
bEndLoadFile = true; bEndLoadFile = true;
@ -9270,7 +9340,6 @@ function openFileCommand(binUrl, changesUrl, Signature, callback) {
} }
if (null != changesUrl) { if (null != changesUrl) {
console.error("null changesUrl"); // XXX
getJSZipUtils().getBinaryContent(changesUrl, function(err, data) { getJSZipUtils().getBinaryContent(changesUrl, function(err, data) {
bEndLoadChanges = true; bEndLoadChanges = true;
if (err) { if (err) {
@ -9284,8 +9353,7 @@ function openFileCommand(binUrl, changesUrl, Signature, callback) {
for (var i in oZipChanges.files) { for (var i in oZipChanges.files) {
if (i.endsWith('.json')) { if (i.endsWith('.json')) {
// Заглушка на имя файла (стоило его начинать с цифры) // Заглушка на имя файла (стоило его начинать с цифры)
oResult.changes[parseInt(i.slice('changes'.length))] = oResult.changes[parseInt(i.slice('changes'.length))] = JSON.parse(oZipChanges.files[i].asText());
JSON.parse(oZipChanges.files[i].asText());
} }
} }
onEndOpen(); onEndOpen();
@ -9295,7 +9363,6 @@ function openFileCommand(binUrl, changesUrl, Signature, callback) {
} }
if (window['IS_NATIVE_EDITOR']) { if (window['IS_NATIVE_EDITOR']) {
console.error("is native editor");
var result = window["native"]["openFileCommand"](sFileUrl, changesUrl, Signature); var result = window["native"]["openFileCommand"](sFileUrl, changesUrl, Signature);
var url; var url;
@ -9308,6 +9375,7 @@ function openFileCommand(binUrl, changesUrl, Signature, callback) {
} else { } else {
bError = true; bError = true;
} }
bEndLoadFile = true; bEndLoadFile = true;
onEndOpen(); onEndOpen();
} }

@ -3755,6 +3755,7 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
var t = this; var t = this;
var sockjs; var sockjs;
/*
if (window['IS_NATIVE_EDITOR']) { if (window['IS_NATIVE_EDITOR']) {
sockjs = this.sockjs = window['SockJS']; sockjs = this.sockjs = window['SockJS'];
sockjs.open(); sockjs.open();
@ -3763,8 +3764,11 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
//ограничиваем transports WebSocket и XHR / JSONP polling, как и engine.io https://github.com/socketio/engine.io //ограничиваем transports WebSocket и XHR / JSONP polling, как и engine.io https://github.com/socketio/engine.io
//при переборе streaming transports у клиента с wirewall происходило зацикливание(не повторялось в версии sock.js 0.3.4) //при переборе streaming transports у клиента с wirewall происходило зацикливание(не повторялось в версии sock.js 0.3.4)
sockjs = this.sockjs = new (this._getSockJs())(this.sockjs_url, null, {transports: ['websocket', 'xdr-polling', 'xhr-polling', 'iframe-xhr-polling', 'jsonp-polling']}); sockjs = this.sockjs = new (this._getSockJs())(this.sockjs_url, null, {transports: ['websocket', 'xdr-polling', 'xhr-polling', 'iframe-xhr-polling', 'jsonp-polling']});
} }*/
sockjs = {};
t._state = true;
/*
sockjs.onopen = function() { sockjs.onopen = function() {
if (t.reconnectTimeout) { if (t.reconnectTimeout) {
clearTimeout(t.reconnectTimeout); clearTimeout(t.reconnectTimeout);
@ -3775,6 +3779,7 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
t._state = ConnectionState.WaitAuth; t._state = ConnectionState.WaitAuth;
t.onFirstConnect(); t.onFirstConnect();
}; };
*/
sockjs.onmessage = function(e) { sockjs.onmessage = function(e) {
//TODO: add checks and error handling //TODO: add checks and error handling
//Get data type //Get data type
@ -3847,6 +3852,67 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
break; break;
} }
}; };
sockjs.close = function () {
console.error('Close realtime');
};
var send = function (data) {
setTimeout(function () {
this.onmessage(JSON.stringify(data));
});
};
sockjs.send = function (data) {
try {
var obj = JSON.parse(data);
} catch (e) {
console.log(data);
console.error(e);
return;
}
var msg, msg2;
switch (obj.type) {
case 'auth':
msg = {
"type":"auth",
"result":1,
"sessionId":"08e77705-dc5c-477d-b73a-b1a7cbca1e9b",
"sessionTimeConnect":+new Date(),
"participants":[]
};
msg2 = {
"type":"documentOpen",
"data":{"type":"open","status":"ok","data":{"Editor.bin":obj.openCmd.url}}
};
send(msg);
send(msg2);
break;
case 'getMessages':
msg = {};
break;
}
};
var license = {
type: 'license',
license: {
type: 3,
light: false,
trial: false,
rights: 1,
buildVersion: "4.3.3",
buildNumber: 4,
branding: false
}
};
sockjs.onmessage({
data: JSON.stringify(license)
});
/*
sockjs.onclose = function(evt) { sockjs.onclose = function(evt) {
if (ConnectionState.SaveChanges === t._state) { if (ConnectionState.SaveChanges === t._state) {
// Мы сохраняли изменения и разорвалось соединение // Мы сохраняли изменения и разорвалось соединение
@ -3871,6 +3937,7 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
t._tryReconnect(); t._tryReconnect();
} }
}; };
*/
return sockjs; return sockjs;
}; };
@ -3918,6 +3985,7 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
window['AscCommon'] = window['AscCommon'] || {}; window['AscCommon'] = window['AscCommon'] || {};
window['AscCommon'].CDocsCoApi = CDocsCoApi; window['AscCommon'].CDocsCoApi = CDocsCoApi;
})(window); })(window);
/* /*
* (c) Copyright Ascensio System SIA 2010-2017 * (c) Copyright Ascensio System SIA 2010-2017
* *

@ -3755,6 +3755,7 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
var t = this; var t = this;
var sockjs; var sockjs;
/*
if (window['IS_NATIVE_EDITOR']) { if (window['IS_NATIVE_EDITOR']) {
sockjs = this.sockjs = window['SockJS']; sockjs = this.sockjs = window['SockJS'];
sockjs.open(); sockjs.open();
@ -3763,8 +3764,11 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
//ограничиваем transports WebSocket и XHR / JSONP polling, как и engine.io https://github.com/socketio/engine.io //ограничиваем transports WebSocket и XHR / JSONP polling, как и engine.io https://github.com/socketio/engine.io
//при переборе streaming transports у клиента с wirewall происходило зацикливание(не повторялось в версии sock.js 0.3.4) //при переборе streaming transports у клиента с wirewall происходило зацикливание(не повторялось в версии sock.js 0.3.4)
sockjs = this.sockjs = new (this._getSockJs())(this.sockjs_url, null, {transports: ['websocket', 'xdr-polling', 'xhr-polling', 'iframe-xhr-polling', 'jsonp-polling']}); sockjs = this.sockjs = new (this._getSockJs())(this.sockjs_url, null, {transports: ['websocket', 'xdr-polling', 'xhr-polling', 'iframe-xhr-polling', 'jsonp-polling']});
} }*/
sockjs = {};
t._state = true;
/*
sockjs.onopen = function() { sockjs.onopen = function() {
if (t.reconnectTimeout) { if (t.reconnectTimeout) {
clearTimeout(t.reconnectTimeout); clearTimeout(t.reconnectTimeout);
@ -3775,6 +3779,7 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
t._state = ConnectionState.WaitAuth; t._state = ConnectionState.WaitAuth;
t.onFirstConnect(); t.onFirstConnect();
}; };
*/
sockjs.onmessage = function(e) { sockjs.onmessage = function(e) {
//TODO: add checks and error handling //TODO: add checks and error handling
//Get data type //Get data type
@ -3847,6 +3852,67 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
break; break;
} }
}; };
sockjs.close = function () {
console.error('Close realtime');
};
var send = function (data) {
setTimeout(function () {
this.onmessage(JSON.stringify(data));
});
};
sockjs.send = function (data) {
try {
var obj = JSON.parse(data);
} catch (e) {
console.log(data);
console.error(e);
return;
}
var msg, msg2;
switch (obj.type) {
case 'auth':
msg = {
"type":"auth",
"result":1,
"sessionId":"08e77705-dc5c-477d-b73a-b1a7cbca1e9b",
"sessionTimeConnect":+new Date(),
"participants":[]
};
msg2 = {
"type":"documentOpen",
"data":{"type":"open","status":"ok","data":{"Editor.bin":obj.openCmd.url}}
};
send(msg);
send(msg2);
break;
case 'getMessages':
msg = {};
break;
}
};
var license = {
type: 'license',
license: {
type: 3,
light: false,
trial: false,
rights: 1,
buildVersion: "4.3.3",
buildNumber: 4,
branding: false
}
};
sockjs.onmessage({
data: JSON.stringify(license)
});
/*
sockjs.onclose = function(evt) { sockjs.onclose = function(evt) {
if (ConnectionState.SaveChanges === t._state) { if (ConnectionState.SaveChanges === t._state) {
// Мы сохраняли изменения и разорвалось соединение // Мы сохраняли изменения и разорвалось соединение
@ -3871,6 +3937,7 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
t._tryReconnect(); t._tryReconnect();
} }
}; };
*/
return sockjs; return sockjs;
}; };
@ -3918,6 +3985,7 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
window['AscCommon'] = window['AscCommon'] || {}; window['AscCommon'] = window['AscCommon'] || {};
window['AscCommon'].CDocsCoApi = CDocsCoApi; window['AscCommon'].CDocsCoApi = CDocsCoApi;
})(window); })(window);
/* /*
* (c) Copyright Ascensio System SIA 2010-2017 * (c) Copyright Ascensio System SIA 2010-2017
* *

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save