nextcloud/apps/files_sharing/js/share.js

246 lines
8.0 KiB
JavaScript
Raw Normal View History

$(document).ready(function() {
var shared_status = {};
if (typeof FileActions !== 'undefined') {
FileActions.register('all', 'Share', function(filename) {
if (scanFiles.scanning){return;}//workaround to prevent additional http request block scanning feedback
var icon;
if (typeof filename == 'undefined') {
return false;
}
var file = $('#dir').val()+'/'+filename;
if(shared_status[file])
return shared_status[file].icon;
$.ajax({
type: 'GET',
url: OC.linkTo('files_sharing', 'ajax/getitem.php'),
dataType: 'json',
data: {source: file},
async: false,
success: function(users) {
if (users) {
icon = OC.imagePath('core', 'actions/shared');
2011-08-18 21:14:06 +04:00
$.each(users, function(index, row) {
if (row.uid_shared_with == 'public') {
icon = OC.imagePath('core', 'actions/public');
}
});
} else {
icon = OC.imagePath('core', 'actions/share');
}
shared_status[file]= { timestamp: new Date().getTime(), icon: icon };
}
});
return icon;
}, function(filename) {
if (($('#dropdown').length > 0)) {
$('#dropdown').hide('blind', function() {
var dropdownFile = $('#dropdown').data('file')
var file = $('#dir').val()+'/'+filename;
$('#dropdown').remove();
$('tr').removeClass('mouseOver');
if (dropdownFile != file) {
createDropdown(filename, file);
}
});
} else {
createDropdown(filename, $('#dir').val()+'/'+filename);
}
});
};
$('.share').click(function(event) {
event.preventDefault();
event.stopPropagation();
var filenames = getSelectedFiles('name');
var length = filenames.length;
var files = '';
for (var i = 0; i < length; i++) {
files += $('#dir').val()+'/'+filenames[i]+';';
}
2011-08-11 19:09:14 +04:00
createDropdown(false, files);
});
$(this).click(function(event) {
if (!($(event.target).hasClass('drop')) && $(event.target).parents().index($('#dropdown')) == -1) {
2011-08-11 19:09:14 +04:00
if ($('#dropdown').is(':visible')) {
delete shared_status[$('#dropdown').data('file')]; //Remove File from icon cache
2011-08-11 19:09:14 +04:00
$('#dropdown').hide('blind', function() {
$('#dropdown').remove();
2011-08-11 19:09:14 +04:00
$('tr').removeClass('mouseOver');
});
}
}
});
2011-08-11 19:09:14 +04:00
$('#share_with').live('change', function() {
var source = $('#dropdown').data('file');
var uid_shared_with = $(this).val();
var permissions = 0;
var data = 'sources='+encodeURIComponent(source)+'&uid_shared_with='+encodeURIComponent(uid_shared_with)+'&permissions='+encodeURIComponent(permissions);
$.ajax({
type: 'POST',
url: OC.linkTo('files_sharing','ajax/share.php'),
cache: false,
data: data,
success: function(result) {
if (result !== 'false') {
addUser(uid_shared_with, permissions, false);
}
}
});
});
2011-08-11 19:09:14 +04:00
$('#shared_list > li').live('mouseenter', function(event) {
$(':hidden', this).show();
});
2011-08-11 19:09:14 +04:00
$('#shared_list > li').live('mouseleave', function(event) {
$('a', this).hide();
if (!$('input:[type=checkbox]', this).is(':checked')) {
$('input:[type=checkbox]', this).hide();
$('label', this).hide();
}
});
2011-08-11 19:09:14 +04:00
$('.permissions').live('change', function() {
2011-08-11 19:09:14 +04:00
var permissions = (this.checked) ? 1 : 0;
var source = $('#dropdown').data('file');
var uid_shared_with = $(this).parent().data('uid_shared_with');
var data = 'source='+encodeURIComponent(source)+'&uid_shared_with='+encodeURIComponent(uid_shared_with)+'&permissions='+encodeURIComponent(permissions);
$.ajax({
type: 'GET',
url: OC.linkTo('files_sharing','ajax/setpermissions.php'),
cache: false,
data: data
});
});
2011-08-11 22:20:50 +04:00
$('.unshare').live('click', function(event) {
event.preventDefault();
2011-08-11 22:20:50 +04:00
var user = $(this).parent();
var source = $('#dropdown').data('file');
2011-08-11 22:20:50 +04:00
var uid_shared_with = user.data('uid_shared_with');
var data = 'source='+encodeURIComponent(source)+'&uid_shared_with='+encodeURIComponent(uid_shared_with);
$.ajax({
type: 'GET',
url: OC.linkTo('files_sharing','ajax/unshare.php'),
cache: false,
data: data,
success: function() {
var option = '<option value="'+uid_shared_with+'">'+uid_shared_with+'</option>';
2011-08-11 22:20:50 +04:00
$(user).remove();
$(option).appendTo('#share_with');
$('#share_with').trigger('liszt:updated');
}
});
});
2011-08-11 19:09:14 +04:00
$('#makelink').live('change', function() {
if (this.checked) {
var source = $('#dropdown').data('file');
var uid_shared_with = 'public';
var permissions = 0;
var data = 'sources='+encodeURIComponent(source)+'&uid_shared_with='+encodeURIComponent(uid_shared_with)+'&permissions='+encodeURIComponent(permissions);
$.ajax({
type: 'POST',
url: OC.linkTo('files_sharing','ajax/share.php'),
cache: false,
data: data,
success: function(token) {
if (token) {
showPublicLink(token, source.substr(source.lastIndexOf('/')));
}
}
});
} else {
var source = $('#dropdown').data('file');
var uid_shared_with = 'public';
var data = 'source='+encodeURIComponent(source)+'&uid_shared_with='+encodeURIComponent(uid_shared_with);
$.ajax({
type: 'GET',
url: OC.linkTo('files_sharing','ajax/unshare.php'),
cache: false,
data: data,
success: function(){
$('#link').hide('blind');
}
});
}
});
2011-08-11 19:09:14 +04:00
$('#link').live('click', function() {
$(this).focus();
$(this).select();
});
});
2011-08-11 19:09:14 +04:00
function createDropdown(filename, files) {
var html = '<div id="dropdown" class="drop" data-file="'+files+'">';
html += '<div id="private">';
2012-02-24 01:20:15 +04:00
html += '<select data-placeholder="User or Group" id="share_with" class="chzen-select">';
html += '<option value=""></option>';
html += '</select>';
html += '<ul id="shared_list"></ul>';
html += '</div>';
html += '<div id="public">';
html += '<input type="checkbox" name="makelink" id="makelink" value="1" /><label for="makelink">make public</label>';
//html += '<input type="checkbox" name="public_link_write" id="public_link_write" value="1" /><label for="public_link_write">allow upload</label>';
html += '<br />';
html += '<input id="link" style="display:none; width:90%;" />';
html += '</div>';
2011-08-11 19:09:14 +04:00
if (filename) {
$('tr').filterAttr('data-file',filename).addClass('mouseOver');
$(html).appendTo($('tr').filterAttr('data-file',filename).find('td.filename'));
2011-08-11 19:09:14 +04:00
} else {
$(html).appendTo($('thead .share'));
}
$.getJSON(OC.linkTo('files_sharing', 'ajax/userautocomplete.php'), function(users) {
if (users) {
$.each(users, function(index, row) {
2011-08-11 19:09:14 +04:00
$(row).appendTo('#share_with');
});
2011-08-11 19:09:14 +04:00
$('#share_with').trigger('liszt:updated');
}
});
$.getJSON(OC.linkTo('files_sharing', 'ajax/getitem.php'), { source: files }, function(users) {
if (users) {
$.each(users, function(index, row) {
if (row.uid_shared_with == 'public') {
showPublicLink(row.token, '/'+filename);
} else if (isNaN(index)) {
2011-08-11 19:09:14 +04:00
addUser(row.uid_shared_with, row.permissions, index.substr(0, index.lastIndexOf('-')));
} else {
2011-08-11 19:09:14 +04:00
addUser(row.uid_shared_with, row.permissions, false);
}
});
}
});
$('#dropdown').show('blind');
2011-08-11 19:09:14 +04:00
$('#share_with').chosen();
}
function addUser(uid_shared_with, permissions, parentFolder) {
if (parentFolder) {
var user = '<li>Parent folder '+parentFolder+' shared with '+uid_shared_with+'</li>';
2011-08-11 19:09:14 +04:00
} else {
var checked = ((permissions > 0) ? 'checked="checked"' : 'style="display:none;"');
var style = ((permissions == 0) ? 'style="display:none;"' : '');
2011-09-26 23:26:49 +04:00
var user = '<li data-uid_shared_with="'+uid_shared_with+'">';
user += '<a href="" class="unshare" style="display:none;"><img class="svg" alt="Unshare" src="'+OC.imagePath('core','actions/delete')+'"/></a>';
user += uid_shared_with;
user += '<input type="checkbox" name="permissions" id="'+uid_shared_with+'" class="permissions" '+checked+' />';
2011-09-26 23:26:49 +04:00
user += '<label for="'+uid_shared_with+'" '+style+'>can edit</label>';
user += '</li>';
2011-08-11 19:09:14 +04:00
}
$('#share_with option[value="'+uid_shared_with+'"]').remove();
$('#share_with').trigger('liszt:updated');
2011-08-11 19:09:14 +04:00
$(user).appendTo('#shared_list');
}
function showPublicLink(token, file) {
$('#makelink').attr('checked', true);
$('#link').data('token', token);
$('#link').val(parent.location.protocol+'//'+location.host+OC.linkTo('files_sharing','get.php')+'?token='+token+'&f='+file);
$('#link').show('blind');
}