/**
* Copyright (C) 2005-2016 Alfresco Software Limited.
*
* This file is part of Alfresco
*
* Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Alfresco is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* This service handles requests to publicly Share documents and to remove previously shared documents
* from being publicly accessible.
*
* @module alfresco/services/QuickShareService
* @extends module:alfresco/services/BaseService
* @mixes module:alfresco/core/CoreXhr
* @mixes module:alfresco/services/_QuickShareServiceTopicMixin
* @author Dave Draper
*/
define(["dojo/_base/declare",
"alfresco/services/BaseService",
"alfresco/core/CoreXhr",
"alfresco/services/_QuickShareServiceTopicMixin",
"dojo/_base/lang",
"service/constants/Default"],
function(declare, BaseService, CoreXhr, _QuickShareServiceTopicMixin, lang, AlfConstants) {
return declare([BaseService, CoreXhr, _QuickShareServiceTopicMixin], {
/**
* Sets up the subscriptions for the QuickShareService
*
* @instance
* @since 1.0.32
*/
registerSubscriptions: function alfresco_services_QuickShareService__registerSubscriptions() {
this.alfSubscribe(this.addQuickShareTopic, lang.hitch(this, this.onAddQuickShare));
this.alfSubscribe(this.removeQuickShareTopic, lang.hitch(this, this.onRemoveQuickShare));
},
/**
* Returns a URL for quick sharing a node
*
* @instance
* @param {string} nodeRefUri The nodeRef URI fragment representation
*/
getAddQuickShareUrl: function alfresco_services_QuickShareService__getRatingsUrl(nodeRefUri) {
return AlfConstants.PROXY_URI + "api/internal/shared/share/" + nodeRefUri;
},
/**
* Returns a URL for removing the quick share of a node.
*
* @instance
* @param {string} shareId The id to of the share to remove
*/
getRemoveQuickShareUrl: function alfresco_services_QuickShareService__getRatingsUrl(shareId) {
return AlfConstants.PROXY_URI + "api/internal/shared/unshare/" + shareId;
},
/**
* Makes a request to quick share an node
*
* @instance
* @param {object} payload
*/
onAddQuickShare: function alfresco_services_QuickShareService__onAddRating(payload) {
/*jshint eqnull:true*/
var url = lang.getObject("node.jsNode.nodeRef.uri", false, payload);
if (url != null)
{
var alfTopic = (payload.alfResponseTopic != null) ? payload.alfResponseTopic : this.addQuickShareTopic;
url = this.getAddQuickShareUrl(url);
this.serviceXhr({url : url,
data: null,
method: "POST",
alfTopic: alfTopic});
}
},
/**
* Makes a request to removes a quick share
*
* @instance
* @param {object} payload
*/
onRemoveQuickShare: function alfresco_services_QuickShareService__onRemoveQuickShare(payload) {
/*jshint eqnull:true*/
var quickShareId = lang.getObject("node.jsNode.properties.qshare:sharedId", false, payload);
if (quickShareId != null)
{
var alfTopic = (payload.alfResponseTopic != null) ? payload.alfResponseTopic : this.removeQuickShareTopic;
var url = this.getRemoveQuickShareUrl(quickShareId);
this.serviceXhr({url : url,
data: null,
method: "DELETE",
alfTopic: alfTopic});
}
}
});
});