2013-05-27 19:45:33 +00:00
|
|
|
define([
|
|
|
|
"utils",
|
2013-06-22 23:48:57 +00:00
|
|
|
"classes/Provider",
|
2013-06-10 21:22:32 +00:00
|
|
|
"helpers/tumblrHelper"
|
2013-06-22 23:48:57 +00:00
|
|
|
], function(utils, Provider, tumblrHelper) {
|
2013-04-28 22:33:17 +00:00
|
|
|
|
2013-06-22 23:48:57 +00:00
|
|
|
var tumblrProvider = new Provider("tumblr", "Tumblr");
|
|
|
|
tumblrProvider.publishPreferencesInputIds = [
|
|
|
|
"tumblr-hostname"
|
|
|
|
];
|
2013-05-29 19:55:23 +00:00
|
|
|
|
|
|
|
tumblrProvider.publish = function(publishAttributes, title, content, callback) {
|
|
|
|
tumblrHelper.upload(publishAttributes.blogHostname, publishAttributes.postId, publishAttributes.tags, publishAttributes.format == "markdown" ? "markdown" : "html", title, content, function(error, postId) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
publishAttributes.postId = postId;
|
|
|
|
callback();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
tumblrProvider.newPublishAttributes = function(event) {
|
|
|
|
var publishAttributes = {};
|
|
|
|
publishAttributes.blogHostname = utils.getInputTextValue("#input-publish-tumblr-hostname", event, /^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9])$/);
|
|
|
|
publishAttributes.postId = utils.getInputTextValue("#input-publish-postid");
|
|
|
|
publishAttributes.tags = utils.getInputTextValue("#input-publish-tags");
|
|
|
|
if(event.isPropagationStopped()) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
return publishAttributes;
|
|
|
|
};
|
|
|
|
|
|
|
|
return tumblrProvider;
|
2013-04-28 22:33:17 +00:00
|
|
|
});
|