mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-04-07 14:06:11 +08:00
324 lines
12 KiB
Plaintext
Executable File
324 lines
12 KiB
Plaintext
Executable File
<%#
|
||
(c) Copyright Ascensio System SIA 2024
|
||
|
||
Licensed under the Apache License, Version 2.0 (the "License");
|
||
you may not use this file except in compliance with the License.
|
||
You may obtain a copy of the License at
|
||
|
||
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
||
Unless required by applicable law or agreed to in writing, software
|
||
distributed under the License is distributed on an "AS IS" BASIS,
|
||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
See the License for the specific language governing permissions and
|
||
limitations under the License.
|
||
%>
|
||
|
||
<%= stylesheet_link_tag "editor" %>
|
||
|
||
<div class="form">
|
||
<div id="iframeEditor">
|
||
</div>
|
||
</div>
|
||
|
||
<script src="<%= ConfigurationManager.new.document_server_api_uri.to_s %>"></script>
|
||
|
||
<script type="text/javascript" language="javascript">
|
||
|
||
var docEditor;
|
||
var config;
|
||
var versionHistory;
|
||
|
||
var innerAlert = function (message, inEditor) {
|
||
if (console && console.log)
|
||
console.log(message);
|
||
if (inEditor && docEditor)
|
||
docEditor.showMessage(message);
|
||
};
|
||
|
||
// the application is loaded into the browser
|
||
var onAppReady = function () {
|
||
innerAlert("Document editor ready");
|
||
};
|
||
|
||
// the document is modified
|
||
var onDocumentStateChange = function (event) {
|
||
var title = document.title.replace(/\*$/g, "");
|
||
document.title = title + (event.data ? "*" : "");
|
||
};
|
||
|
||
// the user is trying to switch the document from the viewing into the editing mode
|
||
var onRequestEditRights = function () {
|
||
location.href = location.href.replace(RegExp("editorsMode=\\w+\&?", "i"), "") + "&editorsMode=edit";
|
||
};
|
||
|
||
// an error or some other specific event occurs
|
||
var onError = function (event) {
|
||
if (event)
|
||
innerAlert(event.data);
|
||
};
|
||
|
||
// the document is opened for editing with the old document.key value
|
||
var onOutdatedVersion = function (event) {
|
||
location.reload(true);
|
||
};
|
||
|
||
// replace the link to the document which contains a bookmark
|
||
var replaceActionLink = function(href, linkParam) {
|
||
var link;
|
||
var actionIndex = href.indexOf("&actionLink=");
|
||
if (actionIndex != -1) {
|
||
var endIndex = href.indexOf("&", actionIndex + "&actionLink=".length);
|
||
if (endIndex != -1) {
|
||
link = href.substring(0, actionIndex) + href.substring(endIndex) + "&actionLink=" + encodeURIComponent(linkParam);
|
||
} else {
|
||
link = href.substring(0, actionIndex) + "&actionLink=" + encodeURIComponent(linkParam);
|
||
}
|
||
} else {
|
||
link = href + "&actionLink=" + encodeURIComponent(linkParam);
|
||
}
|
||
return link;
|
||
}
|
||
|
||
// the user is trying to get link for opening the document which contains a bookmark, scrolling to the bookmark position
|
||
var onMakeActionLink = function (event) {
|
||
var actionData = event.data;
|
||
var linkParam = JSON.stringify(actionData);
|
||
docEditor.setActionLink(replaceActionLink(location.href, linkParam)); // set the link to the document which contains a bookmark
|
||
};
|
||
|
||
// the meta information of the document is changed via the meta command
|
||
var onMetaChange = function (event) {
|
||
if (event.data.favorite !== undefined) {
|
||
var favorite = !!event.data.favorite;
|
||
var title = document.title.replace(/^\☆/g, "");
|
||
document.title = (favorite ? "☆" : "") + title;
|
||
docEditor.setFavorite(favorite); // change the Favorite icon state
|
||
}
|
||
|
||
innerAlert("onMetaChange: " + JSON.stringify(event.data));
|
||
};
|
||
|
||
// the user is trying to insert an image by clicking the Image from Storage button
|
||
var onRequestInsertImage = function(event) {
|
||
docEditor.insertImage({ // insert an image into the file
|
||
"c": event.data.c,
|
||
<%= raw @file.insert_image %>
|
||
})
|
||
};
|
||
|
||
// the user is trying to select document for comparing by clicking the Document from Storage button
|
||
var onRequestSelectDocument = function(event) {
|
||
var data = <%= raw @file.data_document.to_json %>;
|
||
data.c = event.data.c;
|
||
docEditor.setRequestedDocument(data); // select a document for comparing
|
||
};
|
||
|
||
// the user is trying to select recipients data by clicking the Mail merge button
|
||
var onRequestSelectSpreadsheet = function (event) {
|
||
var data = <%= raw @file.data_spreadsheet.to_json %>;
|
||
data.c = event.data.c;
|
||
docEditor.setRequestedSpreadsheet(data); // insert recipient data for mail merge into the file
|
||
};
|
||
|
||
var onRequestSaveAs = function (event) { // the user is trying to save file by clicking Save Copy as... button
|
||
var title = event.data.title;
|
||
var url = event.data.url;
|
||
var data = {
|
||
title: title,
|
||
url: url
|
||
};
|
||
let xhr = new XMLHttpRequest();
|
||
xhr.open("POST", "saveas");
|
||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||
xhr.send(JSON.stringify(data));
|
||
xhr.onload = function () {
|
||
innerAlert(xhr.responseText);
|
||
innerAlert(JSON.parse(xhr.responseText).file, true);
|
||
}
|
||
};
|
||
|
||
var onRequestRename = function(event) { // the user is trying to rename file by clicking Rename... button
|
||
innerAlert("onRequestRename: " + JSON.stringify(event.data));
|
||
|
||
var newfilename = event.data;
|
||
var data = {
|
||
newfilename: newfilename,
|
||
dockey: config.document.key,
|
||
ext: config.document.fileType
|
||
};
|
||
let xhr = new XMLHttpRequest();
|
||
xhr.open("POST", "rename");
|
||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||
xhr.send(JSON.stringify(data));
|
||
xhr.onload = function () {
|
||
innerAlert(xhr.responseText);
|
||
}
|
||
};
|
||
|
||
var onRequestOpen = function(event) { // user open external data source
|
||
innerAlert("onRequestOpen");
|
||
var windowName = event.data.windowName;
|
||
|
||
requestReference(event.data, function (data) {
|
||
if (data.error) {
|
||
var winEditor = window.open("", windowName);
|
||
winEditor.close();
|
||
innerAlert(data.error, true);
|
||
return;
|
||
}
|
||
var link = data.link;
|
||
window.open(link, windowName);
|
||
});
|
||
};
|
||
|
||
var onRequestReferenceData = function(event) { // user refresh external data source
|
||
innerAlert("onRequestReferenceData");
|
||
|
||
requestReference(event.data, function (data) {
|
||
docEditor.setReferenceData(data);
|
||
});
|
||
};
|
||
|
||
var requestReference = function(data, callback) {
|
||
innerAlert(data);
|
||
|
||
data.directUrl = !!config.document.directUrl;
|
||
let xhr = new XMLHttpRequest();
|
||
xhr.open("POST", "reference");
|
||
xhr.setRequestHeader("Content-Type", "application/json");
|
||
xhr.send(JSON.stringify(data));
|
||
xhr.onload = function () {
|
||
innerAlert(xhr.responseText);
|
||
callback(JSON.parse(xhr.responseText));
|
||
}
|
||
|
||
};
|
||
|
||
var onRequestUsers = function (event) {
|
||
if (event && event.data) {
|
||
var c = event.data.c;
|
||
}
|
||
|
||
switch (c) {
|
||
case "protect":
|
||
var users = <%= raw @file.users_protect.to_json %>;
|
||
break;
|
||
case "info":
|
||
users = [];
|
||
var allUsers = <%= raw @file.users_info.to_json %>;
|
||
for (var i = 0; i < event.data.id.length; i++) {
|
||
for (var j = 0; j < allUsers.length; j++) {
|
||
if (allUsers[j].id == event.data.id[i]) {
|
||
users.push(allUsers[j]);
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
break;
|
||
default:
|
||
users = <%= raw @file.users_mentions.to_json %>;
|
||
}
|
||
|
||
docEditor.setUsers({
|
||
"c": c,
|
||
"users": users,
|
||
});
|
||
};
|
||
|
||
var onRequestSendNotify = function(event) { // the user is mentioned in a comment
|
||
event.data.actionLink = replaceActionLink(location.href, JSON.stringify(event.data.actionLink));
|
||
var data = JSON.stringify(event.data);
|
||
innerAlert("onRequestSendNotify: " + data);
|
||
};
|
||
|
||
function onRequestRestore(event) {
|
||
const query = new URLSearchParams(window.location.search)
|
||
const payload = {
|
||
fileName: query.get('fileName'),
|
||
version: event.data.version,
|
||
userId: query.get('userId')
|
||
}
|
||
const request = new XMLHttpRequest()
|
||
request.open("PUT", '/restore')
|
||
request.send(JSON.stringify(payload))
|
||
request.onload = function () {
|
||
if (request.status != 200) {
|
||
response = JSON.parse(request.response)
|
||
innerAlert(response.error)
|
||
return
|
||
}
|
||
onRequestHistory()
|
||
}
|
||
}
|
||
|
||
function onRequestHistory() {
|
||
fileData = <%= raw @file.to_json %>;
|
||
const req = new XMLHttpRequest()
|
||
req.open("POST", '/historyobj')
|
||
req.send(JSON.stringify(fileData))
|
||
req.onload = function () {
|
||
versionHistory = JSON.parse(req.response)
|
||
docEditor.refreshHistory(versionHistory.hist)
|
||
}
|
||
}
|
||
|
||
function onRequestHistoryData(event){
|
||
var ver = event.data;
|
||
var histData = versionHistory.histData;
|
||
docEditor.setHistoryData(histData[ver - 1]);
|
||
}
|
||
|
||
function onRequestHistoryClose(){
|
||
document.location.reload();
|
||
}
|
||
|
||
var сonnectEditor = function () {
|
||
|
||
config = <%= raw @file.config.to_json %>;
|
||
|
||
config.width = "100%";
|
||
config.height = "100%";
|
||
config.events = {
|
||
'onAppReady': onAppReady,
|
||
'onDocumentStateChange': onDocumentStateChange,
|
||
'onError': onError,
|
||
'onOutdatedVersion': onOutdatedVersion,
|
||
'onMakeActionLink': onMakeActionLink,
|
||
'onMetaChange': onMetaChange,
|
||
'onRequestInsertImage': onRequestInsertImage,
|
||
'onRequestSelectDocument': onRequestSelectDocument,
|
||
'onRequestSelectSpreadsheet': onRequestSelectSpreadsheet
|
||
};
|
||
|
||
if (config.editorConfig.user.id) {
|
||
|
||
// add mentions for not anonymous users
|
||
config.events['onRequestUsers'] = onRequestUsers;
|
||
config.events['onRequestSaveAs'] = onRequestSaveAs;
|
||
// the user is mentioned in a comment
|
||
config.events['onRequestSendNotify'] = onRequestSendNotify;
|
||
// prevent file renaming for anonymous users
|
||
config.events['onRequestRename'] = onRequestRename;
|
||
config.events['onRequestReferenceData'] = onRequestReferenceData;
|
||
// prevent switch the document from the viewing into the editing mode for anonymous users
|
||
config.events['onRequestEditRights'] = onRequestEditRights;
|
||
config.events['onRequestOpen'] = onRequestOpen;
|
||
config.events['onRequestHistory'] = onRequestHistory;
|
||
config.events['onRequestHistoryData'] = onRequestHistoryData;
|
||
if (config.editorConfig.user.id != "uid-3") {
|
||
config.events['onRequestHistoryClose'] = onRequestHistoryClose;
|
||
config.events['onRequestRestore'] = onRequestRestore;
|
||
}
|
||
}
|
||
|
||
docEditor = new DocsAPI.DocEditor("iframeEditor", config);
|
||
};
|
||
|
||
if (window.addEventListener) {
|
||
window.addEventListener("load", сonnectEditor);
|
||
} else if (window.attachEvent) {
|
||
window.attachEvent("load", сonnectEditor);
|
||
}
|
||
|
||
</script> |