2012-05-05 22:56:52 +04:00
|
|
|
OC.Share={
|
2012-06-26 03:27:57 +04:00
|
|
|
SHARE_TYPE_USER:0,
|
|
|
|
SHARE_TYPE_GROUP:1,
|
2012-08-28 04:05:51 +04:00
|
|
|
SHARE_TYPE_LINK:3,
|
2012-07-31 18:18:26 +04:00
|
|
|
SHARE_TYPE_EMAIL:4,
|
2012-07-27 05:56:22 +04:00
|
|
|
PERMISSION_CREATE:4,
|
|
|
|
PERMISSION_READ:1,
|
|
|
|
PERMISSION_UPDATE:2,
|
|
|
|
PERMISSION_DELETE:8,
|
|
|
|
PERMISSION_SHARE:16,
|
2012-07-31 21:06:32 +04:00
|
|
|
itemShares:[],
|
2012-06-25 03:16:50 +04:00
|
|
|
statuses:[],
|
2012-08-09 01:50:09 +04:00
|
|
|
droppedDown:false,
|
2012-06-25 03:16:50 +04:00
|
|
|
loadIcons:function(itemType) {
|
|
|
|
// Load all share icons
|
|
|
|
$.get(OC.filePath('core', 'ajax', 'share.php'), { fetch: 'getItemsSharedStatuses', itemType: itemType }, function(result) {
|
2012-05-05 22:56:52 +04:00
|
|
|
if (result && result.status === 'success') {
|
|
|
|
$.each(result.data, function(item, hasPrivateLink) {
|
2012-06-25 03:16:50 +04:00
|
|
|
// Private links override shared in terms of icon display
|
2012-08-06 19:27:13 +04:00
|
|
|
if (itemType != 'file' && itemType != 'folder') {
|
2012-06-25 03:16:50 +04:00
|
|
|
if (hasPrivateLink) {
|
2012-08-08 05:23:55 +04:00
|
|
|
var image = OC.imagePath('core', 'actions/public');
|
2012-06-25 03:16:50 +04:00
|
|
|
} else {
|
2012-08-08 05:23:55 +04:00
|
|
|
var image = OC.imagePath('core', 'actions/shared');
|
2012-06-25 03:16:50 +04:00
|
|
|
}
|
2012-08-08 05:23:55 +04:00
|
|
|
$('a.share[data-item="'+item+'"]').css('background', 'url('+image+') no-repeat center');
|
2012-05-05 22:56:52 +04:00
|
|
|
}
|
2012-08-06 19:27:13 +04:00
|
|
|
OC.Share.statuses[item] = hasPrivateLink;
|
2012-05-05 22:56:52 +04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2012-08-24 23:32:06 +04:00
|
|
|
updateIcon:function(itemType, itemSource) {
|
|
|
|
if (itemType == 'file' || itemType == 'folder') {
|
|
|
|
var filename = $('tr').filterAttr('data-id', String(itemSource)).data('file');
|
|
|
|
if ($('#dir').val() == '/') {
|
|
|
|
itemSource = $('#dir').val() + filename;
|
|
|
|
} else {
|
|
|
|
itemSource = $('#dir').val() + '/' + filename;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var shares = false;
|
|
|
|
$.each(OC.Share.itemShares, function(index) {
|
|
|
|
if (OC.Share.itemShares[index].length > 0) {
|
|
|
|
shares = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (shares) {
|
|
|
|
$('a.share[data-item="'+itemSource+'"]').css('background', 'url('+OC.imagePath('core', 'actions/shared')+') no-repeat center');
|
|
|
|
if (typeof OC.Share.statuses[itemSource] === 'undefined') {
|
|
|
|
OC.Share.statuses[itemSource] = false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (itemType != 'file' && itemType != 'folder') {
|
|
|
|
$('a.share[data-item="'+itemSource+'"]').css('background', 'url('+OC.imagePath('core', 'actions/share')+') no-repeat center');
|
|
|
|
}
|
|
|
|
delete OC.Share.statuses[itemSource];
|
|
|
|
}
|
|
|
|
},
|
2012-08-22 19:35:30 +04:00
|
|
|
loadItem:function(itemType, itemSource) {
|
2012-06-26 03:27:57 +04:00
|
|
|
var data = '';
|
2012-08-24 18:43:42 +04:00
|
|
|
var checkReshare = true;
|
2012-08-24 18:01:01 +04:00
|
|
|
// Switch file sources to path to check if status is set
|
|
|
|
if (itemType == 'file' || itemType == 'folder') {
|
|
|
|
var filename = $('tr').filterAttr('data-id', String(itemSource)).data('file');
|
|
|
|
if ($('#dir').val() == '/') {
|
|
|
|
var item = $('#dir').val() + filename;
|
|
|
|
} else {
|
|
|
|
var item = $('#dir').val() + '/' + filename;
|
|
|
|
}
|
2012-08-24 18:43:42 +04:00
|
|
|
if (item.substring(0, 8) != '/Shared/') {
|
|
|
|
checkReshare = false;
|
|
|
|
}
|
2012-08-24 18:01:01 +04:00
|
|
|
} else {
|
|
|
|
var item = itemSource;
|
|
|
|
}
|
|
|
|
if (typeof OC.Share.statuses[item] === 'undefined') {
|
2012-08-22 19:35:30 +04:00
|
|
|
checkShares = false;
|
|
|
|
} else {
|
|
|
|
checkShares = true;
|
2012-08-06 21:30:44 +04:00
|
|
|
}
|
2012-08-24 18:43:42 +04:00
|
|
|
$.ajax({type: 'GET', url: OC.filePath('core', 'ajax', 'share.php'), data: { fetch: 'getItem', itemType: itemType, itemSource: itemSource, checkReshare: checkReshare, checkShares: checkShares }, async: false, success: function(result) {
|
2012-08-21 04:00:29 +04:00
|
|
|
if (result && result.status === 'success') {
|
|
|
|
data = result.data;
|
|
|
|
} else {
|
|
|
|
data = false;
|
|
|
|
}
|
|
|
|
}});
|
2012-06-26 03:27:57 +04:00
|
|
|
return data;
|
2012-05-05 22:56:52 +04:00
|
|
|
},
|
2012-08-22 19:35:30 +04:00
|
|
|
share:function(itemType, itemSource, shareType, shareWith, permissions, callback) {
|
|
|
|
$.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'share', itemType: itemType, itemSource: itemSource, shareType: shareType, shareWith: shareWith, permissions: permissions }, function(result) {
|
2012-05-05 22:56:52 +04:00
|
|
|
if (result && result.status === 'success') {
|
|
|
|
if (callback) {
|
|
|
|
callback(result.data);
|
|
|
|
}
|
|
|
|
} else {
|
2012-08-02 01:52:29 +04:00
|
|
|
OC.dialogs.alert(result.data.message, 'Error while sharing');
|
2012-05-05 22:56:52 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2012-08-21 04:00:29 +04:00
|
|
|
unshare:function(itemType, itemSource, shareType, shareWith, callback) {
|
|
|
|
$.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'unshare', itemType: itemType, itemSource: itemSource, shareType: shareType, shareWith: shareWith }, function(result) {
|
2012-05-05 22:56:52 +04:00
|
|
|
if (result && result.status === 'success') {
|
|
|
|
if (callback) {
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
OC.dialogs.alert('Error', 'Error while unsharing');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2012-08-21 04:00:29 +04:00
|
|
|
setPermissions:function(itemType, itemSource, shareType, shareWith, permissions) {
|
|
|
|
$.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'setPermissions', itemType: itemType, itemSource: itemSource, shareType: shareType, shareWith: shareWith, permissions: permissions }, function(result) {
|
2012-05-05 22:56:52 +04:00
|
|
|
if (!result || result.status !== 'success') {
|
|
|
|
OC.dialogs.alert('Error', 'Error while changing permissions');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2012-08-28 04:05:51 +04:00
|
|
|
showDropDown:function(itemType, itemSource, appendTo, link, possiblePermissions) {
|
2012-08-22 19:35:30 +04:00
|
|
|
var data = OC.Share.loadItem(itemType, itemSource);
|
|
|
|
var html = '<div id="dropdown" class="drop" data-item-type="'+itemType+'" data-item-source="'+itemSource+'">';
|
2012-08-21 04:00:29 +04:00
|
|
|
if (data.reshare) {
|
|
|
|
if (data.reshare.share_type == OC.Share.SHARE_TYPE_GROUP) {
|
2012-08-24 19:25:20 +04:00
|
|
|
html += '<span class="reshare">Shared with you and the group '+data.reshare.share_with+' by '+data.reshare.uid_owner+'</span>';
|
2012-08-21 04:00:29 +04:00
|
|
|
} else {
|
2012-08-24 19:25:20 +04:00
|
|
|
html += '<span class="reshare">Shared with you by '+data.reshare.uid_owner+'</span>';
|
2012-08-21 04:00:29 +04:00
|
|
|
}
|
|
|
|
html += '<br />';
|
|
|
|
}
|
2012-08-23 22:48:35 +04:00
|
|
|
if (possiblePermissions & OC.Share.PERMISSION_SHARE) {
|
2012-08-28 23:10:06 +04:00
|
|
|
html += '<input id="shareWith" type="text" placeholder="Share with" />';
|
2012-08-23 22:48:35 +04:00
|
|
|
html += '<ul id="shareWithList">';
|
|
|
|
html += '</ul>';
|
2012-08-28 04:05:51 +04:00
|
|
|
if (link) {
|
|
|
|
html += '<div id="link">';
|
|
|
|
html += '<input type="checkbox" name="linkCheckbox" id="linkCheckbox" value="1" /><label for="linkCheckbox">Share with link</label>';
|
|
|
|
// TODO Change to lock/unlock icon?
|
|
|
|
html += '<a href="#" id="showPassword" style="display:none;"><img class="svg" alt="Password protect" src="'+OC.imagePath('core', 'actions/triangle-n')+'"/></a>';
|
2012-08-23 22:48:35 +04:00
|
|
|
html += '<br />';
|
2012-08-28 23:10:06 +04:00
|
|
|
html += '<input id="linkText" type="text" readonly="readonly" />';
|
|
|
|
html += '<div id="linkPass">';
|
|
|
|
html += '<input id="linkPassText" type="password" placeholder="Password" />';
|
|
|
|
html += '</div>'
|
2012-08-23 22:48:35 +04:00
|
|
|
html += '</div>';
|
|
|
|
}
|
2012-07-04 01:00:23 +04:00
|
|
|
html += '</div>';
|
2012-08-23 22:48:35 +04:00
|
|
|
$(html).appendTo(appendTo);
|
|
|
|
// Reset item shares
|
|
|
|
OC.Share.itemShares = [];
|
|
|
|
if (data.shares) {
|
|
|
|
$.each(data.shares, function(index, share) {
|
2012-08-28 04:05:51 +04:00
|
|
|
if (share.share_type == OC.Share.SHARE_TYPE_LINK) {
|
|
|
|
OC.Share.showLink(itemSource, share.share_with);
|
2012-07-30 23:30:21 +04:00
|
|
|
} else {
|
2012-08-23 22:48:35 +04:00
|
|
|
OC.Share.addShareWith(share.share_type, share.share_with, share.permissions, possiblePermissions);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
$('#shareWith').autocomplete({minLength: 2, source: function(search, response) {
|
|
|
|
// if (cache[search.term]) {
|
|
|
|
// response(cache[search.term]);
|
|
|
|
// } else {
|
|
|
|
$.get(OC.filePath('core', 'ajax', 'share.php'), { fetch: 'getShareWith', search: search.term, itemShares: OC.Share.itemShares }, function(result) {
|
|
|
|
if (result.status == 'success' && result.data.length > 0) {
|
|
|
|
response(result.data);
|
2012-07-31 18:18:26 +04:00
|
|
|
} else {
|
2012-08-23 22:48:35 +04:00
|
|
|
// Suggest sharing via email if valid email address
|
|
|
|
var pattern = new RegExp(/^[+a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/i);
|
|
|
|
if (pattern.test(search.term)) {
|
|
|
|
response([{label: 'Share via email: '+search.term, value: {shareType: OC.Share.SHARE_TYPE_EMAIL, shareWith: search.term}}]);
|
|
|
|
} else {
|
|
|
|
response(['No people found']);
|
|
|
|
}
|
2012-07-31 18:18:26 +04:00
|
|
|
}
|
2012-08-23 22:48:35 +04:00
|
|
|
});
|
|
|
|
// }
|
|
|
|
},
|
|
|
|
focus: function(event, focused) {
|
|
|
|
event.preventDefault();
|
|
|
|
},
|
|
|
|
select: function(event, selected) {
|
2012-08-24 23:32:06 +04:00
|
|
|
var itemType = $('#dropdown').data('item-type');
|
|
|
|
var itemSource = $('#dropdown').data('item-source');
|
2012-08-23 22:48:35 +04:00
|
|
|
var shareType = selected.item.value.shareType;
|
|
|
|
var shareWith = selected.item.value.shareWith;
|
|
|
|
$(this).val(shareWith);
|
|
|
|
// Default permissions are Read and Share
|
|
|
|
var permissions = OC.Share.PERMISSION_READ | OC.Share.PERMISSION_SHARE;
|
2012-08-24 23:32:06 +04:00
|
|
|
OC.Share.share(itemType, itemSource, shareType, shareWith, permissions, function() {
|
2012-08-23 22:48:35 +04:00
|
|
|
OC.Share.addShareWith(shareType, shareWith, permissions, possiblePermissions);
|
|
|
|
$('#shareWith').val('');
|
2012-08-24 23:32:06 +04:00
|
|
|
OC.Share.updateIcon(itemType, itemSource);
|
2012-07-30 23:30:21 +04:00
|
|
|
});
|
2012-08-23 22:48:35 +04:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-30 23:30:21 +04:00
|
|
|
});
|
2012-08-23 22:48:35 +04:00
|
|
|
} else {
|
|
|
|
html += '<input id="shareWith" type="text" placeholder="Resharing is not allowed" style="width:90%;" disabled="disabled"/>';
|
|
|
|
html += '</div>';
|
|
|
|
$(html).appendTo(appendTo);
|
2012-07-30 23:30:21 +04:00
|
|
|
}
|
2012-08-09 01:50:09 +04:00
|
|
|
$('#dropdown').show('blind', function() {
|
|
|
|
OC.Share.droppedDown = true;
|
|
|
|
});
|
2012-07-31 22:48:19 +04:00
|
|
|
$('#shareWith').focus();
|
2012-05-05 22:56:52 +04:00
|
|
|
},
|
|
|
|
hideDropDown:function(callback) {
|
|
|
|
$('#dropdown').hide('blind', function() {
|
2012-08-09 01:50:09 +04:00
|
|
|
OC.Share.droppedDown = false;
|
2012-05-05 22:56:52 +04:00
|
|
|
$('#dropdown').remove();
|
2012-08-09 01:50:09 +04:00
|
|
|
if (typeof FileActions !== 'undefined') {
|
|
|
|
$('tr').removeClass('mouseOver');
|
|
|
|
}
|
2012-05-05 22:56:52 +04:00
|
|
|
if (callback) {
|
|
|
|
callback.call();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2012-07-27 18:13:23 +04:00
|
|
|
addShareWith:function(shareType, shareWith, permissions, possiblePermissions) {
|
2012-07-31 21:06:32 +04:00
|
|
|
if (!OC.Share.itemShares[shareType]) {
|
|
|
|
OC.Share.itemShares[shareType] = [];
|
|
|
|
}
|
|
|
|
OC.Share.itemShares[shareType].push(shareWith);
|
2012-07-27 05:56:22 +04:00
|
|
|
var editChecked = createChecked = updateChecked = deleteChecked = shareChecked = '';
|
|
|
|
if (permissions & OC.Share.PERMISSION_CREATE) {
|
|
|
|
createChecked = 'checked="checked"';
|
|
|
|
editChecked = 'checked="checked"';
|
|
|
|
}
|
|
|
|
if (permissions & OC.Share.PERMISSION_UPDATE) {
|
|
|
|
updateChecked = 'checked="checked"';
|
|
|
|
editChecked = 'checked="checked"';
|
|
|
|
}
|
|
|
|
if (permissions & OC.Share.PERMISSION_DELETE) {
|
|
|
|
deleteChecked = 'checked="checked"';
|
|
|
|
editChecked = 'checked="checked"';
|
|
|
|
}
|
|
|
|
if (permissions & OC.Share.PERMISSION_SHARE) {
|
|
|
|
shareChecked = 'checked="checked"';
|
|
|
|
}
|
2012-08-06 23:43:20 +04:00
|
|
|
var html = '<li style="clear: both;" data-share-type="'+shareType+'" data-share-with="'+shareWith+'">';
|
2012-07-03 22:00:09 +04:00
|
|
|
html += shareWith;
|
2012-07-27 18:13:23 +04:00
|
|
|
if (possiblePermissions & OC.Share.PERMISSION_CREATE || possiblePermissions & OC.Share.PERMISSION_UPDATE || possiblePermissions & OC.Share.PERMISSION_DELETE) {
|
2012-08-02 02:03:00 +04:00
|
|
|
if (editChecked == '') {
|
|
|
|
html += '<label style="display:none;">';
|
|
|
|
} else {
|
|
|
|
html += '<label>';
|
|
|
|
}
|
|
|
|
html += '<input type="checkbox" name="edit" class="permissions" '+editChecked+' />can edit</label>';
|
2012-07-27 18:13:23 +04:00
|
|
|
}
|
2012-07-27 05:56:22 +04:00
|
|
|
html += '<a href="#" class="showCruds" style="display:none;"><img class="svg" alt="Unshare" src="'+OC.imagePath('core', 'actions/triangle-s')+'"/></a>';
|
|
|
|
html += '<a href="#" class="unshare" style="display:none;"><img class="svg" alt="Unshare" src="'+OC.imagePath('core', 'actions/delete')+'"/></a>';
|
|
|
|
html += '<div class="cruds" style="display:none;">';
|
2012-07-27 18:13:23 +04:00
|
|
|
if (possiblePermissions & OC.Share.PERMISSION_CREATE) {
|
|
|
|
html += '<label><input type="checkbox" name="create" class="permissions" '+createChecked+' data-permissions="'+OC.Share.PERMISSION_CREATE+'" />create</label>';
|
|
|
|
}
|
|
|
|
if (possiblePermissions & OC.Share.PERMISSION_UPDATE) {
|
|
|
|
html += '<label><input type="checkbox" name="update" class="permissions" '+updateChecked+' data-permissions="'+OC.Share.PERMISSION_UPDATE+'" />update</label>';
|
|
|
|
}
|
|
|
|
if (possiblePermissions & OC.Share.PERMISSION_DELETE) {
|
|
|
|
html += '<label><input type="checkbox" name="delete" class="permissions" '+deleteChecked+' data-permissions="'+OC.Share.PERMISSION_DELETE+'" />delete</label>';
|
|
|
|
}
|
|
|
|
if (possiblePermissions & OC.Share.PERMISSION_SHARE) {
|
|
|
|
html += '<label><input type="checkbox" name="share" class="permissions" '+shareChecked+' data-permissions="'+OC.Share.PERMISSION_SHARE+'" />share</label>';
|
|
|
|
}
|
2012-07-27 05:56:22 +04:00
|
|
|
html += '</div>';
|
2012-07-03 22:00:09 +04:00
|
|
|
html += '</li>';
|
|
|
|
$(html).appendTo('#shareWithList');
|
2012-08-23 07:00:47 +04:00
|
|
|
|
2012-05-05 22:56:52 +04:00
|
|
|
},
|
2012-08-28 04:05:51 +04:00
|
|
|
showLink:function(itemSource, password) {
|
|
|
|
$('#linkCheckbox').attr('checked', true);
|
|
|
|
var filename = $('tr').filterAttr('data-id', String(itemSource)).data('file');
|
|
|
|
if ($('#dir').val() == '/') {
|
|
|
|
var file = $('#dir').val() + filename;
|
2012-05-05 22:56:52 +04:00
|
|
|
} else {
|
2012-08-28 04:05:51 +04:00
|
|
|
var file = $('#dir').val() + '/' + filename;
|
2012-05-05 22:56:52 +04:00
|
|
|
}
|
2012-08-28 04:05:51 +04:00
|
|
|
file = '/'+OC.currentUser+'/files'+file;
|
|
|
|
var link = parent.location.protocol+'//'+location.host+OC.linkTo('', 'public.php')+'?service=files&file='+file;
|
|
|
|
$('#linkText').val(link);
|
|
|
|
$('#linkText').show('blind');
|
|
|
|
$('#showPassword').show();
|
2012-08-29 22:06:33 +04:00
|
|
|
if (password.length > 0) {
|
|
|
|
$('#linkPass').show('blind');
|
|
|
|
$('#linkPassText').attr('placeholder', 'Password protected');
|
|
|
|
}
|
2012-05-05 22:56:52 +04:00
|
|
|
},
|
2012-08-28 04:05:51 +04:00
|
|
|
hideLink:function() {
|
|
|
|
$('#linkText').hide('blind');
|
2012-08-29 22:01:09 +04:00
|
|
|
$('#showPassword').hide();
|
|
|
|
$('#linkPass').hide();
|
2012-05-05 22:56:52 +04:00
|
|
|
},
|
|
|
|
dirname:function(path) {
|
|
|
|
return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, '');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-27 05:27:40 +04:00
|
|
|
$(document).ready(function() {
|
2012-05-05 22:56:52 +04:00
|
|
|
|
2012-08-09 01:50:09 +04:00
|
|
|
$('a.share').live('click', function(event) {
|
|
|
|
event.stopPropagation();
|
2012-08-23 07:00:47 +04:00
|
|
|
if ($(this).data('item-type') !== undefined && $(this).data('item') !== undefined) {
|
2012-08-09 01:50:09 +04:00
|
|
|
var itemType = $(this).data('item-type');
|
2012-08-23 07:00:47 +04:00
|
|
|
var itemSource = $(this).data('item');
|
2012-08-09 01:50:09 +04:00
|
|
|
var appendTo = $(this).parent().parent();
|
2012-08-28 04:05:51 +04:00
|
|
|
var link = false;
|
2012-08-09 01:50:09 +04:00
|
|
|
var possiblePermissions = $(this).data('possible-permissions');
|
2012-08-28 04:05:51 +04:00
|
|
|
if ($(this).data('link') !== undefined && $(this).data('link') == true) {
|
|
|
|
link = true;
|
2012-07-04 01:00:23 +04:00
|
|
|
}
|
2012-08-09 01:50:09 +04:00
|
|
|
if (OC.Share.droppedDown) {
|
2012-08-23 07:00:47 +04:00
|
|
|
if (itemSource != $('#dropdown').data('item')) {
|
2012-08-09 01:50:09 +04:00
|
|
|
OC.Share.hideDropDown(function () {
|
2012-08-28 04:05:51 +04:00
|
|
|
OC.Share.showDropDown(itemType, itemSource, appendTo, link, possiblePermissions);
|
2012-08-09 01:50:09 +04:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
OC.Share.hideDropDown();
|
|
|
|
}
|
|
|
|
} else {
|
2012-08-28 04:05:51 +04:00
|
|
|
OC.Share.showDropDown(itemType, itemSource, appendTo, link, possiblePermissions);
|
2012-08-09 01:50:09 +04:00
|
|
|
}
|
2012-06-25 03:16:50 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-08-09 01:50:09 +04:00
|
|
|
$(this).click(function(event) {
|
|
|
|
if (OC.Share.droppedDown && !($(event.target).hasClass('drop')) && $('#dropdown').has(event.target).length === 0) {
|
|
|
|
OC.Share.hideDropDown();
|
|
|
|
}
|
|
|
|
});
|
2012-05-05 22:56:52 +04:00
|
|
|
|
2012-07-03 22:00:09 +04:00
|
|
|
$('#shareWithList li').live('mouseenter', function(event) {
|
2012-05-05 22:56:52 +04:00
|
|
|
// Show permissions and unshare button
|
2012-07-27 05:56:22 +04:00
|
|
|
$(':hidden', this).filter(':not(.cruds)').show();
|
2011-08-10 01:55:51 +04:00
|
|
|
});
|
2012-08-23 07:00:47 +04:00
|
|
|
|
2012-07-03 22:00:09 +04:00
|
|
|
$('#shareWithList li').live('mouseleave', function(event) {
|
2012-05-05 22:56:52 +04:00
|
|
|
// Hide permissions and unshare button
|
2012-07-27 05:56:22 +04:00
|
|
|
if (!$('.cruds', this).is(':visible')) {
|
|
|
|
$('a', this).hide();
|
|
|
|
if (!$('input[name="edit"]', this).is(':checked')) {
|
|
|
|
$('input:[type=checkbox]', this).hide();
|
|
|
|
$('label', this).hide();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$('a.unshare', this).hide();
|
2011-08-10 01:55:51 +04:00
|
|
|
}
|
|
|
|
});
|
2012-07-27 05:56:22 +04:00
|
|
|
|
|
|
|
$('.showCruds').live('click', function() {
|
|
|
|
$(this).parent().find('.cruds').toggle();
|
|
|
|
});
|
|
|
|
|
2012-05-05 22:56:52 +04:00
|
|
|
$('.unshare').live('click', function() {
|
2012-07-03 22:00:09 +04:00
|
|
|
var li = $(this).parent();
|
2012-08-24 23:32:06 +04:00
|
|
|
var itemType = $('#dropdown').data('item-type');
|
|
|
|
var itemSource = $('#dropdown').data('item-source');
|
2012-08-06 22:45:45 +04:00
|
|
|
var shareType = $(li).data('share-type');
|
|
|
|
var shareWith = $(li).data('share-with');
|
2012-08-24 23:32:06 +04:00
|
|
|
OC.Share.unshare(itemType, itemSource, shareType, shareWith, function() {
|
2012-07-03 22:00:09 +04:00
|
|
|
$(li).remove();
|
2012-08-06 22:45:45 +04:00
|
|
|
var index = OC.Share.itemShares[shareType].indexOf(shareWith);
|
|
|
|
OC.Share.itemShares[shareType].splice(index, 1);
|
2012-08-24 23:32:06 +04:00
|
|
|
OC.Share.updateIcon(itemType, itemSource);
|
2011-08-03 23:21:53 +04:00
|
|
|
});
|
|
|
|
});
|
2012-08-23 07:00:47 +04:00
|
|
|
|
2012-05-05 22:56:52 +04:00
|
|
|
$('.permissions').live('change', function() {
|
2012-07-27 05:56:22 +04:00
|
|
|
if ($(this).attr('name') == 'edit') {
|
2012-08-23 07:00:47 +04:00
|
|
|
var li = $(this).parent().parent()
|
2012-07-27 05:56:22 +04:00
|
|
|
var checkboxes = $('.permissions', li);
|
|
|
|
var checked = $(this).is(':checked');
|
|
|
|
// Check/uncheck Create, Update, and Delete checkboxes if Edit is checked/unck
|
|
|
|
$(checkboxes).filter('input[name="create"]').attr('checked', checked);
|
|
|
|
$(checkboxes).filter('input[name="update"]').attr('checked', checked);
|
|
|
|
$(checkboxes).filter('input[name="delete"]').attr('checked', checked);
|
|
|
|
} else {
|
|
|
|
var li = $(this).parent().parent().parent();
|
|
|
|
var checkboxes = $('.permissions', li);
|
|
|
|
// Uncheck Edit if Create, Update, and Delete are not checked
|
|
|
|
if (!$(this).is(':checked') && !$(checkboxes).filter('input[name="create"]').is(':checked') && !$(checkboxes).filter('input[name="update"]').is(':checked') && !$(checkboxes).filter('input[name="delete"]').is(':checked')) {
|
|
|
|
$(checkboxes).filter('input[name="edit"]').attr('checked', false);
|
|
|
|
// Check Edit if Create, Update, or Delete is checked
|
|
|
|
} else if (($(this).attr('name') == 'create' || $(this).attr('name') == 'update' || $(this).attr('name') == 'delete')) {
|
|
|
|
$(checkboxes).filter('input[name="edit"]').attr('checked', true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var permissions = OC.Share.PERMISSION_READ;
|
|
|
|
$(checkboxes).filter(':not(input[name="edit"])').filter(':checked').each(function(index, checkbox) {
|
|
|
|
permissions |= $(checkbox).data('permissions');
|
|
|
|
});
|
2012-08-21 04:00:29 +04:00
|
|
|
OC.Share.setPermissions($('#dropdown').data('item-type'), $('#dropdown').data('item-source'), $(li).data('share-type'), $(li).data('share-with'), permissions);
|
2012-05-05 22:56:52 +04:00
|
|
|
});
|
2012-08-23 07:00:47 +04:00
|
|
|
|
2012-08-28 04:05:51 +04:00
|
|
|
$('#linkCheckbox').live('change', function() {
|
2012-07-11 20:18:59 +04:00
|
|
|
var itemType = $('#dropdown').data('item-type');
|
2012-08-28 04:05:51 +04:00
|
|
|
var itemSource = $('#dropdown').data('item-source');
|
2011-08-03 23:21:53 +04:00
|
|
|
if (this.checked) {
|
2012-08-28 04:05:51 +04:00
|
|
|
// Create a link
|
|
|
|
OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', OC.Share.PERMISSION_READ, function() {
|
|
|
|
OC.Share.showLink(itemSource);
|
|
|
|
// TODO Change icon
|
2011-08-03 23:21:53 +04:00
|
|
|
});
|
|
|
|
} else {
|
2012-05-05 22:56:52 +04:00
|
|
|
// Delete private link
|
2012-08-28 04:05:51 +04:00
|
|
|
OC.Share.unshare(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', function() {
|
|
|
|
OC.Share.hideLink();
|
2011-08-03 23:21:53 +04:00
|
|
|
});
|
|
|
|
}
|
2011-07-27 05:27:40 +04:00
|
|
|
});
|
2012-08-23 07:00:47 +04:00
|
|
|
|
2012-08-28 04:05:51 +04:00
|
|
|
$('#linkText').live('click', function() {
|
2011-08-07 23:20:57 +04:00
|
|
|
$(this).focus();
|
|
|
|
$(this).select();
|
|
|
|
});
|
2012-04-26 18:33:06 +04:00
|
|
|
|
2012-08-28 04:05:51 +04:00
|
|
|
$('#showPassword').live('click', function() {
|
2012-08-28 23:10:06 +04:00
|
|
|
$('#linkPass').toggle('blind');
|
2012-08-28 04:05:51 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
$('#linkPassText').live('keyup', function(event) {
|
|
|
|
if (event.keyCode == 13) {
|
|
|
|
var itemType = $('#dropdown').data('item-type');
|
|
|
|
var itemSource = $('#dropdown').data('item-source');
|
2012-08-29 22:06:33 +04:00
|
|
|
OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $(this).val(), OC.Share.PERMISSION_READ, function() {
|
|
|
|
$('#linkPassText').val('');
|
|
|
|
$('#linkPassText').attr('placeholder', 'Password protected');
|
|
|
|
});
|
2012-08-28 04:05:51 +04:00
|
|
|
}
|
|
|
|
});
|
2012-06-25 22:55:49 +04:00
|
|
|
});
|