Stackedit/public/res/sharing.js

91 lines
2.4 KiB
JavaScript
Raw Normal View History

2013-05-27 19:45:33 +00:00
define([
2014-09-25 23:25:01 +00:00
"jquery",
"underscore",
"constants",
"utils",
"eventMgr",
"fileMgr",
"classes/AsyncTask",
"classes/Provider",
"providers/downloadProvider",
"providers/gistProvider"
2013-11-05 23:03:38 +00:00
], function($, _, constants, utils, eventMgr, fileMgr, AsyncTask, Provider) {
2013-05-02 00:03:34 +00:00
2014-09-25 23:25:01 +00:00
var sharing = {};
2013-05-29 19:55:23 +00:00
2014-09-25 23:25:01 +00:00
// Create a map with providerId: providerModule
var providerMap = _.chain(arguments).map(function(argument) {
return argument instanceof Provider && [
argument.providerId,
argument
];
}).compact().object().value();
2013-05-29 19:55:23 +00:00
2014-09-25 23:25:01 +00:00
// Listen to offline status changes
var isOffline = false;
eventMgr.addListener("onOfflineChanged", function(isOfflineParam) {
isOffline = isOfflineParam;
});
2013-08-04 00:53:46 +00:00
2014-09-25 23:25:01 +00:00
sharing.getViewerLink = function(attributes) {
var provider = providerMap[attributes.provider.providerId];
// Don't create link if provider is not compatible for sharing
if(provider === undefined ||
// Or document is not published in markdown format
attributes.format != "markdown") {
return;
}
var url = [
constants.MAIN_URL,
'viewer#!provider=',
provider.providerId
];
_.each(provider.sharingAttributes, function(attributeName) {
url.push('&');
url.push(attributeName);
url.push('=');
url.push(encodeURIComponent(attributes[attributeName]));
});
attributes.sharingLink = url.join('');
callback();
};
2013-05-29 19:55:23 +00:00
2014-09-25 23:25:01 +00:00
eventMgr.addListener("onReady", function() {
if(window.viewerMode === false) {
return;
}
// Check parameters to see if we have to download a shared document
var providerId = utils.getURLParameter("provider");
if(providerId === undefined) {
providerId = "download";
}
var provider = providerMap[providerId];
if(provider === undefined) {
return;
}
var importParameters = {};
_.each(provider.sharingAttributes, function(attributeName) {
var parameter = utils.getURLParameter(attributeName);
if(!parameter) {
importParameters = undefined;
return;
}
importParameters[attributeName] = parameter;
});
if(importParameters === undefined) {
return;
}
$("#preview-contents, .navbar .file-title-navbar").hide();
provider.importPublic(importParameters, function(error, title, content) {
$("#preview-contents, .navbar .file-title-navbar").show();
if(error) {
return;
}
var fileDesc = fileMgr.createFile(title, content, undefined, undefined, true);
fileMgr.selectFile(fileDesc);
});
});
2013-05-29 19:55:23 +00:00
2014-09-25 23:25:01 +00:00
return sharing;
2014-03-28 00:49:49 +00:00
});