2013-10-28 19:22:06 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014
|
|
|
|
*
|
|
|
|
* This file is licensed under the Affero General Public License version 3
|
|
|
|
* or later.
|
|
|
|
*
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-05-28 16:39:29 +00:00
|
|
|
(function() {
|
|
|
|
if (!OCA.Sharing) {
|
|
|
|
OCA.Sharing = {};
|
|
|
|
}
|
|
|
|
OCA.Sharing.Util = {
|
2014-06-02 13:59:06 +00:00
|
|
|
initialize: function(fileActions) {
|
2014-05-28 16:39:29 +00:00
|
|
|
if (!_.isUndefined(OC.Share) && !_.isUndefined(OCA.Files)) {
|
|
|
|
// TODO: make a separate class for this or a hook or jQuery event ?
|
|
|
|
if (OCA.Files.FileList) {
|
|
|
|
var oldCreateRow = OCA.Files.FileList.prototype._createRow;
|
|
|
|
OCA.Files.FileList.prototype._createRow = function(fileData) {
|
|
|
|
var tr = oldCreateRow.apply(this, arguments);
|
|
|
|
if (fileData.shareOwner) {
|
|
|
|
tr.attr('data-share-owner', fileData.shareOwner);
|
|
|
|
// user should always be able to rename a mount point
|
|
|
|
if (fileData.isShareMountPoint) {
|
|
|
|
tr.attr('data-permissions', fileData.permissions | OC.PERMISSION_UPDATE);
|
|
|
|
tr.attr('data-reshare-permissions', fileData.permissions);
|
|
|
|
}
|
|
|
|
}
|
2014-06-02 13:59:06 +00:00
|
|
|
if (fileData.recipientsDisplayName) {
|
|
|
|
tr.attr('data-share-recipients', fileData.recipientsDisplayName);
|
|
|
|
}
|
2014-05-28 16:39:29 +00:00
|
|
|
return tr;
|
|
|
|
};
|
2014-05-20 11:37:58 +00:00
|
|
|
}
|
2013-10-28 19:22:06 +00:00
|
|
|
|
2014-05-28 16:39:29 +00:00
|
|
|
// use delegate to catch the case with multiple file lists
|
|
|
|
$('#content').delegate('#fileList', 'fileActionsReady',function(ev){
|
|
|
|
// if no share action exists because the admin disabled sharing for this user
|
|
|
|
// we create a share notification action to inform the user about files
|
|
|
|
// shared with him otherwise we just update the existing share action.
|
|
|
|
var fileList = ev.fileList;
|
|
|
|
var $fileList = $(this);
|
|
|
|
$fileList.find('[data-share-owner]').each(function() {
|
|
|
|
var $tr = $(this);
|
|
|
|
var permissions = $tr.data('permissions');
|
|
|
|
if(permissions & OC.PERMISSION_SHARE) {
|
|
|
|
OC.Share.markFileAsShared($tr, true);
|
|
|
|
} else {
|
|
|
|
// TODO: make this work like/with OC.Share.markFileAsShared()
|
|
|
|
var shareNotification = '<a class="action action-share-notification permanent"' +
|
|
|
|
' data-action="Share-Notification" href="#" original-title="">' +
|
|
|
|
' <img class="svg" src="' + OC.imagePath('core', 'actions/share') + '"></img>';
|
|
|
|
$tr.find('.fileactions').append(function() {
|
|
|
|
var owner = $(this).closest('tr').attr('data-share-owner');
|
|
|
|
var shareBy = t('files_sharing', 'Shared by {owner}', {owner: owner});
|
|
|
|
var $result = $(shareNotification + '<span> ' + shareBy + '</span></span>');
|
|
|
|
$result.on('click', function() {
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
return $result;
|
|
|
|
});
|
|
|
|
}
|
2014-05-23 09:16:22 +00:00
|
|
|
});
|
2014-01-30 13:47:00 +00:00
|
|
|
|
2014-05-28 16:39:29 +00:00
|
|
|
if (!OCA.Sharing.sharesLoaded){
|
|
|
|
OC.Share.loadIcons('file', fileList);
|
|
|
|
// assume that we got all shares, so switching directories
|
|
|
|
// will not invalidate that list
|
|
|
|
OCA.Sharing.sharesLoaded = true;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
OC.Share.updateIcons('file', fileList);
|
|
|
|
}
|
|
|
|
});
|
2013-08-08 11:50:04 +00:00
|
|
|
|
2014-06-02 13:59:06 +00:00
|
|
|
fileActions.register(
|
2014-05-28 16:39:29 +00:00
|
|
|
'all',
|
|
|
|
'Share',
|
|
|
|
OC.PERMISSION_SHARE,
|
|
|
|
OC.imagePath('core', 'actions/share'),
|
|
|
|
function(filename, context) {
|
2014-05-19 13:20:44 +00:00
|
|
|
|
2014-05-28 16:39:29 +00:00
|
|
|
var $tr = context.$file;
|
|
|
|
var itemType = 'file';
|
|
|
|
if ($tr.data('type') === 'dir') {
|
|
|
|
itemType = 'folder';
|
|
|
|
}
|
|
|
|
var possiblePermissions = $tr.data('reshare-permissions');
|
|
|
|
if (_.isUndefined(possiblePermissions)) {
|
|
|
|
possiblePermissions = $tr.data('permissions');
|
|
|
|
}
|
2014-05-26 18:32:24 +00:00
|
|
|
|
2014-05-28 16:39:29 +00:00
|
|
|
var appendTo = $tr.find('td.filename');
|
|
|
|
// Check if drop down is already visible for a different file
|
|
|
|
if (OC.Share.droppedDown) {
|
|
|
|
if ($tr.data('id') !== $('#dropdown').attr('data-item-source')) {
|
|
|
|
OC.Share.hideDropDown(function () {
|
|
|
|
$tr.addClass('mouseOver');
|
|
|
|
OC.Share.showDropDown(itemType, $tr.data('id'), appendTo, true, possiblePermissions, filename);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
OC.Share.hideDropDown();
|
|
|
|
}
|
|
|
|
} else {
|
2014-05-19 13:20:44 +00:00
|
|
|
$tr.addClass('mouseOver');
|
|
|
|
OC.Share.showDropDown(itemType, $tr.data('id'), appendTo, true, possiblePermissions, filename);
|
2014-05-28 16:39:29 +00:00
|
|
|
}
|
|
|
|
$('#dropdown').on('sharesChanged', function(ev) {
|
|
|
|
// note: we only update the data attribute because updateIcon()
|
|
|
|
// is called automatically after this event
|
|
|
|
var userShares = ev.itemShares[OC.Share.SHARE_TYPE_USER] || [];
|
|
|
|
var groupShares = ev.itemShares[OC.Share.SHARE_TYPE_GROUP] || [];
|
|
|
|
var recipients = _.union(userShares, groupShares);
|
|
|
|
// only update the recipients if they existed before
|
|
|
|
// (some file lists don't have them)
|
|
|
|
if (!_.isUndefined($tr.attr('data-share-recipients'))) {
|
|
|
|
// FIXME: use display names from users, we currently only got user ids
|
|
|
|
if (recipients.length) {
|
|
|
|
$tr.attr('data-share-recipients', OCA.Sharing.Util.formatRecipients(recipients));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$tr.attr('data-share-recipients', '');
|
|
|
|
}
|
|
|
|
}
|
2012-08-22 16:31:54 +00:00
|
|
|
});
|
2014-05-28 16:39:29 +00:00
|
|
|
});
|
2012-08-22 16:31:54 +00:00
|
|
|
}
|
2014-05-28 16:39:29 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2014-06-02 13:59:06 +00:00
|
|
|
* Formats a recipients array to be displayed.
|
2014-05-28 16:39:29 +00:00
|
|
|
* The first four recipients will be shown and the
|
|
|
|
* other ones will be shown as "+x" where "x" is the number of
|
|
|
|
* remaining recipients.
|
|
|
|
*
|
|
|
|
* @param recipients recipients array
|
|
|
|
* @param count optional total recipients count (in case the array was shortened)
|
|
|
|
* @return formatted recipients display text
|
|
|
|
*/
|
|
|
|
formatRecipients: function(recipients, count) {
|
|
|
|
var maxRecipients = 4;
|
|
|
|
var text;
|
|
|
|
if (!_.isNumber(count)) {
|
|
|
|
count = recipients.length;
|
|
|
|
}
|
2014-06-02 13:59:06 +00:00
|
|
|
// TODO: use natural sort
|
|
|
|
recipients = _.first(recipients, maxRecipients).sort();
|
|
|
|
text = recipients.join(', ');
|
2014-05-28 16:39:29 +00:00
|
|
|
if (count > maxRecipients) {
|
|
|
|
text += ', +' + (count - maxRecipients);
|
|
|
|
}
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
})();
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
2014-06-02 13:59:06 +00:00
|
|
|
// FIXME: HACK: do not init when running unit tests, need a better way
|
|
|
|
if (!window.TESTING) {
|
|
|
|
OCA.Sharing.Util.initialize(OCA.Files.fileActions);
|
|
|
|
}
|
2013-08-18 09:02:08 +00:00
|
|
|
});
|
2014-05-28 16:39:29 +00:00
|
|
|
|