2015-07-31 01:07:41 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015
|
|
|
|
*
|
|
|
|
* This file is licensed under the Affero General Public License version 3
|
|
|
|
* or later.
|
|
|
|
*
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-08-19 22:03:25 +03:00
|
|
|
/* globals Handlebars */
|
|
|
|
|
2015-07-31 01:07:41 +03:00
|
|
|
(function() {
|
|
|
|
if(!OC.Share) {
|
|
|
|
OC.Share = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
var TEMPLATE_BASE =
|
2015-09-28 16:57:57 +03:00
|
|
|
'<div class="resharerInfoView subView"></div>' +
|
2015-09-15 16:29:30 +03:00
|
|
|
'{{#if isSharingAllowed}}' +
|
2015-10-16 11:54:45 +03:00
|
|
|
'<label for="shareWith-{{cid}}" class="hidden-visually">{{shareLabel}}</label>' +
|
2015-08-08 01:23:06 +03:00
|
|
|
'<div class="oneline">' +
|
2015-10-16 11:54:45 +03:00
|
|
|
' <input id="shareWith-{{cid}}" class="shareWithField" type="text" placeholder="{{sharePlaceholder}}" />' +
|
2015-08-08 01:23:06 +03:00
|
|
|
' <span class="shareWithLoading icon-loading-small hidden"></span>'+
|
2017-04-12 12:52:59 +03:00
|
|
|
'{{{shareInfo}}}' +
|
2015-09-15 17:14:29 +03:00
|
|
|
'</div>' +
|
2015-09-15 16:29:30 +03:00
|
|
|
'{{/if}}' +
|
2015-09-28 16:57:57 +03:00
|
|
|
'<div class="shareeListView subView"></div>' +
|
|
|
|
'<div class="linkShareView subView"></div>' +
|
|
|
|
'<div class="expirationView subView"></div>' +
|
|
|
|
'<div class="loading hidden" style="height: 50px"></div>';
|
2015-07-31 01:07:41 +03:00
|
|
|
|
2017-04-12 12:52:59 +03:00
|
|
|
var TEMPLATE_SHARE_INFO =
|
|
|
|
'<span class="icon icon-info shareWithRemoteInfo hasTooltip" ' +
|
|
|
|
'title="{{tooltip}}"></span>';
|
2015-07-31 01:07:41 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @class OCA.Share.ShareDialogView
|
2015-08-08 01:23:06 +03:00
|
|
|
* @member {OC.Share.ShareItemModel} model
|
|
|
|
* @member {jQuery} $el
|
|
|
|
* @memberof OCA.Sharing
|
2015-07-31 01:07:41 +03:00
|
|
|
* @classdesc
|
|
|
|
*
|
|
|
|
* Represents the GUI of the share dialogue
|
|
|
|
*
|
|
|
|
*/
|
2015-08-08 01:23:06 +03:00
|
|
|
var ShareDialogView = OC.Backbone.View.extend({
|
|
|
|
/** @type {Object} **/
|
2015-07-31 01:07:41 +03:00
|
|
|
_templates: {},
|
|
|
|
|
2015-08-08 01:23:06 +03:00
|
|
|
/** @type {boolean} **/
|
2015-07-31 01:07:41 +03:00
|
|
|
_showLink: true,
|
|
|
|
|
2015-08-08 01:23:06 +03:00
|
|
|
/** @type {string} **/
|
|
|
|
tagName: 'div',
|
|
|
|
|
2015-08-13 03:38:14 +03:00
|
|
|
/** @type {OC.Share.ShareConfigModel} **/
|
|
|
|
configModel: undefined,
|
|
|
|
|
2015-08-19 01:04:16 +03:00
|
|
|
/** @type {object} **/
|
|
|
|
resharerInfoView: undefined,
|
|
|
|
|
2015-08-21 16:40:50 +03:00
|
|
|
/** @type {object} **/
|
|
|
|
linkShareView: undefined,
|
|
|
|
|
2015-08-21 20:35:13 +03:00
|
|
|
/** @type {object} **/
|
|
|
|
expirationView: undefined,
|
|
|
|
|
2015-09-01 13:43:04 +03:00
|
|
|
/** @type {object} **/
|
|
|
|
shareeListView: undefined,
|
|
|
|
|
2016-02-12 12:25:42 +03:00
|
|
|
events: {
|
|
|
|
'input .shareWithField': 'onShareWithFieldChanged'
|
|
|
|
},
|
|
|
|
|
2015-08-13 03:38:14 +03:00
|
|
|
initialize: function(options) {
|
2015-08-11 23:36:28 +03:00
|
|
|
var view = this;
|
|
|
|
|
|
|
|
this.model.on('fetchError', function() {
|
|
|
|
OC.Notification.showTemporary(t('core', 'Share details could not be loaded for this item.'));
|
|
|
|
});
|
2015-08-13 03:38:14 +03:00
|
|
|
|
|
|
|
if(!_.isUndefined(options.configModel)) {
|
|
|
|
this.configModel = options.configModel;
|
|
|
|
} else {
|
2015-08-25 00:20:01 +03:00
|
|
|
throw 'missing OC.Share.ShareConfigModel';
|
2015-08-13 03:38:14 +03:00
|
|
|
}
|
2015-08-19 01:04:16 +03:00
|
|
|
|
2015-09-12 15:21:14 +03:00
|
|
|
this.configModel.on('change:isRemoteShareAllowed', function() {
|
|
|
|
view.render();
|
|
|
|
});
|
2015-09-15 16:29:30 +03:00
|
|
|
this.model.on('change:permissions', function() {
|
|
|
|
view.render();
|
|
|
|
});
|
2015-09-12 15:21:14 +03:00
|
|
|
|
2015-09-28 16:57:57 +03:00
|
|
|
this.model.on('request', this._onRequest, this);
|
|
|
|
this.model.on('sync', this._onEndRequest, this);
|
|
|
|
|
2015-08-19 01:04:16 +03:00
|
|
|
var subViewOptions = {
|
|
|
|
model: this.model,
|
|
|
|
configModel: this.configModel
|
|
|
|
};
|
|
|
|
|
2015-08-21 21:05:50 +03:00
|
|
|
var subViews = {
|
|
|
|
resharerInfoView: 'ShareDialogResharerInfoView',
|
|
|
|
linkShareView: 'ShareDialogLinkShareView',
|
2015-08-25 17:07:14 +03:00
|
|
|
expirationView: 'ShareDialogExpirationView',
|
2016-11-02 13:37:25 +03:00
|
|
|
shareeListView: 'ShareDialogShareeListView'
|
2015-08-21 21:05:50 +03:00
|
|
|
};
|
2015-08-21 20:35:13 +03:00
|
|
|
|
2015-08-21 21:05:50 +03:00
|
|
|
for(var name in subViews) {
|
|
|
|
var className = subViews[name];
|
|
|
|
this[name] = _.isUndefined(options[name])
|
|
|
|
? new OC.Share[className](subViewOptions)
|
|
|
|
: options[name];
|
|
|
|
}
|
2015-09-05 03:02:55 +03:00
|
|
|
|
2016-02-12 12:25:42 +03:00
|
|
|
_.bindAll(this,
|
|
|
|
'autocompleteHandler',
|
|
|
|
'_onSelectRecipient',
|
|
|
|
'onShareWithFieldChanged'
|
|
|
|
);
|
2017-02-24 17:45:47 +03:00
|
|
|
|
2017-04-28 10:48:33 +03:00
|
|
|
OC.Plugins.attach('OC.Share.ShareDialogView', this);
|
2016-02-12 12:25:42 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
onShareWithFieldChanged: function() {
|
|
|
|
var $el = this.$el.find('.shareWithField');
|
|
|
|
if ($el.val().length < 2) {
|
|
|
|
$el.removeClass('error').tooltip('hide');
|
|
|
|
}
|
2015-09-05 03:02:55 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
autocompleteHandler: function (search, response) {
|
2017-02-22 02:07:07 +03:00
|
|
|
var $shareWithField = $('.shareWithField'),
|
|
|
|
view = this,
|
|
|
|
$loading = this.$el.find('.shareWithLoading'),
|
2017-04-12 12:52:59 +03:00
|
|
|
$shareInfo = this.$el.find('.shareWithRemoteInfo');
|
2017-02-22 02:07:07 +03:00
|
|
|
|
|
|
|
var count = oc_config['sharing.minSearchStringLength'];
|
|
|
|
if (search.term.trim().length < count) {
|
|
|
|
var title = n('core',
|
2017-02-22 18:28:42 +03:00
|
|
|
'At least {count} character is needed for autocompletion',
|
2017-02-22 02:07:07 +03:00
|
|
|
'At least {count} characters are needed for autocompletion',
|
|
|
|
count,
|
|
|
|
{ count: count }
|
|
|
|
);
|
|
|
|
$shareWithField.addClass('error')
|
|
|
|
.attr('data-original-title', title)
|
|
|
|
.tooltip('hide')
|
|
|
|
.tooltip({
|
|
|
|
placement: 'bottom',
|
|
|
|
trigger: 'manual'
|
|
|
|
})
|
|
|
|
.tooltip('fixTitle')
|
|
|
|
.tooltip('show');
|
|
|
|
response();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-09-05 03:02:55 +03:00
|
|
|
$loading.removeClass('hidden');
|
|
|
|
$loading.addClass('inlineblock');
|
2017-04-12 12:52:59 +03:00
|
|
|
$shareInfo.addClass('hidden');
|
2017-02-22 02:07:07 +03:00
|
|
|
|
|
|
|
$shareWithField.removeClass('error')
|
|
|
|
.tooltip('hide');
|
|
|
|
|
|
|
|
var perPage = 200;
|
2015-12-23 12:16:57 +03:00
|
|
|
$.get(
|
|
|
|
OC.linkToOCS('apps/files_sharing/api/v1') + 'sharees',
|
|
|
|
{
|
|
|
|
format: 'json',
|
|
|
|
search: search.term.trim(),
|
2017-02-22 02:07:07 +03:00
|
|
|
perPage: perPage,
|
2015-12-23 12:16:57 +03:00
|
|
|
itemType: view.model.get('itemType')
|
|
|
|
},
|
|
|
|
function (result) {
|
|
|
|
$loading.addClass('hidden');
|
|
|
|
$loading.removeClass('inlineblock');
|
2017-04-12 12:52:59 +03:00
|
|
|
$shareInfo.removeClass('hidden');
|
2016-08-19 22:03:25 +03:00
|
|
|
if (result.ocs.meta.statuscode === 100) {
|
2015-12-23 12:49:27 +03:00
|
|
|
var users = result.ocs.data.exact.users.concat(result.ocs.data.users);
|
2015-12-23 12:16:57 +03:00
|
|
|
var groups = result.ocs.data.exact.groups.concat(result.ocs.data.groups);
|
|
|
|
var remotes = result.ocs.data.exact.remotes.concat(result.ocs.data.remotes);
|
2016-11-18 16:08:42 +03:00
|
|
|
var lookup = result.ocs.data.lookup;
|
2017-05-01 07:32:54 +03:00
|
|
|
var emails = [],
|
|
|
|
circles = [];
|
2016-10-24 18:04:40 +03:00
|
|
|
if (typeof(result.ocs.data.emails) !== 'undefined') {
|
2017-05-01 07:32:54 +03:00
|
|
|
emails = result.ocs.data.exact.emails.concat(result.ocs.data.emails);
|
2016-10-24 18:04:40 +03:00
|
|
|
}
|
2017-03-17 22:48:33 +03:00
|
|
|
if (typeof(result.ocs.data.circles) !== 'undefined') {
|
2017-05-01 07:32:54 +03:00
|
|
|
circles = result.ocs.data.exact.circles.concat(result.ocs.data.circles);
|
2017-03-17 22:48:33 +03:00
|
|
|
}
|
2015-12-23 12:16:57 +03:00
|
|
|
|
|
|
|
var usersLength;
|
|
|
|
var groupsLength;
|
|
|
|
var remotesLength;
|
2016-07-29 16:37:08 +03:00
|
|
|
var emailsLength;
|
2017-03-17 22:48:33 +03:00
|
|
|
var circlesLength;
|
2015-12-23 12:16:57 +03:00
|
|
|
|
|
|
|
var i, j;
|
|
|
|
|
|
|
|
//Filter out the current user
|
|
|
|
usersLength = users.length;
|
2017-03-17 22:48:33 +03:00
|
|
|
for (i = 0; i < usersLength; i++) {
|
2015-12-23 12:16:57 +03:00
|
|
|
if (users[i].value.shareWith === OC.currentUser) {
|
|
|
|
users.splice(i, 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filter out the owner of the share
|
2015-12-23 12:38:53 +03:00
|
|
|
if (view.model.hasReshare()) {
|
|
|
|
usersLength = users.length;
|
|
|
|
for (i = 0 ; i < usersLength; i++) {
|
|
|
|
if (users[i].value.shareWith === view.model.getReshareOwner()) {
|
|
|
|
users.splice(i, 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-12-23 12:16:57 +03:00
|
|
|
|
|
|
|
var shares = view.model.get('shares');
|
|
|
|
var sharesLength = shares.length;
|
|
|
|
|
|
|
|
// Now filter out all sharees that are already shared with
|
|
|
|
for (i = 0; i < sharesLength; i++) {
|
|
|
|
var share = shares[i];
|
|
|
|
|
|
|
|
if (share.share_type === OC.Share.SHARE_TYPE_USER) {
|
|
|
|
usersLength = users.length;
|
|
|
|
for (j = 0; j < usersLength; j++) {
|
|
|
|
if (users[j].value.shareWith === share.share_with) {
|
|
|
|
users.splice(j, 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (share.share_type === OC.Share.SHARE_TYPE_GROUP) {
|
|
|
|
groupsLength = groups.length;
|
|
|
|
for (j = 0; j < groupsLength; j++) {
|
|
|
|
if (groups[j].value.shareWith === share.share_with) {
|
|
|
|
groups.splice(j, 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (share.share_type === OC.Share.SHARE_TYPE_REMOTE) {
|
|
|
|
remotesLength = remotes.length;
|
|
|
|
for (j = 0; j < remotesLength; j++) {
|
|
|
|
if (remotes[j].value.shareWith === share.share_with) {
|
|
|
|
remotes.splice(j, 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-07-29 16:37:08 +03:00
|
|
|
} else if (share.share_type === OC.Share.SHARE_TYPE_EMAIL) {
|
2016-07-29 16:38:31 +03:00
|
|
|
emailsLength = emails.length;
|
|
|
|
for (j = 0; j < emailsLength; j++) {
|
|
|
|
if (emails[j].value.shareWith === share.share_with) {
|
|
|
|
emails.splice(j, 1);
|
|
|
|
break;
|
|
|
|
}
|
2016-07-29 16:37:08 +03:00
|
|
|
}
|
2017-03-17 22:48:33 +03:00
|
|
|
} else if (share.share_type === OC.Share.SHARE_TYPE_CIRCLE) {
|
|
|
|
circlesLength = circles.length;
|
|
|
|
for (j = 0; j < circlesLength; j++) {
|
|
|
|
if (circles[j].value.shareWith === share.share_with) {
|
|
|
|
circles.splice(j, 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-12-23 12:16:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-17 22:48:33 +03:00
|
|
|
var suggestions = users.concat(groups).concat(remotes).concat(emails).concat(circles).concat(lookup);
|
2015-12-23 12:16:57 +03:00
|
|
|
|
2015-12-23 12:49:27 +03:00
|
|
|
if (suggestions.length > 0) {
|
2017-02-22 02:07:07 +03:00
|
|
|
$shareWithField
|
2016-02-12 12:04:11 +03:00
|
|
|
.autocomplete("option", "autoFocus", true);
|
2017-02-22 02:07:07 +03:00
|
|
|
|
2015-12-23 12:49:27 +03:00
|
|
|
response(suggestions);
|
2017-02-22 02:07:07 +03:00
|
|
|
|
|
|
|
// show a notice that the list is truncated
|
|
|
|
// this is the case if one of the search results is at least as long as the max result config option
|
2017-02-22 02:22:06 +03:00
|
|
|
if(oc_config['sharing.maxAutocompleteResults'] > 0 &&
|
|
|
|
Math.min(perPage, oc_config['sharing.maxAutocompleteResults'])
|
|
|
|
<= Math.max(users.length, groups.length, remotes.length, emails.length, lookup.length)) {
|
|
|
|
|
2017-02-22 02:07:07 +03:00
|
|
|
var message = t('core', 'This list is maybe truncated - please refine your search term to see more results.');
|
|
|
|
$('.ui-autocomplete').append('<li class="autocomplete-note">' + message + '</li>');
|
|
|
|
}
|
|
|
|
|
2015-12-23 12:49:27 +03:00
|
|
|
} else {
|
2017-02-22 02:07:07 +03:00
|
|
|
var title = t('core', 'No users or groups found for {search}', {search: $shareWithField.val()});
|
2016-03-21 21:47:10 +03:00
|
|
|
if (!view.configModel.get('allowGroupSharing')) {
|
|
|
|
title = t('core', 'No users found for {search}', {search: $('.shareWithField').val()});
|
|
|
|
}
|
2017-02-22 02:07:07 +03:00
|
|
|
$shareWithField.addClass('error')
|
2016-03-21 21:47:10 +03:00
|
|
|
.attr('data-original-title', title)
|
2016-02-12 12:04:11 +03:00
|
|
|
.tooltip('hide')
|
|
|
|
.tooltip({
|
|
|
|
placement: 'bottom',
|
2016-02-24 11:57:02 +03:00
|
|
|
trigger: 'manual'
|
2016-02-12 12:04:11 +03:00
|
|
|
})
|
|
|
|
.tooltip('fixTitle')
|
|
|
|
.tooltip('show');
|
2015-12-23 12:49:27 +03:00
|
|
|
response();
|
|
|
|
}
|
2015-12-23 12:16:57 +03:00
|
|
|
} else {
|
|
|
|
response();
|
|
|
|
}
|
2015-09-05 03:02:55 +03:00
|
|
|
}
|
2015-12-23 12:16:57 +03:00
|
|
|
).fail(function() {
|
2015-09-05 03:02:55 +03:00
|
|
|
$loading.addClass('hidden');
|
|
|
|
$loading.removeClass('inlineblock');
|
2017-04-12 12:52:59 +03:00
|
|
|
$shareInfo.removeClass('hidden');
|
2016-04-04 11:57:17 +03:00
|
|
|
OC.Notification.show(t('core', 'An error occurred. Please try again'));
|
2015-09-05 03:02:55 +03:00
|
|
|
window.setTimeout(OC.Notification.hide, 5000);
|
|
|
|
});
|
2015-08-11 23:36:28 +03:00
|
|
|
},
|
|
|
|
|
2015-09-12 13:17:15 +03:00
|
|
|
autocompleteRenderItem: function(ul, item) {
|
2016-10-06 18:12:10 +03:00
|
|
|
|
2015-09-12 13:17:15 +03:00
|
|
|
var text = item.label;
|
|
|
|
if (item.value.shareType === OC.Share.SHARE_TYPE_GROUP) {
|
2016-11-23 17:22:36 +03:00
|
|
|
text = t('core', '{sharee} (group)', { sharee: text }, undefined, { escape: false });
|
2015-09-12 13:17:15 +03:00
|
|
|
} else if (item.value.shareType === OC.Share.SHARE_TYPE_REMOTE) {
|
2016-11-23 17:22:36 +03:00
|
|
|
text = t('core', '{sharee} (remote)', { sharee: text }, undefined, { escape: false });
|
2016-07-29 16:37:08 +03:00
|
|
|
} else if (item.value.shareType === OC.Share.SHARE_TYPE_EMAIL) {
|
2016-11-23 17:22:36 +03:00
|
|
|
text = t('core', '{sharee} (email)', { sharee: text }, undefined, { escape: false });
|
2017-03-17 22:48:33 +03:00
|
|
|
} else if (item.value.shareType === OC.Share.SHARE_TYPE_CIRCLE) {
|
|
|
|
text = t('core', '{sharee} ({type}, {owner})', {sharee: text, type: item.value.circleInfo, owner: item.value.circleOwner}, undefined, {escape: false});
|
2015-09-12 13:17:15 +03:00
|
|
|
}
|
2016-10-06 18:12:10 +03:00
|
|
|
var insert = $("<div class='share-autocomplete-item'/>");
|
|
|
|
var avatar = $("<div class='avatardiv'></div>").appendTo(insert);
|
|
|
|
if (item.value.shareType === OC.Share.SHARE_TYPE_USER) {
|
|
|
|
avatar.avatar(item.value.shareWith, 32, undefined, undefined, undefined, item.label);
|
|
|
|
} else {
|
|
|
|
avatar.imageplaceholder(text, undefined, 32);
|
2015-09-12 13:17:15 +03:00
|
|
|
}
|
2016-10-06 18:12:10 +03:00
|
|
|
|
|
|
|
$("<div class='autocomplete-item-text'></div>")
|
|
|
|
.text(text)
|
|
|
|
.appendTo(insert);
|
|
|
|
insert.attr('title', item.value.shareWith);
|
|
|
|
insert = $("<a>")
|
|
|
|
.append(insert);
|
2015-09-12 13:17:15 +03:00
|
|
|
return $("<li>")
|
|
|
|
.addClass((item.value.shareType === OC.Share.SHARE_TYPE_GROUP) ? 'group' : 'user')
|
|
|
|
.append(insert)
|
|
|
|
.appendTo(ul);
|
|
|
|
},
|
|
|
|
|
2015-09-14 18:47:47 +03:00
|
|
|
_onSelectRecipient: function(e, s) {
|
|
|
|
e.preventDefault();
|
2016-02-12 16:01:15 +03:00
|
|
|
$(e.target).attr('disabled', true)
|
|
|
|
.val(s.item.label);
|
|
|
|
var $loading = this.$el.find('.shareWithLoading');
|
|
|
|
$loading.removeClass('hidden')
|
|
|
|
.addClass('inlineblock');
|
2017-04-12 12:52:59 +03:00
|
|
|
var $shareInfo = this.$el.find('.shareWithRemoteInfo');
|
|
|
|
$shareInfo.addClass('hidden');
|
2016-02-12 16:01:15 +03:00
|
|
|
|
|
|
|
this.model.addShare(s.item.value, {success: function() {
|
|
|
|
$(e.target).val('')
|
|
|
|
.attr('disabled', false);
|
|
|
|
$loading.addClass('hidden')
|
|
|
|
.removeClass('inlineblock');
|
2017-04-12 12:52:59 +03:00
|
|
|
$shareInfo.removeClass('hidden');
|
2016-02-16 21:40:44 +03:00
|
|
|
}, error: function(obj, msg) {
|
|
|
|
OC.Notification.showTemporary(msg);
|
2016-02-17 11:19:21 +03:00
|
|
|
$(e.target).attr('disabled', false)
|
|
|
|
.autocomplete('search', $(e.target).val());
|
2016-02-16 21:40:44 +03:00
|
|
|
$loading.addClass('hidden')
|
|
|
|
.removeClass('inlineblock');
|
2017-04-12 12:52:59 +03:00
|
|
|
$shareInfo.removeClass('hidden');
|
2016-02-12 16:01:15 +03:00
|
|
|
}});
|
2015-09-14 18:47:47 +03:00
|
|
|
},
|
|
|
|
|
2015-09-28 16:57:57 +03:00
|
|
|
_toggleLoading: function(state) {
|
|
|
|
this._loading = state;
|
|
|
|
this.$el.find('.subView').toggleClass('hidden', state);
|
|
|
|
this.$el.find('.loading').toggleClass('hidden', !state);
|
|
|
|
},
|
|
|
|
|
|
|
|
_onRequest: function() {
|
|
|
|
// only show the loading spinner for the first request (for now)
|
|
|
|
if (!this._loadingOnce) {
|
|
|
|
this._toggleLoading(true);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_onEndRequest: function() {
|
2015-10-02 17:35:33 +03:00
|
|
|
var self = this;
|
2015-09-28 16:57:57 +03:00
|
|
|
this._toggleLoading(false);
|
2015-10-02 17:35:33 +03:00
|
|
|
if (!this._loadingOnce) {
|
|
|
|
this._loadingOnce = true;
|
|
|
|
// the first time, focus on the share field after the spinner disappeared
|
2017-02-15 15:50:53 +03:00
|
|
|
if (!OC.Util.isIE()) {
|
|
|
|
_.defer(function () {
|
|
|
|
self.$('.shareWithField').focus();
|
|
|
|
});
|
|
|
|
}
|
2015-10-02 17:35:33 +03:00
|
|
|
}
|
2015-09-28 16:57:57 +03:00
|
|
|
},
|
|
|
|
|
2015-07-31 01:07:41 +03:00
|
|
|
render: function() {
|
|
|
|
var baseTemplate = this._getTemplate('base', TEMPLATE_BASE);
|
|
|
|
|
2015-08-08 01:23:06 +03:00
|
|
|
this.$el.html(baseTemplate({
|
2015-10-16 11:54:45 +03:00
|
|
|
cid: this.cid,
|
2015-07-31 01:07:41 +03:00
|
|
|
shareLabel: t('core', 'Share'),
|
|
|
|
sharePlaceholder: this._renderSharePlaceholderPart(),
|
2017-04-12 12:52:59 +03:00
|
|
|
shareInfo: this._renderShareInfoPart(),
|
2015-09-15 16:29:30 +03:00
|
|
|
isSharingAllowed: this.model.sharePermissionPossible()
|
2015-07-31 01:07:41 +03:00
|
|
|
}));
|
|
|
|
|
2015-10-16 11:54:45 +03:00
|
|
|
var $shareField = this.$el.find('.shareWithField');
|
2015-09-15 16:29:30 +03:00
|
|
|
if ($shareField.length) {
|
|
|
|
$shareField.autocomplete({
|
2016-02-16 18:23:09 +03:00
|
|
|
minLength: 1,
|
2015-09-15 16:29:30 +03:00
|
|
|
delay: 750,
|
2015-09-22 18:16:20 +03:00
|
|
|
focus: function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
},
|
2015-09-15 16:29:30 +03:00
|
|
|
source: this.autocompleteHandler,
|
|
|
|
select: this._onSelectRecipient
|
|
|
|
}).data('ui-autocomplete')._renderItem = this.autocompleteRenderItem;
|
|
|
|
}
|
2015-09-05 03:02:55 +03:00
|
|
|
|
2015-08-21 20:35:13 +03:00
|
|
|
this.resharerInfoView.$el = this.$el.find('.resharerInfoView');
|
2015-08-21 16:00:15 +03:00
|
|
|
this.resharerInfoView.render();
|
|
|
|
|
2015-08-21 21:29:12 +03:00
|
|
|
this.linkShareView.$el = this.$el.find('.linkShareView');
|
|
|
|
this.linkShareView.render();
|
|
|
|
|
2015-08-21 20:35:13 +03:00
|
|
|
this.expirationView.$el = this.$el.find('.expirationView');
|
|
|
|
this.expirationView.render();
|
|
|
|
|
2015-08-25 17:07:14 +03:00
|
|
|
this.shareeListView.$el = this.$el.find('.shareeListView');
|
2015-09-01 13:43:04 +03:00
|
|
|
this.shareeListView.render();
|
2015-08-25 17:07:14 +03:00
|
|
|
|
2015-08-18 18:23:32 +03:00
|
|
|
this.$el.find('.hasTooltip').tooltip();
|
|
|
|
|
2015-08-08 01:23:06 +03:00
|
|
|
return this;
|
2015-07-31 01:07:41 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* sets whether share by link should be displayed or not. Default is
|
|
|
|
* true.
|
|
|
|
*
|
|
|
|
* @param {bool} showLink
|
|
|
|
*/
|
|
|
|
setShowLink: function(showLink) {
|
|
|
|
this._showLink = (typeof showLink === 'boolean') ? showLink : true;
|
2015-08-21 16:40:50 +03:00
|
|
|
this.linkShareView.showLink = this._showLink;
|
2015-07-31 01:07:41 +03:00
|
|
|
},
|
|
|
|
|
2017-04-12 12:52:59 +03:00
|
|
|
_renderShareInfoPart: function() {
|
|
|
|
var shareInfo = '';
|
|
|
|
var infoTemplate = this._getShareInfoTemplate();
|
|
|
|
|
|
|
|
if(this.configModel.get('isMailShareAllowed') && this.configModel.get('isRemoteShareAllowed')) {
|
|
|
|
shareInfo = infoTemplate({
|
|
|
|
tooltip: t('core', 'Share with other people by entering a user or group, a federated cloud ID or an email address.')
|
|
|
|
});
|
|
|
|
} else if(this.configModel.get('isRemoteShareAllowed')) {
|
|
|
|
shareInfo = infoTemplate({
|
|
|
|
tooltip: t('core', 'Share with other people by entering a user or group or a federated cloud ID.')
|
|
|
|
});
|
|
|
|
} else if(this.configModel.get('isMailShareAllowed')) {
|
|
|
|
shareInfo = infoTemplate({
|
|
|
|
tooltip: t('core', 'Share with other people by entering a user or group or an email address.')
|
2015-07-31 01:07:41 +03:00
|
|
|
});
|
|
|
|
}
|
2015-08-18 18:23:32 +03:00
|
|
|
|
2017-04-12 12:52:59 +03:00
|
|
|
return shareInfo;
|
2015-07-31 01:07:41 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
_renderSharePlaceholderPart: function () {
|
2016-10-31 13:52:00 +03:00
|
|
|
var allowRemoteSharing = this.configModel.get('isRemoteShareAllowed');
|
|
|
|
var allowMailSharing = this.configModel.get('isMailShareAllowed');
|
2016-03-21 21:47:10 +03:00
|
|
|
|
2017-04-18 13:08:35 +03:00
|
|
|
if (!allowRemoteSharing && allowMailSharing) {
|
|
|
|
return t('core', 'Name or email address...');
|
2016-10-31 13:52:00 +03:00
|
|
|
}
|
2017-04-18 13:08:35 +03:00
|
|
|
if (allowRemoteSharing && !allowMailSharing) {
|
|
|
|
return t('core', 'Name or federated cloud ID...');
|
2016-10-31 13:52:00 +03:00
|
|
|
}
|
2017-04-18 13:08:35 +03:00
|
|
|
if (allowRemoteSharing && allowMailSharing) {
|
|
|
|
return t('core', 'Name, federated cloud ID or email address...');
|
2015-07-31 01:07:41 +03:00
|
|
|
}
|
2016-03-21 21:47:10 +03:00
|
|
|
|
2017-04-18 13:08:35 +03:00
|
|
|
return t('core', 'Name...');
|
2015-07-31 01:07:41 +03:00
|
|
|
},
|
|
|
|
|
2015-08-10 22:46:46 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} key - an identifier for the template
|
|
|
|
* @param {string} template - the HTML to be compiled by Handlebars
|
|
|
|
* @returns {Function} from Handlebars
|
|
|
|
* @private
|
|
|
|
*/
|
2015-07-31 01:07:41 +03:00
|
|
|
_getTemplate: function (key, template) {
|
|
|
|
if (!this._templates[key]) {
|
|
|
|
this._templates[key] = Handlebars.compile(template);
|
|
|
|
}
|
|
|
|
return this._templates[key];
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* returns the info template for remote sharing
|
|
|
|
*
|
2015-08-10 22:46:46 +03:00
|
|
|
* @returns {Function}
|
2015-07-31 01:07:41 +03:00
|
|
|
* @private
|
|
|
|
*/
|
2017-04-12 12:52:59 +03:00
|
|
|
_getShareInfoTemplate: function() {
|
|
|
|
return this._getTemplate('shareInfo', TEMPLATE_SHARE_INFO);
|
2015-08-08 01:23:06 +03:00
|
|
|
}
|
|
|
|
});
|
2015-07-31 01:07:41 +03:00
|
|
|
|
|
|
|
OC.Share.ShareDialogView = ShareDialogView;
|
|
|
|
|
|
|
|
})();
|