123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454 |
- /* global OC, Handlebars */
- /*
- * Copyright (c) 2015
- *
- * This file is licensed under the Affero General Public License version 3
- * or later.
- *
- * See the COPYING-README file.
- *
- */
- /* globals Handlebars */
- (function() {
- if (!OC.Share) {
- OC.Share = {};
- }
- var TEMPLATE =
- '<ul id="shareWithList" class="shareWithList">' +
- '{{#each sharees}}' +
- '<li data-share-id="{{shareId}}" data-share-type="{{shareType}}" data-share-with="{{shareWith}}">' +
- '<div class="avatar {{#if modSeed}}imageplaceholderseed{{/if}}" data-username="{{shareWith}}" data-displayname="{{shareWithDisplayName}}" {{#if modSeed}}data-seed="{{shareWith}} {{shareType}}"{{/if}}></div>' +
- '<span class="has-tooltip username" title="{{shareWithTitle}}">{{shareWithDisplayName}}</span>' +
- '<span class="sharingOptionsGroup">' +
- '{{#if editPermissionPossible}}' +
- '{{#unless isFileSharedByMail}}' +
- '<span class="shareOption">' +
- '<input id="canEdit-{{cid}}-{{shareWith}}" type="checkbox" name="edit" class="permissions checkbox" {{#if hasEditPermission}}checked="checked"{{/if}} />' +
- '<label for="canEdit-{{cid}}-{{shareWith}}">{{canEditLabel}}</label>' +
- '</span>' +
- '{{/unless}}' +
- '{{/if}}' +
- '<a href="#"><span class="icon icon-more"></span></a>' +
- '{{{popoverMenu}}}' +
- '</span>' +
- '</li>' +
- '{{/each}}' +
- '{{#each linkReshares}}' +
- '<li data-share-id="{{shareId}}" data-share-type="{{shareType}}">' +
- '<div class="avatar" data-username="{{shareInitiator}}"></div>' +
- '<span class="has-tooltip username" title="{{shareInitiator}}">' + t('core', '{{shareInitiatorDisplayName}} shared via link') + '</span>' +
- '<span class="sharingOptionsGroup">' +
- '<a href="#" class="unshare"><span class="icon-loading-small hidden"></span><span class="icon icon-delete"></span><span class="hidden-visually">{{unshareLabel}}</span></a>' +
- '</span>' +
- '</li>' +
- '{{/each}}' +
- '</ul>'
- ;
- var TEMPLATE_POPOVER_MENU =
- '<div class="popovermenu bubble hidden menu">' +
- '<ul>' +
- '{{#if isResharingAllowed}} {{#if sharePermissionPossible}} {{#unless isMailShare}}' +
- '<li>' +
- '<span class="shareOption menuitem">' +
- '<input id="canShare-{{cid}}-{{shareWith}}" type="checkbox" name="share" class="permissions checkbox" {{#if hasSharePermission}}checked="checked"{{/if}} data-permissions="{{sharePermission}}" />' +
- '<label for="canShare-{{cid}}-{{shareWith}}">{{canShareLabel}}</label>' +
- '</span>' +
- '</li>' +
- '{{/unless}} {{/if}} {{/if}}' +
- '{{#if isFolder}}' +
- '{{#if createPermissionPossible}}{{#unless isMailShare}}' +
- '<li>' +
- '<span class="shareOption menuitem">' +
- '<input id="canCreate-{{cid}}-{{shareWith}}" type="checkbox" name="create" class="permissions checkbox" {{#if hasCreatePermission}}checked="checked"{{/if}} data-permissions="{{createPermission}}"/>' +
- '<label for="canCreate-{{cid}}-{{shareWith}}">{{createPermissionLabel}}</label>' +
- '</span>' +
- '</li>' +
- '{{/unless}}{{/if}}' +
- '{{#if updatePermissionPossible}}{{#unless isMailShare}}' +
- '<li>' +
- '<span class="shareOption menuitem">' +
- '<input id="canUpdate-{{cid}}-{{shareWith}}" type="checkbox" name="update" class="permissions checkbox" {{#if hasUpdatePermission}}checked="checked"{{/if}} data-permissions="{{updatePermission}}"/>' +
- '<label for="canUpdate-{{cid}}-{{shareWith}}">{{updatePermissionLabel}}</label>' +
- '</span>' +
- '</li>' +
- '{{/unless}}{{/if}}' +
- '{{#if deletePermissionPossible}}{{#unless isMailShare}}' +
- '<li>' +
- '<span class="shareOption menuitem">' +
- '<input id="canDelete-{{cid}}-{{shareWith}}" type="checkbox" name="delete" class="permissions checkbox" {{#if hasDeletePermission}}checked="checked"{{/if}} data-permissions="{{deletePermission}}"/>' +
- '<label for="canDelete-{{cid}}-{{shareWith}}">{{deletePermissionLabel}}</label>' +
- '</span>' +
- '</li>' +
- '{{/unless}}{{/if}}' +
- '{{/if}}' +
- '<li>' +
- '<a href="#" class="unshare"><span class="icon-loading-small hidden"></span><span class="icon icon-delete"></span><span>{{unshareLabel}}</span></a>' +
- '</li>' +
- '</ul>' +
- '</div>';
- /**
- * @class OCA.Share.ShareDialogShareeListView
- * @member {OC.Share.ShareItemModel} model
- * @member {jQuery} $el
- * @memberof OCA.Sharing
- * @classdesc
- *
- * Represents the sharee list part in the GUI of the share dialogue
- *
- */
- var ShareDialogShareeListView = OC.Backbone.View.extend({
- /** @type {string} **/
- id: 'shareDialogLinkShare',
- /** @type {OC.Share.ShareConfigModel} **/
- configModel: undefined,
- /** @type {Function} **/
- _template: undefined,
- /** @type {Function} **/
- _popoverMenuTemplate: undefined,
- _menuOpen: false,
- /** @type {boolean|number} **/
- _renderPermissionChange: false,
- events: {
- 'click .unshare': 'onUnshare',
- 'click .icon-more': 'onToggleMenu',
- 'click .permissions': 'onPermissionChange',
- },
- initialize: function(options) {
- if(!_.isUndefined(options.configModel)) {
- this.configModel = options.configModel;
- } else {
- throw 'missing OC.Share.ShareConfigModel';
- }
- var view = this;
- this.model.on('change:shares', function() {
- view.render();
- });
- },
- /**
- *
- * @param {OC.Share.Types.ShareInfo} shareInfo
- * @returns {object}
- */
- getShareeObject: function(shareIndex) {
- var shareWith = this.model.getShareWith(shareIndex);
- var shareWithDisplayName = this.model.getShareWithDisplayName(shareIndex);
- var shareWithTitle = '';
- var shareType = this.model.getShareType(shareIndex);
- var hasPermissionOverride = {};
- if (shareType === OC.Share.SHARE_TYPE_GROUP) {
- shareWithDisplayName = shareWithDisplayName + " (" + t('core', 'group') + ')';
- } else if (shareType === OC.Share.SHARE_TYPE_REMOTE) {
- shareWithDisplayName = shareWithDisplayName + " (" + t('core', 'remote') + ')';
- } else if (shareType === OC.Share.SHARE_TYPE_EMAIL) {
- shareWithDisplayName = shareWithDisplayName + " (" + t('core', 'email') + ')';
- }
- if (shareType === OC.Share.SHARE_TYPE_GROUP) {
- shareWithTitle = shareWith + " (" + t('core', 'group') + ')';
- } else if (shareType === OC.Share.SHARE_TYPE_REMOTE) {
- shareWithTitle = shareWith + " (" + t('core', 'remote') + ')';
- } else if (shareType === OC.Share.SHARE_TYPE_EMAIL) {
- shareWithTitle = shareWith + " (" + t('core', 'email') + ')';
- }
- return _.extend(hasPermissionOverride, {
- cid: this.cid,
- hasSharePermission: this.model.hasSharePermission(shareIndex),
- hasEditPermission: this.model.hasEditPermission(shareIndex),
- hasCreatePermission: this.model.hasCreatePermission(shareIndex),
- hasUpdatePermission: this.model.hasUpdatePermission(shareIndex),
- hasDeletePermission: this.model.hasDeletePermission(shareIndex),
- shareWith: shareWith,
- shareWithDisplayName: shareWithDisplayName,
- shareWithTitle: shareWithTitle,
- shareType: shareType,
- shareId: this.model.get('shares')[shareIndex].id,
- modSeed: shareType !== OC.Share.SHARE_TYPE_USER,
- isRemoteShare: shareType === OC.Share.SHARE_TYPE_REMOTE,
- isMailShare: shareType === OC.Share.SHARE_TYPE_EMAIL,
- isFileSharedByMail: shareType === OC.Share.SHARE_TYPE_EMAIL && !this.model.isFolder()
- });
- },
- getShareProperties: function() {
- return {
- unshareLabel: t('core', 'Unshare'),
- canShareLabel: t('core', 'can reshare'),
- canEditLabel: t('core', 'can edit'),
- createPermissionLabel: t('core', 'can create'),
- updatePermissionLabel: t('core', 'can change'),
- deletePermissionLabel: t('core', 'can delete'),
- crudsLabel: t('core', 'access control'),
- triangleSImage: OC.imagePath('core', 'actions/triangle-s'),
- isResharingAllowed: this.configModel.get('isResharingAllowed'),
- sharePermissionPossible: this.model.sharePermissionPossible(),
- editPermissionPossible: this.model.editPermissionPossible(),
- createPermissionPossible: this.model.createPermissionPossible(),
- updatePermissionPossible: this.model.updatePermissionPossible(),
- deletePermissionPossible: this.model.deletePermissionPossible(),
- sharePermission: OC.PERMISSION_SHARE,
- createPermission: OC.PERMISSION_CREATE,
- updatePermission: OC.PERMISSION_UPDATE,
- deletePermission: OC.PERMISSION_DELETE,
- isFolder: this.model.isFolder()
- };
- },
- /**
- * get an array of sharees' share properties
- *
- * @returns {Array}
- */
- getShareeList: function() {
- var universal = this.getShareProperties();
- if(!this.model.hasUserShares()) {
- return [];
- }
- var shares = this.model.get('shares');
- var list = [];
- for(var index = 0; index < shares.length; index++) {
- var share = this.getShareeObject(index);
- if (share.shareType === OC.Share.SHARE_TYPE_LINK) {
- continue;
- }
- // first empty {} is necessary, otherwise we get in trouble
- // with references
- list.push(_.extend({}, universal, share));
- }
- return list;
- },
- getLinkReshares: function() {
- var universal = {
- unshareLabel: t('core', 'Unshare'),
- };
- if(!this.model.hasUserShares()) {
- return [];
- }
- var shares = this.model.get('shares');
- var list = [];
- for(var index = 0; index < shares.length; index++) {
- var share = this.getShareeObject(index);
- if (share.shareType !== OC.Share.SHARE_TYPE_LINK) {
- continue;
- }
- // first empty {} is necessary, otherwise we get in trouble
- // with references
- list.push(_.extend({}, universal, share, {
- shareInitiator: shares[index].uid_owner,
- shareInitiatorDisplayName: shares[index].displayname_owner
- }));
- }
- return list;
- },
- render: function() {
- if(!this._renderPermissionChange) {
- this.$el.html(this.template({
- cid: this.cid,
- sharees: this.getShareeList(),
- linkReshares: this.getLinkReshares()
- }));
- this.$('.avatar').each(function () {
- var $this = $(this);
- if ($this.hasClass('imageplaceholderseed')) {
- $this.css({width: 32, height: 32});
- $this.imageplaceholder($this.data('seed'));
- } else {
- // user, size, ie8fix, hidedefault, callback, displayname
- $this.avatar($this.data('username'), 32, undefined, undefined, undefined, $this.data('displayname'));
- }
- });
- this.$('.has-tooltip').tooltip({
- placement: 'bottom'
- });
- } else {
- var permissionChangeShareId = parseInt(this._renderPermissionChange, 10);
- var shareWithIndex = this.model.findShareWithIndex(permissionChangeShareId);
- var sharee = this.getShareeObject(shareWithIndex);
- $.extend(sharee, this.getShareProperties());
- var $li = this.$('li[data-share-id=' + permissionChangeShareId + ']');
- $li.find('.popovermenu').replaceWith(this.popoverMenuTemplate(sharee));
- var checkBoxId = 'canEdit-' + this.cid + '-' + sharee.shareWith;
- checkBoxId = '#' + checkBoxId.replace( /(:|\.|\[|\]|,|=|@)/g, "\\$1");
- var $edit = $li.parent().find(checkBoxId);
- if($edit.length === 1) {
- $edit.prop('checked', sharee.hasEditPermission);
- }
- }
- var _this = this;
- this.$('.popovermenu').on('afterHide', function() {
- _this._menuOpen = false;
- });
- if (this._menuOpen != false) {
- // Open menu again if it was opened before
- var shareId = parseInt(this._menuOpen, 10);
- if(!_.isNaN(shareId)) {
- var liSelector = 'li[data-share-id=' + shareId + ']';
- OC.showMenu(null, this.$(liSelector + ' .popovermenu'));
- }
- }
- this._renderPermissionChange = false;
- this.delegateEvents();
- return this;
- },
- /**
- * @returns {Function} from Handlebars
- * @private
- */
- template: function (data) {
- if (!this._template) {
- this._template = Handlebars.compile(TEMPLATE);
- }
- var sharees = data.sharees;
- if(_.isArray(sharees)) {
- for (var i = 0; i < sharees.length; i++) {
- data.sharees[i].popoverMenu = this.popoverMenuTemplate(sharees[i]);
- }
- }
- return this._template(data);
- },
- /**
- * renders the popover template and returns the resulting HTML
- *
- * @param {Object} data
- * @returns {string}
- */
- popoverMenuTemplate: function(data) {
- if(!this._popoverMenuTemplate) {
- this._popoverMenuTemplate = Handlebars.compile(TEMPLATE_POPOVER_MENU);
- }
- return this._popoverMenuTemplate(data);
- },
- onUnshare: function(event) {
- event.preventDefault();
- event.stopPropagation();
- var self = this;
- var $element = $(event.target);
- if (!$element.is('a')) {
- $element = $element.closest('a');
- }
- var $loading = $element.find('.icon-loading-small').eq(0);
- if(!$loading.hasClass('hidden')) {
- // in process
- return false;
- }
- $loading.removeClass('hidden');
- var $li = $element.closest('li[data-share-id]');
- var shareId = $li.data('share-id');
- self.model.removeShare(shareId)
- .done(function() {
- $li.remove();
- })
- .fail(function() {
- $loading.addClass('hidden');
- OC.Notification.showTemporary(t('core', 'Could not unshare'));
- });
- return false;
- },
- onToggleMenu: function(event) {
- event.preventDefault();
- event.stopPropagation();
- var $element = $(event.target);
- var $li = $element.closest('li[data-share-id]');
- var $menu = $li.find('.popovermenu');
- OC.showMenu(null, $menu);
- this._menuOpen = $li.data('share-id');
- },
- onPermissionChange: function(event) {
- event.preventDefault();
- event.stopPropagation();
- var $element = $(event.target);
- var $li = $element.closest('li[data-share-id]');
- var shareId = $li.data('share-id');
- var permissions = OC.PERMISSION_READ;
- if (this.model.isFolder()) {
- // adjust checkbox states
- var $checkboxes = $('.permissions', $li).not('input[name="edit"]').not('input[name="share"]');
- var checked;
- if ($element.attr('name') === 'edit') {
- checked = $element.is(':checked');
- // Check/uncheck Create, Update, and Delete checkboxes if Edit is checked/unck
- $($checkboxes).prop('checked', checked);
- if (checked) {
- permissions |= OC.PERMISSION_CREATE | OC.PERMISSION_UPDATE | OC.PERMISSION_DELETE;
- }
- } else {
- var numberChecked = $checkboxes.filter(':checked').length;
- checked = numberChecked > 0;
- $('input[name="edit"]', $li).prop('checked', checked);
- }
- } else {
- if ($element.attr('name') === 'edit' && $element.is(':checked')) {
- permissions |= OC.PERMISSION_UPDATE;
- }
- }
- $('.permissions', $li).not('input[name="edit"]').filter(':checked').each(function(index, checkbox) {
- permissions |= $(checkbox).data('permissions');
- });
- /** disable checkboxes during save operation to avoid race conditions **/
- $li.find('input[type=checkbox]').prop('disabled', true);
- var enableCb = function() {
- $li.find('input[type=checkbox]').prop('disabled', false);
- };
- var errorCb = function(elem, msg) {
- OC.dialogs.alert(msg, t('core', 'Error while sharing'));
- enableCb();
- };
- this.model.updateShare(shareId, {permissions: permissions}, {error: errorCb, success: enableCb});
- this._renderPermissionChange = shareId;
- },
- });
- OC.Share.ShareDialogShareeListView = ShareDialogShareeListView;
- })();
|