770 lines
38 KiB
JavaScript
770 lines
38 KiB
JavaScript
/*global gapi */
|
|
define([
|
|
"jquery",
|
|
"underscore",
|
|
"constants",
|
|
"utils",
|
|
"storage",
|
|
"logger",
|
|
"classes/Provider",
|
|
"settings",
|
|
"eventMgr",
|
|
"fileMgr",
|
|
"editor",
|
|
"helpers/googleHelper",
|
|
"text!html/dialogExportGdrive.html",
|
|
"text!html/dialogAutoSyncGdrive.html",
|
|
], function($, _, constants, utils, storage, logger, Provider, settings, eventMgr, fileMgr, editor, googleHelper, dialogExportGdriveHTML, dialogAutoSyncGdriveHTML) {
|
|
|
|
return function(providerId, providerName, accountIndex) {
|
|
var accountId = 'google.gdrive' + accountIndex;
|
|
|
|
var gdriveProvider = new Provider(providerId, providerName);
|
|
gdriveProvider.defaultPublishFormat = "template";
|
|
gdriveProvider.exportPreferencesInputIds = [
|
|
providerId + "-parentid",
|
|
providerId + "-realtime",
|
|
];
|
|
|
|
function createSyncIndex(id) {
|
|
return "sync." + providerId + "." + id;
|
|
}
|
|
|
|
var merge = settings.conflictMode == 'merge';
|
|
function createSyncAttributes(id, etag, content, title, discussionListJSON) {
|
|
discussionListJSON = discussionListJSON || '{}';
|
|
var syncAttributes = {};
|
|
syncAttributes.provider = gdriveProvider;
|
|
syncAttributes.id = id;
|
|
syncAttributes.etag = etag;
|
|
syncAttributes.contentCRC = utils.crc32(content);
|
|
syncAttributes.titleCRC = utils.crc32(title);
|
|
syncAttributes.discussionListCRC = utils.crc32(discussionListJSON);
|
|
syncAttributes.syncIndex = createSyncIndex(id);
|
|
if(merge === true) {
|
|
// Need to store the whole content for merge
|
|
syncAttributes.content = content;
|
|
syncAttributes.title = title;
|
|
syncAttributes.discussionList = discussionListJSON;
|
|
}
|
|
return syncAttributes;
|
|
}
|
|
|
|
function importFilesFromIds(ids) {
|
|
googleHelper.downloadMetadata(ids, accountId, function(error, result) {
|
|
if(error) {
|
|
return;
|
|
}
|
|
googleHelper.downloadContent(result, accountId, function(error, result) {
|
|
if(error) {
|
|
return;
|
|
}
|
|
var fileDescList = [];
|
|
var fileDesc;
|
|
_.each(result, function(file) {
|
|
var parsedContent = gdriveProvider.parseSerializedContent(file.content);
|
|
var syncAttributes = createSyncAttributes(file.id, file.etag, parsedContent.content, file.title, parsedContent.discussionListJSON);
|
|
syncAttributes.isRealtime = file.isRealtime;
|
|
var syncLocations = {};
|
|
syncLocations[syncAttributes.syncIndex] = syncAttributes;
|
|
fileDesc = fileMgr.createFile(file.title, parsedContent.content, parsedContent.discussionListJSON, syncLocations);
|
|
fileDescList.push(fileDesc);
|
|
});
|
|
if(fileDesc !== undefined) {
|
|
eventMgr.onSyncImportSuccess(fileDescList, gdriveProvider);
|
|
fileMgr.selectFile(fileDesc);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
gdriveProvider.importFiles = function() {
|
|
googleHelper.picker(function(error, docs) {
|
|
if(error || docs.length === 0) {
|
|
return;
|
|
}
|
|
var importIds = [];
|
|
_.each(docs, function(doc) {
|
|
var syncIndex = createSyncIndex(doc.id);
|
|
var fileDesc = fileMgr.getFileFromSyncIndex(syncIndex);
|
|
if(fileDesc !== undefined) {
|
|
eventMgr.onError('"' + fileDesc.title + '" was already imported.');
|
|
return;
|
|
}
|
|
importIds.push(doc.id);
|
|
});
|
|
importFilesFromIds(importIds);
|
|
}, 'doc', accountId);
|
|
};
|
|
|
|
gdriveProvider.exportFile = function(event, title, content, discussionListJSON, callback) {
|
|
var fileId = utils.getInputTextValue('#input-sync-export-' + providerId + '-fileid');
|
|
if(fileId) {
|
|
// Check that file is not synchronized with another an existing
|
|
// document
|
|
var syncIndex = createSyncIndex(fileId);
|
|
var fileDesc = fileMgr.getFileFromSyncIndex(syncIndex);
|
|
if(fileDesc !== undefined) {
|
|
eventMgr.onError('File ID is already synchronized with "' + fileDesc.title + '".');
|
|
callback(true);
|
|
return;
|
|
}
|
|
}
|
|
var parentId = utils.getInputTextValue('#input-sync-export-' + providerId + '-parentid');
|
|
googleHelper.upload(fileId, parentId, title, content, undefined, undefined, accountId, function(error, result) {
|
|
if(error) {
|
|
callback(error);
|
|
return;
|
|
}
|
|
var syncAttributes = createSyncAttributes(result.id, result.etag, content, title, discussionListJSON);
|
|
callback(undefined, syncAttributes);
|
|
});
|
|
};
|
|
|
|
gdriveProvider.exportRealtimeFile = function(event, title, content, discussionListJSON, callback) {
|
|
var parentId = utils.getInputTextValue('#input-sync-export-' + providerId + '-parentid');
|
|
googleHelper.createRealtimeFile(parentId, title, accountId, function(error, result) {
|
|
if(error) {
|
|
callback(error);
|
|
return;
|
|
}
|
|
var syncAttributes = createSyncAttributes(result.id, result.etag, content, title, discussionListJSON);
|
|
callback(undefined, syncAttributes);
|
|
});
|
|
};
|
|
|
|
gdriveProvider.syncUp = function(content, contentCRC, title, titleCRC, discussionList, discussionListCRC, syncAttributes, callback) {
|
|
if(
|
|
(syncAttributes.contentCRC == contentCRC) && // Content CRC hasn't changed
|
|
(syncAttributes.titleCRC == titleCRC) && // Content CRC hasn't changed
|
|
(syncAttributes.discussionListCRC == discussionListCRC) // Discussion list CRC hasn't changed
|
|
) {
|
|
return callback(undefined, false);
|
|
}
|
|
var uploadedContent = gdriveProvider.serializeContent(content, discussionList);
|
|
googleHelper.upload(syncAttributes.id, undefined, title, uploadedContent, undefined, syncAttributes.etag, accountId, function(error, result) {
|
|
if(error) {
|
|
callback(error, true);
|
|
return;
|
|
}
|
|
syncAttributes.etag = result.etag;
|
|
if(merge === true) {
|
|
// Need to store the whole content for merge
|
|
syncAttributes.content = content;
|
|
syncAttributes.title = title;
|
|
syncAttributes.discussionList = discussionList;
|
|
}
|
|
syncAttributes.contentCRC = contentCRC;
|
|
syncAttributes.titleCRC = titleCRC;
|
|
syncAttributes.discussionListCRC = discussionListCRC;
|
|
callback(undefined, true);
|
|
});
|
|
};
|
|
|
|
gdriveProvider.syncUpRealtime = function(content, contentCRC, title, titleCRC, discussionList, discussionListCRC, syncAttributes, callback) {
|
|
// Skip if title CRC has not changed
|
|
if(titleCRC == syncAttributes.titleCRC) {
|
|
callback(undefined, false);
|
|
return;
|
|
}
|
|
googleHelper.rename(syncAttributes.id, title, accountId, function(error, result) {
|
|
if(error) {
|
|
callback(error, true);
|
|
return;
|
|
}
|
|
syncAttributes.etag = result.etag;
|
|
syncAttributes.titleCRC = titleCRC;
|
|
callback(undefined, true);
|
|
});
|
|
};
|
|
|
|
gdriveProvider.syncDown = function(callback) {
|
|
var lastChangeId = parseInt(storage[accountId + ".gdrive.lastChangeId"], 10);
|
|
googleHelper.checkChanges(lastChangeId, accountId, function(error, changes, newChangeId) {
|
|
if(error) {
|
|
callback(error);
|
|
return;
|
|
}
|
|
var interestingChanges = [];
|
|
_.each(changes, function(change) {
|
|
var syncIndex = createSyncIndex(change.fileId);
|
|
var syncAttributes = fileMgr.getSyncAttributes(syncIndex);
|
|
if(syncAttributes === undefined) {
|
|
return;
|
|
}
|
|
// Store syncAttributes to avoid 2 times searching
|
|
change.syncAttributes = syncAttributes;
|
|
// Delete
|
|
if(change.deleted === true) {
|
|
interestingChanges.push(change);
|
|
return;
|
|
}
|
|
// Modify
|
|
if(syncAttributes.etag != change.file.etag) {
|
|
interestingChanges.push(change);
|
|
}
|
|
});
|
|
googleHelper.downloadContent(interestingChanges, accountId, function(error, changes) {
|
|
if(error) {
|
|
callback(error);
|
|
return;
|
|
}
|
|
function merge() {
|
|
if(changes.length === 0) {
|
|
storage[accountId + ".gdrive.lastChangeId"] = newChangeId;
|
|
return callback();
|
|
}
|
|
var change = changes.pop();
|
|
var syncAttributes = change.syncAttributes;
|
|
var syncIndex = syncAttributes.syncIndex;
|
|
var fileDesc = fileMgr.getFileFromSyncIndex(syncIndex);
|
|
// No file corresponding (file may have been deleted locally)
|
|
if(fileDesc === undefined) {
|
|
return;
|
|
}
|
|
// File deleted
|
|
if(change.deleted === true) {
|
|
eventMgr.onError('"' + fileDesc.title + '" has been removed from ' + providerName + '.');
|
|
fileDesc.removeSyncLocation(syncAttributes);
|
|
eventMgr.onSyncRemoved(fileDesc, syncAttributes);
|
|
if(syncAttributes.isRealtime === true && fileMgr.currentFile === fileDesc) {
|
|
gdriveProvider.stopRealtimeSync();
|
|
}
|
|
return;
|
|
}
|
|
var file = change.file;
|
|
var parsedContent = gdriveProvider.parseSerializedContent(file.content);
|
|
var remoteContent = parsedContent.content;
|
|
var remoteTitle = file.title;
|
|
var remoteDiscussionListJSON = parsedContent.discussionListJSON;
|
|
var remoteDiscussionList = JSON.parse(remoteDiscussionListJSON);
|
|
var remoteCRC = gdriveProvider.syncMerge(fileDesc, syncAttributes, remoteContent, remoteTitle, remoteDiscussionList, remoteDiscussionListJSON);
|
|
|
|
// Update syncAttributes
|
|
syncAttributes.etag = file.etag;
|
|
if(merge === true) {
|
|
// Need to store the whole content for merge
|
|
syncAttributes.content = remoteContent;
|
|
syncAttributes.title = remoteTitle;
|
|
syncAttributes.discussionList = remoteDiscussionListJSON;
|
|
}
|
|
syncAttributes.contentCRC = remoteCRC.contentCRC;
|
|
syncAttributes.titleCRC = remoteCRC.titleCRC;
|
|
syncAttributes.discussionListCRC = remoteCRC.discussionListCRC;
|
|
utils.storeAttributes(syncAttributes);
|
|
setTimeout(merge, 5);
|
|
}
|
|
setTimeout(merge, 5);
|
|
});
|
|
});
|
|
};
|
|
|
|
gdriveProvider.publish = function(publishAttributes, frontMatter, title, content, callback) {
|
|
var contentType = publishAttributes.format != "markdown" ? 'text/html' : undefined;
|
|
googleHelper.upload(publishAttributes.id, undefined, publishAttributes.fileName || title, content, contentType, undefined, accountId, function(error, result) {
|
|
if(error) {
|
|
callback(error);
|
|
return;
|
|
}
|
|
publishAttributes.id = result.id;
|
|
callback();
|
|
});
|
|
};
|
|
|
|
gdriveProvider.newPublishAttributes = function(event) {
|
|
var publishAttributes = {};
|
|
publishAttributes.id = utils.getInputTextValue('#input-publish-' + providerId + '-fileid');
|
|
publishAttributes.fileName = utils.getInputTextValue('#input-publish-' + providerId + '-filename');
|
|
if(event.isPropagationStopped()) {
|
|
return undefined;
|
|
}
|
|
return publishAttributes;
|
|
};
|
|
|
|
// Keep a link to the Pagedown editor
|
|
var pagedownEditor;
|
|
var undoExecute;
|
|
var redoExecute;
|
|
var setUndoRedoButtonStates;
|
|
eventMgr.addListener("onPagedownConfigure", function(pagedownEditorParam) {
|
|
pagedownEditor = pagedownEditorParam;
|
|
});
|
|
|
|
// Realtime closure
|
|
(function() {
|
|
var realtimeContext;
|
|
|
|
function toRealtimeDiscussion(context, discussion) {
|
|
var realtimeCommentList = context.model.createList();
|
|
realtimeCommentList.addEventListener(gapi.drive.realtime.EventType.VALUES_ADDED, modelEventListener);
|
|
realtimeCommentList.addEventListener(gapi.drive.realtime.EventType.VALUES_REMOVED, modelEventListener);
|
|
realtimeCommentList.addEventListener(gapi.drive.realtime.EventType.VALUES_SET, modelEventListener);
|
|
discussion.commentList && discussion.commentList.forEach(function(comment) {
|
|
realtimeCommentList.push({
|
|
author: comment.author,
|
|
content: comment.content
|
|
});
|
|
});
|
|
var realtimeDiscussion = context.model.createMap({
|
|
discussionIndex: discussion.discussionIndex,
|
|
selectionStart: discussion.selectionStart,
|
|
selectionEnd: discussion.selectionEnd,
|
|
type: discussion.type,
|
|
commentList: realtimeCommentList
|
|
});
|
|
return realtimeDiscussion;
|
|
}
|
|
|
|
function toRealtimeDiscussionList(context) {
|
|
var realtimeDiscussionList = context.model.createMap();
|
|
_.each(context.fileDesc.discussionList, function(localDiscussion) {
|
|
var realtimeDiscussion = toRealtimeDiscussion(context, localDiscussion);
|
|
realtimeDiscussionList.set(localDiscussion.discussionIndex, realtimeDiscussion);
|
|
});
|
|
return realtimeDiscussionList;
|
|
}
|
|
|
|
function fromRealtimeDiscussion(realtimeDiscussion) {
|
|
var discussion = {
|
|
discussionIndex: realtimeDiscussion.get('discussionIndex'),
|
|
selectionStart: realtimeDiscussion.get('selectionStart'),
|
|
selectionEnd: realtimeDiscussion.get('selectionEnd')
|
|
};
|
|
var type = realtimeDiscussion.get('type');
|
|
type && (discussion.type = type);
|
|
var commentList = realtimeDiscussion.get('commentList').asArray();
|
|
commentList.length && (discussion.commentList = commentList);
|
|
return discussion;
|
|
}
|
|
|
|
function fromRealtimeDiscussionList(realtimeDiscussionList) {
|
|
var localDiscussionList = {};
|
|
realtimeDiscussionList.keys().forEach(function(discussionIndex) {
|
|
var realtimeDiscussion = realtimeDiscussionList.get(discussionIndex);
|
|
var discussion = fromRealtimeDiscussion(realtimeDiscussion);
|
|
localDiscussionList[discussionIndex] = discussion;
|
|
});
|
|
return localDiscussionList;
|
|
}
|
|
|
|
function mergeDiscussion(localDiscussion, realtimeDiscussion, isServerChange) {
|
|
var commentsChanged = false;
|
|
// We only pay attention to local selection modifications
|
|
if(!isServerChange) {
|
|
realtimeDiscussion.set('selectionStart', localDiscussion.selectionStart);
|
|
realtimeDiscussion.set('selectionEnd', localDiscussion.selectionEnd);
|
|
}
|
|
function isInDiscussion(comment, commentList) {
|
|
return commentList.some(function(commentInDiscussion) {
|
|
if(comment.author == commentInDiscussion.author && comment.content == commentInDiscussion.content) {
|
|
return true;
|
|
}
|
|
});
|
|
}
|
|
var realtimeCommentList = realtimeDiscussion.get('commentList');
|
|
var localCommentList = localDiscussion.commentList;
|
|
function checkLocalComment(comment, index) {
|
|
if(!isInDiscussion(comment, realtimeCommentList.asArray())) {
|
|
if(isServerChange) {
|
|
localCommentList.splice(index, 1);
|
|
commentsChanged = true;
|
|
return true;
|
|
}
|
|
else {
|
|
realtimeCommentList.push(comment);
|
|
}
|
|
}
|
|
}
|
|
while(localCommentList.some(checkLocalComment)) {}
|
|
function checkRealtimeComment(comment, index) {
|
|
if(!isInDiscussion(comment, localCommentList)) {
|
|
if(!isServerChange) {
|
|
realtimeCommentList.remove(index);
|
|
return true;
|
|
}
|
|
else {
|
|
localCommentList.push(comment);
|
|
commentsChanged = true;
|
|
}
|
|
}
|
|
}
|
|
while(realtimeCommentList.asArray().some(checkRealtimeComment)) {}
|
|
return commentsChanged;
|
|
}
|
|
|
|
function mergeDiscussionList(context, isServerChange) {
|
|
var commentsChanged = false;
|
|
var localDiscussionList = context.fileDesc.discussionList;
|
|
_.values(localDiscussionList).forEach(function(localDiscussion) {
|
|
var realtimeDiscussion = context.realtimeDiscussionList.get(localDiscussion.discussionIndex);
|
|
if(realtimeDiscussion) {
|
|
commentsChanged |= mergeDiscussion(localDiscussion, realtimeDiscussion, isServerChange);
|
|
}
|
|
else if(!isServerChange) {
|
|
realtimeDiscussion = toRealtimeDiscussion(context, localDiscussion);
|
|
context.realtimeDiscussionList.set(localDiscussion.discussionIndex, realtimeDiscussion);
|
|
}
|
|
else {
|
|
delete localDiscussionList[localDiscussion.discussionIndex];
|
|
eventMgr.onDiscussionRemoved(context.fileDesc, localDiscussion);
|
|
}
|
|
});
|
|
context.realtimeDiscussionList.keys().forEach(function(discussionIndex) {
|
|
var realtimeDiscussion = context.realtimeDiscussionList.get(discussionIndex);
|
|
var localDiscussion = localDiscussionList[discussionIndex];
|
|
if(localDiscussion) {
|
|
commentsChanged |= mergeDiscussion(localDiscussion, realtimeDiscussion, isServerChange);
|
|
}
|
|
else if(isServerChange) {
|
|
var discussion = fromRealtimeDiscussion(realtimeDiscussion);
|
|
localDiscussionList[discussionIndex] = discussion;
|
|
eventMgr.onDiscussionCreated(context.fileDesc, discussion);
|
|
}
|
|
else {
|
|
context.realtimeDiscussionList.delete(discussionIndex);
|
|
}
|
|
});
|
|
context.fileDesc.discussionList = localDiscussionList; // Write in localStorage
|
|
if(commentsChanged) {
|
|
eventMgr.onCommentsChanged(context.fileDesc);
|
|
}
|
|
}
|
|
|
|
function updateCRCs() {
|
|
var context = realtimeContext;
|
|
if(!context) {
|
|
return;
|
|
}
|
|
var syncAttributes = context.syncAttributes;
|
|
var content = context.realtimeString.getText();
|
|
syncAttributes.contentCRC = utils.crc32(content);
|
|
var discussionList = {};
|
|
context.realtimeDiscussionList.keys().forEach(function(discussionIndex) {
|
|
var discussion = fromRealtimeDiscussion(context.realtimeDiscussionList.get(discussionIndex));
|
|
discussionList[discussion.discussionIndex] = discussion;
|
|
});
|
|
var discussionListJSON = JSON.stringify(discussionList);
|
|
syncAttributes.discussionListCRC = utils.crc32(discussionListJSON);
|
|
if(merge === true) {
|
|
// Need to store the whole content for merge
|
|
syncAttributes.content = content;
|
|
syncAttributes.discussionList = discussionListJSON;
|
|
}
|
|
utils.storeAttributes(context.syncAttributes);
|
|
}
|
|
|
|
var onChange = (function() {
|
|
var debouncedOnChange = _.debounce(function() {
|
|
var context = realtimeContext;
|
|
if(!context) {
|
|
return;
|
|
}
|
|
if(context.isServerChange) {
|
|
logger.log('Realtime syncing remote changes');
|
|
}
|
|
else {
|
|
// Model is supposed to be updated on local modifications
|
|
context.model.beginCompoundOperation();
|
|
logger.log('Realtime syncing local changes');
|
|
}
|
|
|
|
// Check content modifications
|
|
var localContent = context.fileDesc.content;
|
|
var remoteContent = context.realtimeString.getText();
|
|
var contentChanged = localContent != remoteContent;
|
|
if(contentChanged) {
|
|
if(context.isServerChange) {
|
|
editor.setValue(remoteContent);
|
|
}
|
|
else {
|
|
context.realtimeString.setText(localContent);
|
|
}
|
|
}
|
|
|
|
// Check discussion modifications
|
|
mergeDiscussionList(context, context.isServerChange);
|
|
|
|
|
|
// For local changes, CRCs are updated on "save success" event
|
|
if(context.isServerChange) {
|
|
updateCRCs();
|
|
}
|
|
else {
|
|
context.model.endCompoundOperation();
|
|
}
|
|
context.isServerChange = false;
|
|
}, 0);
|
|
return function(fileDesc) {
|
|
if(realtimeContext && realtimeContext.fileDesc === fileDesc) {
|
|
debouncedOnChange();
|
|
}
|
|
};
|
|
})();
|
|
function modelEventListener(evt) {
|
|
if(!realtimeContext) {
|
|
return;
|
|
}
|
|
if(evt.isLocal === false) {
|
|
realtimeContext.isServerChange = true;
|
|
}
|
|
onChange(realtimeContext.fileDesc);
|
|
}
|
|
eventMgr.addListener('onContentChanged', onChange);
|
|
eventMgr.addListener('onDiscussionCreated', onChange);
|
|
eventMgr.addListener('onDiscussionRemoved', onChange);
|
|
eventMgr.addListener('onCommentsChanged', onChange);
|
|
|
|
// Start realtime synchronization
|
|
gdriveProvider.startRealtimeSync = function(fileDesc, syncAttributes) {
|
|
var context = {
|
|
fileDesc: fileDesc,
|
|
syncAttributes: syncAttributes
|
|
};
|
|
realtimeContext = context;
|
|
googleHelper.loadRealtime(syncAttributes.id, accountId, function(err, doc) {
|
|
if(err || !doc) {
|
|
return;
|
|
}
|
|
|
|
// If user just switched to another document or file has just been reselected
|
|
if(context !== realtimeContext) {
|
|
return doc.close();
|
|
}
|
|
|
|
logger.log("Starting Google Drive realtime synchronization");
|
|
context.document = doc;
|
|
var model = doc.getModel();
|
|
context.model = model;
|
|
|
|
// Get or create content string
|
|
var realtimeString = model.getRoot().get('content');
|
|
if(!realtimeString) {
|
|
// Initial value
|
|
realtimeString = model.createString(fileDesc.content);
|
|
model.getRoot().set('content', realtimeString);
|
|
}
|
|
context.realtimeString = realtimeString;
|
|
// Listen to content modifications
|
|
realtimeString.addEventListener(gapi.drive.realtime.EventType.TEXT_INSERTED, modelEventListener);
|
|
realtimeString.addEventListener(gapi.drive.realtime.EventType.TEXT_DELETED, modelEventListener);
|
|
|
|
// Get or create discussion map
|
|
var realtimeDiscussionList = model.getRoot().get('discussionList');
|
|
if(!realtimeDiscussionList) {
|
|
// Initial value
|
|
realtimeDiscussionList = toRealtimeDiscussionList(context);
|
|
model.getRoot().set('discussionList', realtimeDiscussionList);
|
|
}
|
|
context.realtimeDiscussionList = realtimeDiscussionList;
|
|
// Listen to discussion modifications
|
|
realtimeDiscussionList.addEventListener(gapi.drive.realtime.EventType.VALUE_CHANGED, modelEventListener);
|
|
realtimeDiscussionList.keys().forEach(function(discussionIndex) {
|
|
var realtimeDiscussion = context.realtimeDiscussionList.get(discussionIndex);
|
|
var realtimeCommentList = realtimeDiscussion.get('commentList');
|
|
// Listen to comment modifications in every discussion
|
|
realtimeCommentList.addEventListener(gapi.drive.realtime.EventType.VALUES_ADDED, modelEventListener);
|
|
realtimeCommentList.addEventListener(gapi.drive.realtime.EventType.VALUES_REMOVED, modelEventListener);
|
|
realtimeCommentList.addEventListener(gapi.drive.realtime.EventType.VALUES_SET, modelEventListener);
|
|
});
|
|
|
|
// Also listen to "save success" event
|
|
doc.addEventListener(gapi.drive.realtime.EventType.DOCUMENT_SAVE_STATE_CHANGED, function(e) {
|
|
if(e.isPending === false && e.isSaving === false) {
|
|
updateCRCs();
|
|
}
|
|
});
|
|
|
|
// Merge offline modifications
|
|
var remoteContent = realtimeString.getText();
|
|
var remoteTitle = fileDesc.title; // Not synchronized, so make sure no changes will be detected
|
|
var remoteDiscussionList = fromRealtimeDiscussionList(realtimeDiscussionList);
|
|
var remoteDiscussionListJSON = JSON.stringify(remoteDiscussionList);
|
|
gdriveProvider.syncMerge(fileDesc, syncAttributes, remoteContent, remoteTitle, remoteDiscussionList, remoteDiscussionListJSON);
|
|
|
|
// Save undo/redo buttons default actions
|
|
undoExecute = pagedownEditor.uiManager.buttons.undo.execute;
|
|
redoExecute = pagedownEditor.uiManager.buttons.redo.execute;
|
|
setUndoRedoButtonStates = pagedownEditor.uiManager.setUndoRedoButtonStates;
|
|
|
|
// Set temporary actions for undo/redo buttons
|
|
pagedownEditor.uiManager.buttons.undo.execute = function() {
|
|
if(model.canUndo) {
|
|
model.undo();
|
|
}
|
|
};
|
|
pagedownEditor.uiManager.buttons.redo.execute = function() {
|
|
if(model.canRedo) {
|
|
model.redo();
|
|
}
|
|
};
|
|
|
|
// Add event handler for model's UndoRedoStateChanged events
|
|
pagedownEditor.uiManager.setUndoRedoButtonStates = _.debounce(function() {
|
|
pagedownEditor.uiManager.setButtonState(pagedownEditor.uiManager.buttons.undo, model.canUndo);
|
|
pagedownEditor.uiManager.setButtonState(pagedownEditor.uiManager.buttons.redo, model.canRedo);
|
|
}, 10);
|
|
pagedownEditor.uiManager.setUndoRedoButtonStates();
|
|
model.addEventListener(gapi.drive.realtime.EventType.UNDO_REDO_STATE_CHANGED, function() {
|
|
pagedownEditor.uiManager.setUndoRedoButtonStates();
|
|
});
|
|
|
|
}, function(err) {
|
|
logger.error(err);
|
|
if(err.type == "token_refresh_required") {
|
|
googleHelper.refreshGdriveToken(accountId);
|
|
}
|
|
else if(err.type == "not_found") {
|
|
eventMgr.onError('"' + fileDesc.title + '" has been removed from ' + providerName + '.');
|
|
fileDesc.removeSyncLocation(syncAttributes);
|
|
eventMgr.onSyncRemoved(fileDesc, syncAttributes);
|
|
gdriveProvider.stopRealtimeSync();
|
|
}
|
|
else if(err.isFatal) {
|
|
eventMgr.onError('An error has forced real time synchronization to stop.');
|
|
gdriveProvider.stopRealtimeSync();
|
|
}
|
|
});
|
|
};
|
|
|
|
// Stop realtime synchronization
|
|
gdriveProvider.stopRealtimeSync = function() {
|
|
logger.log("Stopping Google Drive realtime synchronization");
|
|
if(realtimeContext !== undefined) {
|
|
realtimeContext.document && realtimeContext.document.close();
|
|
realtimeContext = undefined;
|
|
}
|
|
|
|
if(setUndoRedoButtonStates !== undefined) {
|
|
// Set back original undo/redo actions
|
|
pagedownEditor.uiManager.buttons.undo.execute = undoExecute;
|
|
pagedownEditor.uiManager.buttons.redo.execute = redoExecute;
|
|
pagedownEditor.uiManager.setUndoRedoButtonStates = setUndoRedoButtonStates;
|
|
pagedownEditor.uiManager.setUndoRedoButtonStates();
|
|
}
|
|
};
|
|
})();
|
|
// Initialize the AutoSync dialog fields
|
|
gdriveProvider.setAutosyncDialogConfig = function() {
|
|
var config = gdriveProvider.autosyncConfig;
|
|
utils.setInputChecked('#input-autosync-' + providerId + '-enabled', config.enabled);
|
|
utils.setInputValue('#input-autosync-' + providerId + '-parentid', config.parentId);
|
|
};
|
|
|
|
// Retrieve the AutoSync dialog fields
|
|
gdriveProvider.getAutosyncDialogConfig = function() {
|
|
var config = {};
|
|
config.enabled = utils.getInputChecked('#input-autosync-' + providerId + '-enabled');
|
|
config.parentId = utils.getInputTextValue('#input-autosync-' + providerId + '-parentid');
|
|
return config;
|
|
};
|
|
|
|
// Perform AutoSync
|
|
gdriveProvider.autosyncFile = function(title, content, discussionListJSON, config, callback) {
|
|
var parentId = config.parentId;
|
|
googleHelper.upload(undefined, parentId, title, content, undefined, undefined, accountId, function(error, result) {
|
|
if(error) {
|
|
callback(error);
|
|
return;
|
|
}
|
|
var syncAttributes = createSyncAttributes(result.id, result.etag, content, title, discussionListJSON);
|
|
callback(undefined, syncAttributes);
|
|
});
|
|
};
|
|
|
|
// Disable publish on optional multi-account
|
|
gdriveProvider.isPublishEnabled = settings.gdriveMultiAccount > accountIndex;
|
|
|
|
eventMgr.addListener("onReady", function() {
|
|
// Hide optional multi-account sub-menus
|
|
$('.submenu-sync-' + providerId).toggle(settings.gdriveMultiAccount > accountIndex);
|
|
|
|
// Create export dialog
|
|
var modalUploadElt = document.querySelector('.modal-upload-' + providerId);
|
|
modalUploadElt && (modalUploadElt.innerHTML = _.template(dialogExportGdriveHTML, {
|
|
providerId: providerId,
|
|
providerName: providerName
|
|
}));
|
|
|
|
// Create autosync dialog
|
|
var modalAutosyncElt = document.querySelector('.modal-autosync-' + providerId);
|
|
modalAutosyncElt && (modalAutosyncElt.innerHTML = _.template(dialogAutoSyncGdriveHTML, {
|
|
providerId: providerId,
|
|
providerName: providerName
|
|
}));
|
|
|
|
// Choose folder button in export modal
|
|
$('.action-export-' + providerId + '-choose-folder').click(function() {
|
|
googleHelper.picker(function(error, docs) {
|
|
if(error || docs.length === 0) {
|
|
return;
|
|
}
|
|
// Open export dialog
|
|
$(".modal-upload-" + providerId).modal();
|
|
// Set parent ID
|
|
utils.setInputValue('#input-sync-export-' + providerId + '-parentid', docs[0].id);
|
|
}, 'folder', accountId);
|
|
});
|
|
|
|
// Choose folder button in autosync modal
|
|
$('.action-autosync-' + providerId + '-choose-folder').click(function() {
|
|
googleHelper.picker(function(error, docs) {
|
|
if(error || docs.length === 0) {
|
|
return;
|
|
}
|
|
// Open export dialog
|
|
$(".modal-autosync-" + providerId).modal();
|
|
// Set parent ID
|
|
utils.setInputValue('#input-autosync-' + providerId + '-parentid', docs[0].id);
|
|
}, 'folder', accountId);
|
|
});
|
|
|
|
// On export, disable file ID input if realtime is checked
|
|
var $realtimeCheckboxElt = $('#input-sync-export-' + providerId + '-realtime');
|
|
var $fileIdInputElt = $('#input-sync-export-' + providerId + '-fileid');
|
|
$('#input-sync-export-' + providerId + '-realtime').change(function() {
|
|
$fileIdInputElt.prop('disabled', $realtimeCheckboxElt.prop('checked'));
|
|
});
|
|
|
|
// Skip gdrive action if provider is not enabled in the settings
|
|
if(accountIndex >= settings.gdriveMultiAccount) {
|
|
return;
|
|
}
|
|
var state = utils.retrieveIgnoreError(providerId + ".state");
|
|
var userId = storage[accountId + '.userId'];
|
|
if(state === undefined || (userId && state.userId != userId)) {
|
|
return;
|
|
}
|
|
storage.removeItem(providerId + ".state");
|
|
if(state.action == "create") {
|
|
googleHelper.upload(undefined, state.folderId, constants.GDRIVE_DEFAULT_FILE_TITLE, settings.defaultContent, undefined, undefined, accountId, function(error, file) {
|
|
if(error) {
|
|
return;
|
|
}
|
|
var syncAttributes = createSyncAttributes(file.id, file.etag, file.content, file.title);
|
|
var syncLocations = {};
|
|
syncLocations[syncAttributes.syncIndex] = syncAttributes;
|
|
var fileDesc = fileMgr.createFile(file.title, file.content, undefined, syncLocations);
|
|
fileMgr.selectFile(fileDesc);
|
|
eventMgr.onMessage('"' + file.title + '" created successfully on ' + providerName + '.');
|
|
});
|
|
}
|
|
else if(state.action == "open") {
|
|
var importIds = [];
|
|
_.each(state.ids, function(id) {
|
|
var syncIndex = createSyncIndex(id);
|
|
var fileDesc = fileMgr.getFileFromSyncIndex(syncIndex);
|
|
if(fileDesc !== undefined) {
|
|
fileDesc !== fileMgr.currentFile && fileMgr.selectFile(fileDesc);
|
|
}
|
|
else {
|
|
importIds.push(id);
|
|
}
|
|
});
|
|
importFilesFromIds(importIds);
|
|
}
|
|
});
|
|
|
|
return gdriveProvider;
|
|
};
|
|
});
|