2013-01-18 20:50:44 +04:00
|
|
|
|
2013-01-18 16:11:29 +04:00
|
|
|
$(document).ready(function() {
|
|
|
|
|
|
|
|
if (typeof FileActions !== 'undefined') {
|
2013-06-17 15:30:57 +04:00
|
|
|
FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history'), function(filename) {
|
2013-10-09 14:43:56 +04:00
|
|
|
var tr = $('tr').filterAttr('data-file', filename);
|
|
|
|
var deleteAction = $('tr').filterAttr('data-file', filename).children("td.date").children(".action.delete");
|
2013-10-09 14:01:25 +04:00
|
|
|
deleteAction.removeClass('delete-icon').addClass('progress-icon');
|
2013-07-26 16:54:27 +04:00
|
|
|
disableActions();
|
2013-10-09 14:43:56 +04:00
|
|
|
$.post(OC.filePath('files_trashbin', 'ajax', 'undelete.php'),
|
|
|
|
{files: JSON.stringify([filename]), dirlisting: tr.attr('data-dirlisting')},
|
|
|
|
function(result) {
|
|
|
|
for (var i = 0; i < result.data.success.length; i++) {
|
|
|
|
var row = document.getElementById(result.data.success[i].filename);
|
|
|
|
row.parentNode.removeChild(row);
|
|
|
|
}
|
|
|
|
if (result.status !== 'success') {
|
|
|
|
OC.dialogs.alert(result.data.message, t('core', 'Error'));
|
|
|
|
}
|
|
|
|
enableActions();
|
|
|
|
FileList.updateFileSummary();
|
2013-01-18 16:11:29 +04:00
|
|
|
}
|
2013-10-09 14:43:56 +04:00
|
|
|
);
|
2013-01-31 21:14:22 +04:00
|
|
|
|
2013-10-09 14:43:56 +04:00
|
|
|
});
|
|
|
|
};
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2013-10-09 14:43:56 +04:00
|
|
|
FileActions.register('all', 'Delete', OC.PERMISSION_READ, function() {
|
|
|
|
return OC.imagePath('core', 'actions/delete');
|
|
|
|
}, function(filename) {
|
|
|
|
$('.tipsy').remove();
|
|
|
|
var tr = $('tr').filterAttr('data-file', filename);
|
|
|
|
var deleteAction = $('tr').filterAttr('data-file', filename).children("td.date").children(".action.delete");
|
|
|
|
deleteAction.removeClass('delete-icon').addClass('progress-icon');
|
|
|
|
disableActions();
|
|
|
|
$.post(OC.filePath('files_trashbin', 'ajax', 'delete.php'),
|
|
|
|
{files: JSON.stringify([filename]), dirlisting: tr.attr('data-dirlisting')},
|
|
|
|
function(result) {
|
2013-02-19 15:38:00 +04:00
|
|
|
for (var i = 0; i < result.data.success.length; i++) {
|
|
|
|
var row = document.getElementById(result.data.success[i].filename);
|
2013-02-06 19:23:22 +04:00
|
|
|
row.parentNode.removeChild(row);
|
2013-02-19 15:38:00 +04:00
|
|
|
}
|
2013-04-18 20:28:03 +04:00
|
|
|
if (result.status !== 'success') {
|
2013-04-06 18:52:55 +04:00
|
|
|
OC.dialogs.alert(result.data.message, t('core', 'Error'));
|
2013-02-06 19:23:22 +04:00
|
|
|
}
|
2013-07-26 16:54:27 +04:00
|
|
|
enableActions();
|
2013-07-03 21:50:03 +04:00
|
|
|
FileList.updateFileSummary();
|
2013-10-09 14:01:25 +04:00
|
|
|
}
|
2013-10-09 14:43:56 +04:00
|
|
|
);
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2013-10-09 14:43:56 +04:00
|
|
|
});
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2013-10-09 14:43:56 +04:00
|
|
|
// Sets the select_all checkbox behaviour :
|
|
|
|
$('#select_all').click(function() {
|
|
|
|
if ($(this).attr('checked')) {
|
|
|
|
// Check all
|
|
|
|
$('td.filename input:checkbox').attr('checked', true);
|
|
|
|
$('td.filename input:checkbox').parent().parent().addClass('selected');
|
|
|
|
} else {
|
|
|
|
// Uncheck all
|
|
|
|
$('td.filename input:checkbox').attr('checked', false);
|
|
|
|
$('td.filename input:checkbox').parent().parent().removeClass('selected');
|
|
|
|
}
|
|
|
|
processSelection();
|
|
|
|
});
|
2013-01-18 20:50:44 +04:00
|
|
|
|
2013-10-09 14:43:56 +04:00
|
|
|
$('td.filename input:checkbox').live('change', function(event) {
|
|
|
|
if (event.shiftKey) {
|
|
|
|
var last = $(lastChecked).parent().parent().prevAll().length;
|
|
|
|
var first = $(this).parent().parent().prevAll().length;
|
|
|
|
var start = Math.min(first, last);
|
|
|
|
var end = Math.max(first, last);
|
|
|
|
var rows = $(this).parent().parent().parent().children('tr');
|
|
|
|
for (var i = start; i < end; i++) {
|
|
|
|
$(rows).each(function(index) {
|
|
|
|
if (index === i) {
|
|
|
|
var checkbox = $(this).children().children('input:checkbox');
|
|
|
|
$(checkbox).attr('checked', 'checked');
|
|
|
|
$(checkbox).parent().parent().addClass('selected');
|
|
|
|
}
|
|
|
|
});
|
2013-01-18 20:50:44 +04:00
|
|
|
}
|
2013-10-09 14:43:56 +04:00
|
|
|
}
|
|
|
|
var selectedCount = $('td.filename input:checkbox:checked').length;
|
|
|
|
$(this).parent().parent().toggleClass('selected');
|
|
|
|
if (!$(this).attr('checked')) {
|
|
|
|
$('#select_all').attr('checked', false);
|
|
|
|
} else {
|
|
|
|
if (selectedCount == $('td.filename input:checkbox').length) {
|
|
|
|
$('#select_all').attr('checked', true);
|
2013-01-18 20:50:44 +04:00
|
|
|
}
|
2013-10-09 14:43:56 +04:00
|
|
|
}
|
|
|
|
processSelection();
|
|
|
|
});
|
2013-01-31 21:14:22 +04:00
|
|
|
|
2013-10-09 14:43:56 +04:00
|
|
|
$('.undelete').click('click', function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
var files = getSelectedFiles('file');
|
|
|
|
var fileslist = JSON.stringify(files);
|
|
|
|
var dirlisting = getSelectedFiles('dirlisting')[0];
|
|
|
|
disableActions();
|
|
|
|
for (var i = 0; i < files.length; i++) {
|
|
|
|
var deleteAction = $('tr').filterAttr('data-file', files[i]).children("td.date").children(".action.delete");
|
|
|
|
deleteAction.removeClass('delete-icon').addClass('progress-icon');
|
|
|
|
}
|
2013-01-31 21:14:22 +04:00
|
|
|
|
2013-10-09 14:43:56 +04:00
|
|
|
$.post(OC.filePath('files_trashbin', 'ajax', 'undelete.php'),
|
|
|
|
{files: fileslist, dirlisting: dirlisting},
|
|
|
|
function(result) {
|
2013-10-09 14:01:25 +04:00
|
|
|
for (var i = 0; i < result.data.success.length; i++) {
|
|
|
|
var row = document.getElementById(result.data.success[i].filename);
|
|
|
|
row.parentNode.removeChild(row);
|
|
|
|
}
|
|
|
|
if (result.status !== 'success') {
|
|
|
|
OC.dialogs.alert(result.data.message, t('core', 'Error'));
|
|
|
|
}
|
|
|
|
enableActions();
|
|
|
|
}
|
2013-10-09 14:43:56 +04:00
|
|
|
);
|
|
|
|
});
|
2013-01-18 20:50:44 +04:00
|
|
|
|
2013-10-09 14:43:56 +04:00
|
|
|
$('.delete').click('click', function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
var files = getSelectedFiles('file');
|
|
|
|
var fileslist = JSON.stringify(files);
|
|
|
|
var dirlisting = getSelectedFiles('dirlisting')[0];
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2013-10-09 14:43:56 +04:00
|
|
|
disableActions();
|
|
|
|
for (var i = 0; i < files.length; i++) {
|
|
|
|
var deleteAction = $('tr').filterAttr('data-file', files[i]).children("td.date").children(".action.delete");
|
|
|
|
deleteAction.removeClass('delete-icon').addClass('progress-icon');
|
|
|
|
}
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2013-10-09 14:43:56 +04:00
|
|
|
$.post(OC.filePath('files_trashbin', 'ajax', 'delete.php'),
|
|
|
|
{files: fileslist, dirlisting: dirlisting},
|
|
|
|
function(result) {
|
2013-10-09 14:35:15 +04:00
|
|
|
for (var i = 0; i < result.data.success.length; i++) {
|
|
|
|
var row = document.getElementById(result.data.success[i].filename);
|
|
|
|
row.parentNode.removeChild(row);
|
|
|
|
}
|
|
|
|
if (result.status !== 'success') {
|
|
|
|
OC.dialogs.alert(result.data.message, t('core', 'Error'));
|
|
|
|
}
|
|
|
|
enableActions();
|
|
|
|
}
|
2013-10-09 14:43:56 +04:00
|
|
|
);
|
2013-10-09 14:35:15 +04:00
|
|
|
|
2013-10-09 14:43:56 +04:00
|
|
|
});
|
2013-01-18 20:50:44 +04:00
|
|
|
|
2013-01-31 21:14:22 +04:00
|
|
|
$('#fileList').on('click', 'td.filename a', function(event) {
|
2013-02-28 16:32:08 +04:00
|
|
|
var mime = $(this).parent().parent().data('mime');
|
|
|
|
if (mime !== 'httpd/unix-directory') {
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2013-01-31 21:14:22 +04:00
|
|
|
var filename = $(this).parent().parent().attr('data-file');
|
|
|
|
var tr = $('tr').filterAttr('data-file',filename);
|
|
|
|
var renaming = tr.data('renaming');
|
|
|
|
if(!renaming && !FileList.isLoading(filename)){
|
2013-02-27 23:37:50 +04:00
|
|
|
if(mime.substr(0, 5) === 'text/'){ //no texteditor for now
|
|
|
|
return;
|
|
|
|
}
|
2013-01-31 21:14:22 +04:00
|
|
|
var type = $(this).parent().parent().data('type');
|
|
|
|
var permissions = $(this).parent().parent().data('permissions');
|
|
|
|
var action = FileActions.getDefault(mime, type, permissions);
|
|
|
|
if(action){
|
|
|
|
event.preventDefault();
|
|
|
|
action(filename);
|
|
|
|
}
|
|
|
|
}
|
2013-08-17 15:07:18 +04:00
|
|
|
|
|
|
|
// event handlers for breadcrumb items
|
|
|
|
$('#controls').delegate('.crumb:not(.home) a', 'click', onClickBreadcrumb);
|
2013-01-31 21:14:22 +04:00
|
|
|
});
|
2013-01-31 22:19:58 +04:00
|
|
|
|
2013-08-17 15:07:18 +04:00
|
|
|
FileActions.actions.dir = {
|
|
|
|
// only keep 'Open' action for navigation
|
|
|
|
'Open': FileActions.actions.dir.Open
|
|
|
|
};
|
2013-01-18 20:50:44 +04:00
|
|
|
});
|
2013-01-18 16:11:29 +04:00
|
|
|
|
2013-01-30 16:01:53 +04:00
|
|
|
function processSelection(){
|
2013-01-18 20:50:44 +04:00
|
|
|
var selected=getSelectedFiles();
|
2013-04-18 20:28:03 +04:00
|
|
|
var selectedFiles=selected.filter(function(el){return el.type === 'file'});
|
|
|
|
var selectedFolders=selected.filter(function(el){return el.type === 'dir'});
|
|
|
|
if(selectedFiles.length === 0 && selectedFolders.length === 0) {
|
2013-01-18 20:50:44 +04:00
|
|
|
$('#headerName>span.name').text(t('files','Name'));
|
|
|
|
$('#modified').text(t('files','Deleted'));
|
|
|
|
$('table').removeClass('multiselect');
|
|
|
|
$('.selectedActions').hide();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$('.selectedActions').show();
|
|
|
|
var selection='';
|
|
|
|
if(selectedFolders.length>0){
|
2013-08-09 22:37:18 +04:00
|
|
|
selection += n('files', '%n folder', '%n folders', selectedFolders.length);
|
2013-01-18 20:50:44 +04:00
|
|
|
if(selectedFiles.length>0){
|
|
|
|
selection+=' & ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(selectedFiles.length>0){
|
2013-08-09 22:37:18 +04:00
|
|
|
selection += n('files', '%n file', '%n files', selectedFiles.length);
|
2013-01-18 20:50:44 +04:00
|
|
|
}
|
|
|
|
$('#headerName>span.name').text(selection);
|
|
|
|
$('#modified').text('');
|
|
|
|
$('table').addClass('multiselect');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief get a list of selected files
|
|
|
|
* @param string property (option) the property of the file requested
|
|
|
|
* @return array
|
|
|
|
*
|
|
|
|
* possible values for property: name, mime, size and type
|
|
|
|
* if property is set, an array with that property for each file is returnd
|
|
|
|
* if it's ommited an array of objects with all properties is returned
|
|
|
|
*/
|
|
|
|
function getSelectedFiles(property){
|
|
|
|
var elements=$('td.filename input:checkbox:checked').parent().parent();
|
|
|
|
var files=[];
|
|
|
|
elements.each(function(i,element){
|
|
|
|
var file={
|
|
|
|
name:$(element).attr('data-filename'),
|
|
|
|
file:$(element).attr('data-file'),
|
|
|
|
timestamp:$(element).attr('data-timestamp'),
|
2013-01-22 15:00:04 +04:00
|
|
|
type:$(element).attr('data-type'),
|
|
|
|
dirlisting:$(element).attr('data-dirlisting')
|
2013-01-18 20:50:44 +04:00
|
|
|
};
|
|
|
|
if(property){
|
|
|
|
files.push(file[property]);
|
|
|
|
}else{
|
|
|
|
files.push(file);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return files;
|
2013-01-31 21:14:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function fileDownloadPath(dir, file) {
|
|
|
|
return OC.filePath('files_trashbin', '', 'download.php') + '?file='+encodeURIComponent(file);
|
|
|
|
}
|
2013-07-26 16:54:27 +04:00
|
|
|
|
|
|
|
function enableActions() {
|
|
|
|
$(".action").css("display", "inline");
|
|
|
|
$(":input:checkbox").css("display", "inline");
|
|
|
|
}
|
|
|
|
|
|
|
|
function disableActions() {
|
|
|
|
$(".action").css("display", "none");
|
|
|
|
$(":input:checkbox").css("display", "none");
|
|
|
|
}
|
2013-08-17 15:07:18 +04:00
|
|
|
function onClickBreadcrumb(e){
|
|
|
|
var $el = $(e.target).closest('.crumb');
|
|
|
|
e.preventDefault();
|
|
|
|
FileList.changeDirectory(decodeURIComponent($el.data('dir')));
|
|
|
|
}
|
|
|
|
|