2013-04-14 13:24:29 +00:00
|
|
|
define(["jquery", "github-provider", "underscore"], function($) {
|
2013-04-09 07:58:06 +00:00
|
|
|
|
|
|
|
// Dependencies
|
2013-04-10 18:14:59 +00:00
|
|
|
var core = undefined;
|
2013-04-09 07:58:06 +00:00
|
|
|
var fileManager = undefined;
|
|
|
|
|
|
|
|
var publisher = {};
|
|
|
|
|
2013-04-14 13:24:29 +00:00
|
|
|
// Create a map with providerName: providerObject
|
|
|
|
var providerMap = _.chain(arguments)
|
|
|
|
.map(function(argument) {
|
|
|
|
return argument && argument.providerType & PROVIDER_TYPE_PUBLISH_FLAG && [argument.providerId, argument];
|
|
|
|
}).compact().object().value();
|
|
|
|
|
2013-04-10 23:13:31 +00:00
|
|
|
// Used to know if the current file has publications
|
|
|
|
var hasPublications = false;
|
2013-04-09 07:58:06 +00:00
|
|
|
|
2013-04-10 23:13:31 +00:00
|
|
|
// Allows external modules to update hasPublications flag
|
2013-04-14 13:24:29 +00:00
|
|
|
publisher.notifyPublish = function() {
|
2013-04-13 18:11:54 +00:00
|
|
|
var fileIndex = fileManager.getCurrentFileIndex();
|
2013-04-10 18:14:59 +00:00
|
|
|
|
2013-04-10 23:13:31 +00:00
|
|
|
// Check that file has publications
|
|
|
|
if(localStorage[fileIndex + ".publish"].length === 1) {
|
|
|
|
hasPublications = false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
hasPublications = true;
|
|
|
|
}
|
|
|
|
publisher.updatePublishButton();
|
2013-04-14 13:24:29 +00:00
|
|
|
publisher.refreshManagePublish();
|
2013-04-10 23:13:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Used to enable/disable the publish button
|
|
|
|
publisher.updatePublishButton = function() {
|
|
|
|
if(publishRunning === true || hasPublications === false || core.isOffline) {
|
|
|
|
$(".action-force-publish").addClass("disabled");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$(".action-force-publish").removeClass("disabled");
|
|
|
|
}
|
|
|
|
};
|
2013-04-09 07:58:06 +00:00
|
|
|
|
2013-04-14 13:24:29 +00:00
|
|
|
// Apply template to the current document
|
|
|
|
publisher.applyTemplate = function() {
|
|
|
|
var fileIndex = fileManager.getCurrentFileIndex();
|
|
|
|
return _.template(core.settings.template, {
|
|
|
|
documentTitle: localStorage[fileIndex + ".title"],
|
|
|
|
documentMarkdown: $("#wmd-input").val(),
|
|
|
|
documentHTML: $("#wmd-preview").html()
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-04-11 22:38:41 +00:00
|
|
|
// Used to get content to publish
|
2013-04-13 18:11:54 +00:00
|
|
|
function getPublishContent(publishObject) {
|
2013-04-11 22:38:41 +00:00
|
|
|
if(publishObject.format === undefined) {
|
|
|
|
publishObject.format = $("input:radio[name=radio-publish-format]:checked").prop("value");
|
|
|
|
}
|
|
|
|
if(publishObject.format == "markdown") {
|
|
|
|
return $("#wmd-input").val();
|
|
|
|
}
|
2013-04-14 13:24:29 +00:00
|
|
|
else if(publishObject.format == "html") {
|
|
|
|
return $("#wmd-preview").html();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return publisher.applyTemplate();
|
|
|
|
}
|
2013-04-13 18:11:54 +00:00
|
|
|
}
|
2013-04-11 22:38:41 +00:00
|
|
|
|
|
|
|
// Recursive function to publish a file on multiple locations
|
|
|
|
var publishIndexList = [];
|
2013-04-14 13:24:29 +00:00
|
|
|
var publishTitle = undefined;
|
|
|
|
function publishLocation(callback, errorFlag) {
|
2013-04-11 22:38:41 +00:00
|
|
|
|
|
|
|
// No more publish location for this document
|
|
|
|
if (publishIndexList.length === 0) {
|
2013-04-14 13:24:29 +00:00
|
|
|
callback(errorFlag);
|
2013-04-11 22:38:41 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dequeue a synchronized location
|
|
|
|
var publishIndex = publishIndexList.pop();
|
|
|
|
var publishObject = JSON.parse(localStorage[publishIndex]);
|
2013-04-13 18:11:54 +00:00
|
|
|
var content = getPublishContent(publishObject);
|
2013-04-14 13:24:29 +00:00
|
|
|
|
|
|
|
// Call the provider
|
|
|
|
var provider = providerMap[publishObject.provider];
|
|
|
|
provider.publish(publishObject, publishTitle, content, function(error) {
|
|
|
|
publishLocation(callback, errorFlag);
|
|
|
|
});
|
2013-04-11 22:38:41 +00:00
|
|
|
}
|
|
|
|
|
2013-04-10 23:13:31 +00:00
|
|
|
var publishRunning = false;
|
2013-04-11 22:38:41 +00:00
|
|
|
publisher.publish = function() {
|
|
|
|
// If publish is running or offline
|
|
|
|
if(publishRunning === true || core.isOffline) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
publishRunning = true;
|
|
|
|
publisher.updatePublishButton();
|
2013-04-13 18:11:54 +00:00
|
|
|
var fileIndex = fileManager.getCurrentFileIndex();
|
2013-04-14 13:24:29 +00:00
|
|
|
publishTitle = localStorage[fileIndex + ".title"];
|
|
|
|
publishIndexList = _.compact(localStorage[fileIndex + ".publish"].split(";"));
|
|
|
|
publishLocation(function(errorFlag) {
|
2013-04-11 22:38:41 +00:00
|
|
|
publishRunning = false;
|
|
|
|
publisher.updatePublishButton();
|
2013-04-14 13:24:29 +00:00
|
|
|
if(errorFlag === undefined) {
|
2013-04-11 22:38:41 +00:00
|
|
|
core.showMessage('"' + title + '" successfully published.');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
2013-04-13 18:11:54 +00:00
|
|
|
|
2013-04-14 13:24:29 +00:00
|
|
|
// Generate a publishIndex associated to a fileIndex and store a publishObject
|
|
|
|
function createPublishIndex(fileIndex, publishObject) {
|
|
|
|
var publishIndex = undefined;
|
|
|
|
do {
|
|
|
|
publishIndex = "publish." + core.randomString();
|
|
|
|
} while(_.has(localStorage, publishIndex));
|
|
|
|
localStorage[publishIndex] = JSON.stringify(publishObject);
|
|
|
|
localStorage[fileIndex + ".publish"] += publishIndex + ";";
|
|
|
|
}
|
|
|
|
|
2013-04-13 18:11:54 +00:00
|
|
|
// Add a new publish location to a local document
|
2013-04-14 13:24:29 +00:00
|
|
|
publisher.newLocation = function(publishObject) {
|
2013-04-13 18:11:54 +00:00
|
|
|
var fileIndex = fileManager.getCurrentFileIndex();
|
|
|
|
var title = localStorage[fileIndex + ".title"];
|
|
|
|
var content = getPublishContent(publishObject);
|
|
|
|
var provider = providerMap[publishObject.provider];
|
2013-04-14 13:24:29 +00:00
|
|
|
provider.publish(publishObject, title, content, function(error) {
|
|
|
|
if(error === undefined) {
|
|
|
|
createPublishIndex(fileIndex, publishObject);
|
|
|
|
publisher.notifyPublish();
|
|
|
|
core.showMessage('"' + title
|
|
|
|
+ '" will now be published on GitHub.');
|
|
|
|
}
|
|
|
|
});
|
2013-04-13 18:11:54 +00:00
|
|
|
};
|
2013-04-14 13:24:29 +00:00
|
|
|
|
|
|
|
// Used to populate the "Manage publication" dialog
|
|
|
|
var lineTemplate = ['<div class="input-prepend input-append">',
|
|
|
|
'<span class="add-on" title="<%= provider.providerName %>">',
|
|
|
|
'<i class="icon-<%= provider.providerId %>"></i></span>',
|
|
|
|
'<input class="span5" type="text" value="<%= publishDesc %>" disabled />',
|
|
|
|
'</div>'].join("");
|
|
|
|
var removeButtonTemplate = '<a class="btn" title="Remove this location"><i class="icon-trash"></i></a>';
|
|
|
|
publisher.refreshManagePublish = function() {
|
|
|
|
var fileIndex = fileManager.getCurrentFileIndex();
|
|
|
|
var publishIndexList = _.compact(localStorage[fileIndex + ".publish"].split(";"));
|
|
|
|
$(".msg-no-publish, .msg-publish-list").addClass("hide");
|
|
|
|
$("#manage-publish-list .input-append").remove();
|
|
|
|
if (publishIndexList.length > 0) {
|
|
|
|
$(".msg-publish-list").removeClass("hide");
|
|
|
|
} else {
|
|
|
|
$(".msg-no-publish").removeClass("hide");
|
2013-04-13 18:11:54 +00:00
|
|
|
}
|
2013-04-14 13:24:29 +00:00
|
|
|
_.each(publishIndexList, function(publishIndex) {
|
|
|
|
var serializedObject = localStorage[publishIndex];
|
|
|
|
var publishObject = JSON.parse(serializedObject);
|
|
|
|
var publishDesc = JSON.stringify(_.omit(publishObject, 'provider')).replace(/{|}|"/g, "");
|
|
|
|
lineElement = $(_.template(lineTemplate, {
|
|
|
|
provider: providerMap[publishObject.provider],
|
|
|
|
publishDesc: publishDesc
|
|
|
|
}));
|
|
|
|
lineElement.append($(removeButtonTemplate).click(function() {
|
|
|
|
fileManager.removePublish(publishIndex);
|
|
|
|
}));
|
|
|
|
$("#manage-publish-list").append(lineElement);
|
|
|
|
});
|
|
|
|
};
|
2013-04-13 18:11:54 +00:00
|
|
|
|
2013-04-10 18:14:59 +00:00
|
|
|
publisher.init = function(coreModule, fileManagerModule) {
|
|
|
|
core = coreModule;
|
2013-04-09 07:58:06 +00:00
|
|
|
fileManager = fileManagerModule;
|
2013-04-13 18:11:54 +00:00
|
|
|
|
|
|
|
// Init providers
|
|
|
|
_.each(providerMap, function(provider) {
|
2013-04-14 13:24:29 +00:00
|
|
|
provider.init(core);
|
2013-04-13 18:11:54 +00:00
|
|
|
});
|
|
|
|
|
2013-04-11 22:38:41 +00:00
|
|
|
$(".action-force-publish").click(function() {
|
|
|
|
if(!$(this).hasClass("disabled")) {
|
|
|
|
publisher.publish();
|
|
|
|
}
|
|
|
|
});
|
2013-04-14 16:58:35 +00:00
|
|
|
|
|
|
|
$(".tooltip-template").tooltip({
|
|
|
|
title: ['Variables:\n',
|
|
|
|
'documentTitle: the document title'
|
|
|
|
].join("")
|
|
|
|
});
|
2013-04-09 07:58:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
return publisher;
|
|
|
|
});
|