Stackedit/js/file-manager.js

477 lines
15 KiB
JavaScript
Raw Normal View History

2013-04-10 18:14:59 +00:00
define(["jquery", "google-helper", "dropbox-helper", "synchronizer", "publisher"],
function($, googleHelper, dropboxHelper, synchronizer, publisher) {
2013-04-02 18:42:47 +00:00
var fileManager = {};
2013-04-10 18:14:59 +00:00
// Dependencies
var core = undefined;
2013-04-02 18:42:47 +00:00
// Caution: this function recreate the editor (reset undo operations)
var fileDescList = [];
fileManager.selectFile = function(fileIndex) {
// If no file create one
if (localStorage["file.list"].length === 1) {
fileIndex = this.createFile();
}
if(fileIndex !== undefined) {
2013-04-10 18:14:59 +00:00
// Since we are going to modify current file
core.checkWindowUnique();
2013-04-02 18:42:47 +00:00
localStorage["file.current"] = fileIndex;
}
// Update the file titles
2013-04-10 23:13:31 +00:00
fileManager.updateFileTitles();
2013-04-05 23:59:59 +00:00
refreshManageSync();
2013-04-10 23:13:31 +00:00
publisher.notifyCurrentFile(localStorage["file.current"]);
2013-04-02 18:42:47 +00:00
// Recreate the editor
2013-04-10 18:14:59 +00:00
fileIndex = localStorage["file.current"];
2013-04-02 18:42:47 +00:00
$("#wmd-input").val(localStorage[fileIndex + ".content"]);
core.createEditor(function() {
fileManager.saveFile();
});
};
fileManager.createFile = function(title, content, syncIndexes) {
content = content || "";
syncIndexes = syncIndexes || [];
if (!title) {
// Create a file title
title = DEFAULT_FILE_TITLE;
function exists(title) {
for ( var i = 0; i < fileDescList.length; i++) {
if(fileDescList[i].title == title) {
return true;
}
}
}
var indicator = 2;
while(exists(title)) {
title = DEFAULT_FILE_TITLE + indicator++;
}
}
// Create the fileIndex
var fileCounter = parseInt(localStorage["file.counter"]);
var fileIndex = "file." + fileCounter;
// Create the file in the localStorage
localStorage[fileIndex + ".content"] = content;
localStorage[fileIndex + ".title"] = title;
var sync = ";";
for(var i=0; i<syncIndexes.length; i++) {
sync += syncIndexes[i] + ";";
}
localStorage[fileIndex + ".sync"] = sync;
2013-04-09 07:58:06 +00:00
localStorage[fileIndex + ".publish"] = ";";
2013-04-02 18:42:47 +00:00
localStorage["file.counter"] = fileCounter + 1;
localStorage["file.list"] += fileIndex + ";";
return fileIndex;
};
fileManager.deleteFile = function(fileIndex) {
var fileIndexCurrent = localStorage["file.current"];
fileIndex = fileIndex || fileIndexCurrent;
if(fileIndex == fileIndexCurrent) {
2013-04-10 18:14:59 +00:00
// Since we are going to modify current file
core.checkWindowUnique();
2013-04-02 18:42:47 +00:00
localStorage.removeItem("file.current");
}
// Remove synchronized locations
var fileSyncIndexList = localStorage[fileIndex + ".sync"].split(";");
for ( var i = 1; i < fileSyncIndexList.length - 1; i++) {
var fileSyncIndex = fileSyncIndexList[i];
fileManager.removeSync(fileSyncIndex);
}
localStorage.removeItem(fileIndex + ".sync");
localStorage["file.list"] = localStorage["file.list"].replace(";"
+ fileIndex + ";", ";");
localStorage.removeItem(fileIndex + ".title");
localStorage.removeItem(fileIndex + ".content");
};
fileManager.saveFile = function() {
var content = $("#wmd-input").val();
var fileIndex = localStorage["file.current"];
localStorage[fileIndex + ".content"] = content;
2013-04-10 18:14:59 +00:00
synchronizer.notifyChange(fileIndex);
2013-04-02 18:42:47 +00:00
};
fileManager.updateFileTitles = function() {
fileDescList = [];
$("#file-selector").empty();
var fileIndexList = localStorage["file.list"].split(";");
for ( var i = 1; i < fileIndexList.length - 1; i++) {
var fileIndex = fileIndexList[i];
var title = localStorage[fileIndex + ".title"];
fileDescList.push({ index : fileIndex, title : title });
}
fileDescList.sort(function(a, b) {
if (a.title.toLowerCase() < b.title.toLowerCase())
return -1;
if (a.title.toLowerCase() > b.title.toLowerCase())
return 1;
return 0;
});
var fileIndex = localStorage["file.current"];
// If no default file take first one
if (!fileIndex) {
2013-04-10 18:14:59 +00:00
// Since we are going to modify current file
core.checkWindowUnique();
2013-04-02 18:42:47 +00:00
fileIndex = fileDescList[0].index;
localStorage["file.current"] = fileIndex;
}
var useGoogleDrive = false;
2013-04-07 15:22:13 +00:00
var useDropbox = false;
2013-04-02 18:42:47 +00:00
function composeTitle(fileIndex) {
2013-04-07 15:22:13 +00:00
var result = " " + localStorage[fileIndex + ".title"];
2013-04-02 18:42:47 +00:00
var sync = localStorage[fileIndex + ".sync"];
2013-04-07 15:22:13 +00:00
if (sync.indexOf(";" + SYNC_PROVIDER_DROPBOX) !== -1) {
useDropbox = true;
result = '<i class="icon-dropbox"></i>' + result;
}
2013-04-02 18:42:47 +00:00
if (sync.indexOf(";" + SYNC_PROVIDER_GDRIVE) !== -1) {
useGoogleDrive = true;
2013-04-07 15:22:13 +00:00
result = '<i class="icon-gdrive"></i>' + result;
2013-04-02 18:42:47 +00:00
}
return result;
}
// Update the file title
var title = localStorage[fileIndex + ".title"];
document.title = "StackEdit - " + title;
$("#file-title").html(composeTitle(fileIndex));
$(".file-title").text(title);
$("#file-title-input").val(title);
// Update the file selector
$("#file-selector").empty();
for ( var i = 0; i < fileDescList.length; i++) {
var fileDesc = fileDescList[i];
var a = $("<a>").html(composeTitle(fileDesc.index));
var li = $("<li>").append(a);
if (fileDesc.index == fileIndex) {
li.addClass("disabled");
} else {
a.prop("href", "#").click((function(fileIndex) {
return function() {
2013-04-10 18:14:59 +00:00
// Since we are going to modify current file
core.checkWindowUnique();
2013-04-02 18:42:47 +00:00
localStorage["file.current"] = fileIndex;
fileManager.selectFile();
};
})(fileDesc.index));
}
$("#file-selector").append(li);
}
2013-04-03 22:52:29 +00:00
synchronizer.useGoogleDrive = useGoogleDrive;
2013-04-07 15:22:13 +00:00
synchronizer.useDropbox = useDropbox;
2013-04-02 18:42:47 +00:00
};
// Remove a synchronized location
fileManager.removeSync = function(fileSyncIndex) {
var fileIndexCurrent = localStorage["file.current"];
var fileIndex = this.getFileIndexFromSync(fileSyncIndex);
if(fileIndex !== undefined) {
localStorage[fileIndex + ".sync"] = localStorage[fileIndex + ".sync"].replace(";"
+ fileSyncIndex + ";", ";");
if(fileIndex == fileIndexCurrent) {
refreshManageSync();
}
}
2013-04-09 07:58:06 +00:00
// Remove ETAG, version, CRCs (if any)
2013-04-02 18:42:47 +00:00
localStorage.removeItem(fileSyncIndex + ".etag");
2013-04-07 15:22:13 +00:00
localStorage.removeItem(fileSyncIndex + ".version");
2013-04-09 07:58:06 +00:00
localStorage.removeItem(fileSyncIndex + ".contentCRC");
localStorage.removeItem(fileSyncIndex + ".titleCRC");
2013-04-02 18:42:47 +00:00
};
// Look for local file associated to a synchronized location
fileManager.getFileIndexFromSync = function(fileSyncIndex) {
var fileIndex = undefined;
var fileIndexList = localStorage["file.list"].split(";");
for ( var i = 1; i < fileIndexList.length - 1; i++) {
var tempFileIndex = fileIndexList[i];
var sync = localStorage[tempFileIndex + ".sync"];
if (sync.indexOf(";" + fileSyncIndex + ";") !== -1) {
fileIndex = tempFileIndex;
break;
}
}
return fileIndex;
};
2013-04-09 07:58:06 +00:00
function uploadGdrive(fileId, folderId) {
2013-04-02 18:42:47 +00:00
var fileIndex = localStorage["file.current"];
var content = localStorage[fileIndex + ".content"];
var title = localStorage[fileIndex + ".title"];
2013-04-09 07:58:06 +00:00
googleHelper.upload(fileId, folderId, title, content, function(fileSyncIndex) {
2013-04-03 22:52:29 +00:00
if (fileSyncIndex === undefined) {
return;
2013-04-02 18:42:47 +00:00
}
2013-04-09 07:58:06 +00:00
var contentCRC = core.crc32(content);
localStorage[fileSyncIndex + ".contentCRC"] = contentCRC;
var titleCRC = core.crc32(title);
localStorage[fileSyncIndex + ".titleCRC"] = titleCRC;
2013-04-03 22:52:29 +00:00
localStorage[fileIndex + ".sync"] += fileSyncIndex + ";";
refreshManageSync();
fileManager.updateFileTitles();
core.showMessage('"' + title
+ '" will now be synchronized on Google Drive.');
2013-04-02 18:42:47 +00:00
});
}
2013-04-03 22:52:29 +00:00
2013-04-09 07:58:06 +00:00
function manualGdrive(fileId) {
if(!fileId) {
return;
}
// Check that file is not synchronized with an other one
var fileSyncIndex = SYNC_PROVIDER_GDRIVE + fileId;
var fileIndex = fileManager.getFileIndexFromSync(fileSyncIndex);
if(fileIndex !== undefined) {
var title = localStorage[fileIndex + ".title"];
core.showError('File ID is already synchronized with "' + title + '"');
return;
}
uploadGdrive(fileId);
}
2013-04-05 23:59:59 +00:00
function importGdrive(ids) {
if(ids === undefined) {
return;
}
var importIds = [];
for(var i=0; i<ids.length; i++) {
var fileId = ids[i];
var fileSyncIndex = SYNC_PROVIDER_GDRIVE + fileId;
var fileIndex = fileManager.getFileIndexFromSync(fileSyncIndex);
if(fileIndex !== undefined) {
var title = localStorage[fileIndex + ".title"];
2013-04-06 01:07:45 +00:00
core.showError('"' + title + '" was already imported');
2013-04-05 23:59:59 +00:00
continue;
}
importIds.push(fileId);
}
2013-04-09 07:58:06 +00:00
googleHelper.importFiles(importIds);
2013-04-02 18:42:47 +00:00
}
2013-04-07 15:22:13 +00:00
function manualDropbox(path) {
if(!path) {
return;
}
2013-04-09 07:58:06 +00:00
path = dropboxHelper.checkPath(path);
2013-04-07 15:22:13 +00:00
if(path === undefined) {
return;
}
// Check that file is not synchronized with an other one
var fileSyncIndex = SYNC_PROVIDER_DROPBOX + encodeURIComponent(path.toLowerCase());
var fileIndex = fileManager.getFileIndexFromSync(fileSyncIndex);
if(fileIndex !== undefined) {
var title = localStorage[fileIndex + ".title"];
core.showError('Path "' + path + '" is already synchronized with "' + title + '"');
return;
}
var fileIndex = localStorage["file.current"];
var content = localStorage[fileIndex + ".content"];
var title = localStorage[fileIndex + ".title"];
2013-04-09 07:58:06 +00:00
dropboxHelper.upload(path, content, function(fileSyncIndex) {
2013-04-07 15:22:13 +00:00
if (fileSyncIndex === undefined) {
return;
}
2013-04-09 07:58:06 +00:00
var contentCRC = core.crc32(content);
localStorage[fileSyncIndex + ".contentCRC"] = contentCRC;
2013-04-07 15:22:13 +00:00
localStorage[fileIndex + ".sync"] += fileSyncIndex + ";";
refreshManageSync();
fileManager.updateFileTitles();
core.showMessage('"' + title
+ '" will now be synchronized on Dropbox.');
});
}
function importDropbox(paths) {
if(paths === undefined) {
return;
}
var importPaths = [];
for(var i=0; i<paths.length; i++) {
var filePath = paths[i];
var fileSyncIndex = SYNC_PROVIDER_DROPBOX + encodeURIComponent(filePath.toLowerCase());
var fileIndex = fileManager.getFileIndexFromSync(fileSyncIndex);
if(fileIndex !== undefined) {
var title = localStorage[fileIndex + ".title"];
core.showError('"' + title + '" was already imported');
continue;
}
importPaths.push(filePath);
}
2013-04-09 07:58:06 +00:00
dropboxHelper.importFiles(importPaths);
2013-04-07 15:22:13 +00:00
}
2013-04-02 18:42:47 +00:00
function refreshManageSync() {
var fileIndex = localStorage["file.current"];
var fileSyncIndexList = localStorage[fileIndex + ".sync"].split(";");
$(".msg-no-sync, .msg-sync-list").addClass("hide");
$("#manage-sync-list .input-append").remove();
if (fileSyncIndexList.length > 2) {
$(".msg-sync-list").removeClass("hide");
} else {
$(".msg-no-sync").removeClass("hide");
}
for ( var i = 1; i < fileSyncIndexList.length - 1; i++) {
var fileSyncIndex = fileSyncIndexList[i];
(function(fileSyncIndex) {
var line = $("<div>").addClass("input-prepend input-append");
if (fileSyncIndex.indexOf(SYNC_PROVIDER_GDRIVE) === 0) {
line.append($("<span>").addClass("add-on").html(
'<i class="icon-gdrive"></i>'));
line.append($("<input>").prop("type", "text").prop(
"disabled", true).addClass("span5").val(
2013-04-07 15:22:13 +00:00
fileSyncIndex.substring(SYNC_PROVIDER_GDRIVE.length)));
}
if (fileSyncIndex.indexOf(SYNC_PROVIDER_DROPBOX) === 0) {
line.append($("<span>").addClass("add-on").html(
'<i class="icon-dropbox"></i>'));
line.append($("<input>").prop("type", "text").prop(
"disabled", true).addClass("span5").val(
decodeURIComponent(fileSyncIndex.substring(SYNC_PROVIDER_DROPBOX.length))));
2013-04-02 18:42:47 +00:00
}
line.append($("<a>").addClass("btn").html(
'<i class="icon-trash"></i>').prop("title",
2013-04-07 15:22:13 +00:00
"Remove this location").click(function() {
2013-04-02 18:42:47 +00:00
fileManager.removeSync(fileSyncIndex);
fileManager.updateFileTitles();
}));
$("#manage-sync-list").append(line);
})(fileSyncIndex);
}
}
2013-04-10 23:13:31 +00:00
// Initialize the "New publication" dialog
var newPublishProvider = undefined;
function initNewPublish(provider, defaultPublishFormat) {
defaultPublishFormat = defaultPublishFormat || "markdown";
newPublishProvider = provider;
// Show/hide controls depending on provider
$('div[class*=" control-publish-"]').hide().filter(".control-publish-" + provider).show();
// Reset fields
core.resetModalInputs();
$("input:radio[name=radio-publish-format][value=" + defaultPublishFormat + "]").prop("checked", true);
// Open dialog box
$("#modal-publish").modal();
}
// Create a new publication
function newPublishBlogger(event) {
var blogUrl = core.getInputValue($("#input-publish-blogger-url"), event);
if(event.isPropagationStopped()) {
return;
}
googleHelper.getBlogByUrl(blogUrl, function(blog) {
console.log(blog);
});
}
2013-04-02 18:42:47 +00:00
2013-04-10 18:14:59 +00:00
fileManager.init = function(coreModule) {
core = coreModule;
fileManager.selectFile();
$(".action-create-file").click(function() {
var fileIndex = fileManager.createFile();
fileManager.selectFile(fileIndex);
$("#file-title").click();
});
$(".action-remove-file").click(function() {
fileManager.deleteFile();
fileManager.selectFile();
});
$("#file-title").click(function() {
$(this).hide();
$("#file-title-input").show().focus();
});
$("#file-title-input").blur(function() {
var title = $.trim($(this).val());
if (title) {
var fileIndexTitle = localStorage["file.current"] + ".title";
if (title != localStorage[fileIndexTitle]) {
localStorage[fileIndexTitle] = title;
fileManager.updateFileTitles();
fileManager.saveFile();
}
}
$(this).hide();
$("#file-title").show();
});
$(".action-download-md").click(
function() {
var content = $("#wmd-input").val();
var uriContent = "data:application/octet-stream;base64,"
+ core.encodeBase64(content);
window.open(uriContent, 'file');
});
$(".action-download-html").click(
function() {
var content = $("#wmd-preview").html();
var uriContent = "data:application/octet-stream;base64,"
+ core.encodeBase64(content);
window.open(uriContent, 'file');
});
2013-04-10 23:13:31 +00:00
// Synchronize actions
2013-04-10 18:14:59 +00:00
$(".action-upload-gdrive-root").click(function() {
uploadGdrive();
});
$(".action-upload-gdrive-select").click(function() {
// This action is not available because picker does not support
// folder selection
googleHelper.picker(function(ids) {
if(ids !== undefined && ids.length !== 0) {
uploadGdrive(undefined, ids[0]);
}
}, true);
});
$(".action-download-gdrive").click(function() {
googleHelper.picker(importGdrive);
});
$(".action-manual-gdrive").click(function(event) {
var fileId = core.getInputValue($("#manual-gdrive-fileid"), event);
manualGdrive(fileId);
});
$(".action-download-dropbox").click(function() {
dropboxHelper.picker(importDropbox);
});
$(".action-upload-dropbox").click(function(event) {
var path = core.getInputValue($("#upload-dropbox-path"), event);
manualDropbox(path);
});
$(".action-manual-dropbox").click(function(event) {
var path = core.getInputValue($("#manual-dropbox-path"), event);
manualDropbox(path);
});
2013-04-10 23:13:31 +00:00
// Publish actions
$(".action-publish-github").click(function() {
initNewPublish("github");
});
$(".action-publish-blogger").click(function() {
initNewPublish("blogger", "html");
});
$(".action-process-publish").click(function(e) {
if(newPublishProvider == "blogger") {
newPublishBlogger(e);
}
});
2013-04-10 18:14:59 +00:00
};
2013-04-02 18:42:47 +00:00
return fileManager;
});