2012-03-27 23:38:55 +04:00
|
|
|
var uploadingFiles = {};
|
|
|
|
Files={
|
|
|
|
cancelUpload:function(filename) {
|
|
|
|
if(uploadingFiles[filename]) {
|
|
|
|
uploadingFiles[filename].abort();
|
|
|
|
delete uploadingFiles[filename];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
cancelUploads:function() {
|
2012-04-16 01:52:36 +04:00
|
|
|
$.each(uploadingFiles,function(index,file) {
|
|
|
|
if(typeof file['abort'] === 'function') {
|
|
|
|
file.abort();
|
|
|
|
var filename = $('tr').filterAttr('data-file',index);
|
|
|
|
filename.hide();
|
|
|
|
filename.find('input[type="checkbox"]').removeAttr('checked');
|
|
|
|
filename.removeClass('selected');
|
|
|
|
} else {
|
|
|
|
$.each(file,function(i,f) {
|
|
|
|
f.abort();
|
|
|
|
delete file[i];
|
|
|
|
});
|
|
|
|
}
|
2012-03-27 23:38:55 +04:00
|
|
|
delete uploadingFiles[index];
|
|
|
|
});
|
|
|
|
procesSelection();
|
|
|
|
}
|
|
|
|
}
|
2011-03-03 01:06:23 +03:00
|
|
|
$(document).ready(function() {
|
2011-11-02 01:35:13 +04:00
|
|
|
$('#fileList tr').each(function(){
|
|
|
|
//little hack to set unescape filenames in attribute
|
2011-11-06 16:50:05 +04:00
|
|
|
$(this).attr('data-file',decodeURIComponent($(this).attr('data-file')));
|
2011-11-02 01:35:13 +04:00
|
|
|
});
|
2012-03-16 19:25:41 +04:00
|
|
|
|
2011-07-30 16:42:58 +04:00
|
|
|
if($('tr[data-file]').length==0){
|
|
|
|
$('.file_upload_filename').addClass('highlight');
|
|
|
|
}
|
2012-03-16 19:25:41 +04:00
|
|
|
|
2011-04-17 19:49:56 +04:00
|
|
|
$('#file_action_panel').attr('activeAction', false);
|
2011-07-07 23:43:35 +04:00
|
|
|
|
|
|
|
//drag/drop of files
|
2012-05-15 04:41:06 +04:00
|
|
|
$('#fileList tr[data-write="true"] td.filename').draggable(dragOptions);
|
2012-01-02 22:08:20 +04:00
|
|
|
$('#fileList tr[data-type="dir"][data-write="true"] td.filename').droppable(folderDropOptions);
|
2012-04-15 18:06:16 +04:00
|
|
|
$('div.crumb:not(.last)').droppable(crumbDropOptions);
|
2011-11-24 00:31:27 +04:00
|
|
|
$('ul#apps>li:first-child').data('dir','');
|
2012-04-15 18:06:16 +04:00
|
|
|
if($('div.crumb').length){
|
|
|
|
$('ul#apps>li:first-child').droppable(crumbDropOptions);
|
|
|
|
}
|
2012-03-16 19:25:41 +04:00
|
|
|
|
2011-08-12 00:22:32 +04:00
|
|
|
// Triggers invisible file input
|
2011-08-12 13:42:41 +04:00
|
|
|
$('.file_upload_button_wrapper').live('click', function() {
|
|
|
|
$(this).parent().children('.file_upload_start').trigger('click');
|
2011-08-12 00:22:32 +04:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2011-06-04 20:44:14 +04:00
|
|
|
// Sets the file-action buttons behaviour :
|
2011-07-22 02:18:41 +04:00
|
|
|
$('tr').live('mouseenter',function(event) {
|
2012-06-04 12:42:09 +04:00
|
|
|
FileActions.display($(this).children('td.filename'), $(this).attr('data-file'), $(this).attr('data-type'));
|
2011-06-04 20:44:14 +04:00
|
|
|
});
|
2011-07-22 02:18:41 +04:00
|
|
|
$('tr').live('mouseleave',function(event) {
|
|
|
|
FileActions.hide();
|
|
|
|
});
|
|
|
|
|
2011-08-28 23:21:53 +04:00
|
|
|
var lastChecked;
|
|
|
|
|
2011-06-04 22:16:44 +04:00
|
|
|
// Sets the file link behaviour :
|
2011-06-05 00:02:27 +04:00
|
|
|
$('td.filename a').live('click',function(event) {
|
2011-08-28 23:21:53 +04:00
|
|
|
event.preventDefault();
|
|
|
|
if (event.ctrlKey || event.shiftKey) {
|
|
|
|
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');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2011-08-28 22:14:50 +04:00
|
|
|
var checkbox = $(this).parent().children('input:checkbox');
|
2011-08-28 23:21:53 +04:00
|
|
|
lastChecked = checkbox;
|
2011-08-28 22:14:50 +04:00
|
|
|
if ($(checkbox).attr('checked')) {
|
|
|
|
$(checkbox).removeAttr('checked');
|
|
|
|
$(checkbox).parent().parent().removeClass('selected');
|
|
|
|
$('#select_all').removeAttr('checked');
|
|
|
|
} else {
|
|
|
|
$(checkbox).attr('checked', 'checked');
|
|
|
|
$(checkbox).parent().parent().toggleClass('selected');
|
|
|
|
var selectedCount=$('td.filename input:checkbox:checked').length;
|
|
|
|
if (selectedCount == $('td.filename input:checkbox').length) {
|
|
|
|
$('#select_all').attr('checked', 'checked');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
procesSelection();
|
|
|
|
} else {
|
2011-11-02 23:26:17 +04:00
|
|
|
var filename=$(this).parent().parent().attr('data-file');
|
2011-12-06 02:51:44 +04:00
|
|
|
var tr=$('tr').filterAttr('data-file',filename);
|
2012-01-01 05:14:00 +04:00
|
|
|
var renaming=tr.data('renaming');
|
|
|
|
if(!renaming && !FileList.isLoading(filename)){
|
2011-08-28 22:14:50 +04:00
|
|
|
var mime=$(this).parent().parent().data('mime');
|
|
|
|
var type=$(this).parent().parent().data('type');
|
|
|
|
var action=FileActions.getDefault(mime,type);
|
|
|
|
if(action){
|
|
|
|
action(filename);
|
|
|
|
}
|
2011-07-19 22:57:40 +04:00
|
|
|
}
|
2011-06-04 22:16:44 +04:00
|
|
|
}
|
2012-03-16 19:25:41 +04:00
|
|
|
|
2011-06-04 22:16:44 +04:00
|
|
|
});
|
2012-03-16 19:25:41 +04:00
|
|
|
|
2011-06-04 20:44:14 +04:00
|
|
|
// Sets the select_all checkbox behaviour :
|
|
|
|
$('#select_all').click(function() {
|
2011-07-07 04:28:57 +04:00
|
|
|
if($(this).attr('checked')){
|
2011-06-04 20:44:14 +04:00
|
|
|
// Check all
|
2011-07-22 00:01:55 +04:00
|
|
|
$('td.filename input:checkbox').attr('checked', true);
|
|
|
|
$('td.filename input:checkbox').parent().parent().addClass('selected');
|
2011-07-07 04:28:57 +04:00
|
|
|
}else{
|
2011-06-04 20:44:14 +04:00
|
|
|
// Uncheck all
|
2011-07-22 00:01:55 +04:00
|
|
|
$('td.filename input:checkbox').attr('checked', false);
|
|
|
|
$('td.filename input:checkbox').parent().parent().removeClass('selected');
|
2011-07-07 04:28:57 +04:00
|
|
|
}
|
2011-07-22 00:01:55 +04:00
|
|
|
procesSelection();
|
2011-06-04 20:44:14 +04:00
|
|
|
});
|
2012-03-16 19:25:41 +04:00
|
|
|
|
2012-03-29 20:17:46 +04:00
|
|
|
$('td.filename input:checkbox').live('change',function(event) {
|
2011-08-28 23:21:53 +04:00
|
|
|
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');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2011-07-22 00:01:55 +04:00
|
|
|
var selectedCount=$('td.filename input:checkbox:checked').length;
|
2011-07-07 04:28:57 +04:00
|
|
|
$(this).parent().parent().toggleClass('selected');
|
2011-04-18 14:49:52 +04:00
|
|
|
if(!$(this).attr('checked')){
|
|
|
|
$('#select_all').attr('checked',false);
|
|
|
|
}else{
|
2011-07-22 00:01:55 +04:00
|
|
|
if(selectedCount==$('td.filename input:checkbox').length){
|
2011-04-18 14:49:52 +04:00
|
|
|
$('#select_all').attr('checked',true);
|
|
|
|
}
|
|
|
|
}
|
2011-07-22 00:01:55 +04:00
|
|
|
procesSelection();
|
2011-04-18 14:49:52 +04:00
|
|
|
});
|
2012-03-16 19:25:41 +04:00
|
|
|
|
2011-04-19 14:21:55 +04:00
|
|
|
$('#file_newfolder_name').click(function(){
|
|
|
|
if($('#file_newfolder_name').val() == 'New Folder'){
|
|
|
|
$('#file_newfolder_name').val('');
|
|
|
|
}
|
|
|
|
});
|
2012-03-16 19:25:41 +04:00
|
|
|
|
2011-07-26 18:14:20 +04:00
|
|
|
$('.download').click('click',function(event) {
|
2011-07-25 22:24:59 +04:00
|
|
|
var files=getSelectedFiles('name').join(';');
|
2011-04-18 17:40:17 +04:00
|
|
|
var dir=$('#dir').val()||'/';
|
2012-03-16 19:25:41 +04:00
|
|
|
$('#notification').text(t('files','generating ZIP-file, it may take some time.'));
|
|
|
|
$('#notification').fadeIn();
|
2012-05-10 01:35:47 +04:00
|
|
|
window.location=OC.filePath('files', 'ajax', 'download.php') + '?'+ $.param({ dir: dir, files: files });
|
2011-04-18 17:40:17 +04:00
|
|
|
return false;
|
|
|
|
});
|
2012-03-16 19:25:41 +04:00
|
|
|
|
2011-07-22 00:01:55 +04:00
|
|
|
$('.delete').click(function(event) {
|
2011-08-04 02:22:44 +04:00
|
|
|
var files=getSelectedFiles('name');
|
|
|
|
event.preventDefault();
|
2011-08-28 03:32:48 +04:00
|
|
|
FileList.do_delete(files);
|
2011-04-18 18:48:35 +04:00
|
|
|
return false;
|
|
|
|
});
|
2011-06-03 04:44:31 +04:00
|
|
|
|
2012-03-16 03:03:23 +04:00
|
|
|
// drag&drop support using jquery.fileupload
|
2012-04-15 18:47:53 +04:00
|
|
|
// TODO use OC.dialogs
|
2012-03-27 23:38:55 +04:00
|
|
|
$(document).bind('drop dragover', function (e) {
|
|
|
|
e.preventDefault(); // prevent browser from doing anything, if file isn't dropped in dropZone
|
|
|
|
});
|
|
|
|
|
2012-03-16 03:03:23 +04:00
|
|
|
$(function() {
|
|
|
|
$('.file_upload_start').fileupload({
|
2012-03-27 23:38:55 +04:00
|
|
|
dropZone: $('#content'), // restrict dropZone to content div
|
2012-03-16 03:03:23 +04:00
|
|
|
add: function(e, data) {
|
|
|
|
var files = data.files;
|
|
|
|
var totalSize=0;
|
|
|
|
if(files){
|
|
|
|
for(var i=0;i<files.length;i++){
|
2012-05-24 22:47:05 +04:00
|
|
|
if(files[i].size ==0 && files[i].type== '')
|
|
|
|
{
|
2012-05-24 23:16:00 +04:00
|
|
|
OC.dialogs.alert(t('files', 'Unable to upload your file as it is a directory or has 0 bytes'), t('files', 'Upload Error'));
|
2012-05-24 22:47:05 +04:00
|
|
|
return;
|
|
|
|
}
|
2012-03-16 03:03:23 +04:00
|
|
|
totalSize+=files[i].size;
|
|
|
|
if(FileList.deleteFiles && FileList.deleteFiles.indexOf(files[i].name)!=-1){//finish delete if we are uploading a deleted file
|
|
|
|
FileList.finishDelete(function(){
|
2012-03-17 16:56:33 +04:00
|
|
|
$('.file_upload_start').change();
|
2012-03-16 03:03:23 +04:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
2011-07-20 17:50:42 +04:00
|
|
|
}
|
2011-07-19 22:23:33 +04:00
|
|
|
}
|
2012-03-16 03:03:23 +04:00
|
|
|
if(totalSize>$('#max_upload').val()){
|
2012-03-16 03:11:50 +04:00
|
|
|
$( '#uploadsize-message' ).dialog({
|
2012-03-16 03:03:23 +04:00
|
|
|
modal: true,
|
|
|
|
buttons: {
|
|
|
|
Close: function() {
|
2012-03-16 03:11:50 +04:00
|
|
|
$( this ).dialog( 'close' );
|
2012-03-16 03:03:23 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}else{
|
|
|
|
var date=new Date();
|
2011-09-23 01:24:24 +04:00
|
|
|
if(files){
|
2012-03-16 03:03:23 +04:00
|
|
|
for(var i=0;i<files.length;i++){
|
|
|
|
if(files[i].size>0){
|
|
|
|
var size=files[i].size;
|
|
|
|
}else{
|
|
|
|
var size=t('files','Pending');
|
|
|
|
}
|
2012-03-27 23:38:55 +04:00
|
|
|
if(files && !dirName){
|
2012-05-24 20:56:01 +04:00
|
|
|
FileList.addFile(getUniqueName(files[i].name),size,date,true);
|
2012-03-27 23:38:55 +04:00
|
|
|
} else if(dirName) {
|
|
|
|
var uploadtext = $('tr').filterAttr('data-type', 'dir').filterAttr('data-file', dirName).find('.uploadtext')
|
|
|
|
var currentUploads = parseInt(uploadtext.attr('currentUploads'));
|
|
|
|
currentUploads += 1;
|
|
|
|
uploadtext.attr('currentUploads', currentUploads);
|
|
|
|
if(currentUploads === 1) {
|
|
|
|
var img = OC.imagePath('core', 'loading.gif');
|
|
|
|
var tr=$('tr').filterAttr('data-file',dirName);
|
|
|
|
tr.find('td.filename').attr('style','background-image:url('+img+')');
|
|
|
|
uploadtext.text('1 file uploading');
|
|
|
|
uploadtext.show();
|
|
|
|
} else {
|
|
|
|
uploadtext.text(currentUploads + ' files uploading')
|
|
|
|
}
|
2012-03-16 03:03:23 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
var filename=this.value.split('\\').pop(); //ie prepends C:\fakepath\ in front of the filename
|
2012-05-24 20:56:01 +04:00
|
|
|
FileList.addFile(getUniqueName(filename),'Pending',date,true);
|
|
|
|
}
|
|
|
|
if($.support.xhrFileUpload) {
|
|
|
|
for(var i=0;i<files.length;i++){
|
|
|
|
var fileName = files[i].name
|
|
|
|
var dropTarget = $(e.originalEvent.target).closest('tr');
|
|
|
|
if(dropTarget && dropTarget.attr('data-type') === 'dir') { // drag&drop upload to folder
|
|
|
|
var dirName = dropTarget.attr('data-file')
|
|
|
|
var jqXHR = $('.file_upload_start').fileupload('send', {files: files[i],
|
|
|
|
formData: function(form) {
|
|
|
|
var formArray = form.serializeArray();
|
|
|
|
formArray[1]['value'] = dirName;
|
|
|
|
return formArray;
|
|
|
|
}}).success(function(result, textStatus, jqXHR) {
|
|
|
|
var response;
|
|
|
|
response=jQuery.parseJSON(result);
|
|
|
|
if(response[0] == undefined || response[0].status != 'success') {
|
|
|
|
$('#notification').text(t('files', response.data.message));
|
|
|
|
$('#notification').fadeIn();
|
|
|
|
}
|
|
|
|
var file=response[0];
|
|
|
|
delete uploadingFiles[dirName][file.name];
|
|
|
|
var currentUploads = parseInt(uploadtext.attr('currentUploads'));
|
|
|
|
currentUploads -= 1;
|
|
|
|
uploadtext.attr('currentUploads', currentUploads);
|
|
|
|
if(currentUploads === 0) {
|
|
|
|
var img = OC.imagePath('core', 'filetypes/folder.png');
|
|
|
|
var tr=$('tr').filterAttr('data-file',dirName);
|
|
|
|
tr.find('td.filename').attr('style','background-image:url('+img+')');
|
|
|
|
uploadtext.text('');
|
|
|
|
uploadtext.hide();
|
|
|
|
} else {
|
|
|
|
uploadtext.text(currentUploads + ' files uploading')
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.error(function(jqXHR, textStatus, errorThrown) {
|
|
|
|
if(errorThrown === 'abort') {
|
|
|
|
var currentUploads = parseInt(uploadtext.attr('currentUploads'));
|
|
|
|
currentUploads -= 1;
|
|
|
|
uploadtext.attr('currentUploads', currentUploads);
|
|
|
|
if(currentUploads === 0) {
|
|
|
|
var img = OC.imagePath('core', 'filetypes/folder.png');
|
|
|
|
var tr=$('tr').filterAttr('data-file',dirName);
|
|
|
|
tr.find('td.filename').attr('style','background-image:url('+img+')');
|
|
|
|
uploadtext.text('');
|
|
|
|
uploadtext.hide();
|
|
|
|
} else {
|
|
|
|
uploadtext.text(currentUploads + ' files uploading')
|
|
|
|
}
|
|
|
|
$('#notification').hide();
|
|
|
|
$('#notification').text(t('files', 'Upload cancelled.'));
|
|
|
|
$('#notification').fadeIn();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
//TODO test with filenames containing slashes
|
|
|
|
if(uploadingFiles[dirName] === undefined) {
|
|
|
|
uploadingFiles[dirName] = {};
|
|
|
|
}
|
|
|
|
uploadingFiles[dirName][fileName] = jqXHR;
|
|
|
|
} else {
|
|
|
|
var jqXHR = $('.file_upload_start').fileupload('send', {files: files[i]})
|
|
|
|
.success(function(result, textStatus, jqXHR) {
|
|
|
|
var response;
|
|
|
|
response=jQuery.parseJSON(result);
|
|
|
|
if(response[0] != undefined && response[0].status == 'success') {
|
|
|
|
var file=response[0];
|
|
|
|
delete uploadingFiles[file.name];
|
|
|
|
$('tr').filterAttr('data-file',file.name).data('mime',file.mime);
|
|
|
|
var size = $('tr').filterAttr('data-file',file.name).find('td.filesize').text();
|
|
|
|
if(size==t('files','Pending')){
|
|
|
|
$('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size);
|
|
|
|
}
|
|
|
|
FileList.loadingDone(file.name);
|
|
|
|
} else {
|
|
|
|
$('#notification').text(t('files', response.data.message));
|
|
|
|
$('#notification').fadeIn();
|
|
|
|
$('#fileList > tr').not('[data-mime]').fadeOut();
|
|
|
|
$('#fileList > tr').not('[data-mime]').remove();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.error(function(jqXHR, textStatus, errorThrown) {
|
|
|
|
if(errorThrown === 'abort') {
|
|
|
|
$('#notification').hide();
|
|
|
|
$('#notification').text(t('files', 'Upload cancelled.'));
|
|
|
|
$('#notification').fadeIn();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
uploadingFiles[files[i].name] = jqXHR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
data.submit().success(function(data, status) {
|
|
|
|
response = jQuery.parseJSON(data[0].body.innerText);
|
|
|
|
if(response[0] != undefined && response[0].status == 'success') {
|
|
|
|
var file=response[0];
|
|
|
|
delete uploadingFiles[file.name];
|
|
|
|
$('tr').filterAttr('data-file',file.name).data('mime',file.mime);
|
|
|
|
var size = $('tr').filterAttr('data-file',file.name).find('td.filesize').text();
|
|
|
|
if(size==t('files','Pending')){
|
|
|
|
$('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size);
|
|
|
|
}
|
|
|
|
FileList.loadingDone(file.name);
|
|
|
|
} else {
|
|
|
|
$('#notification').text(t('files', response.data.message));
|
|
|
|
$('#notification').fadeIn();
|
|
|
|
$('#fileList > tr').not('[data-mime]').fadeOut();
|
|
|
|
$('#fileList > tr').not('[data-mime]').remove();
|
|
|
|
}
|
|
|
|
});
|
2011-09-23 01:24:24 +04:00
|
|
|
}
|
2011-07-22 17:48:30 +04:00
|
|
|
}
|
2012-03-16 03:03:23 +04:00
|
|
|
},
|
|
|
|
fail: function(e, data) {
|
|
|
|
// TODO: cancel upload & display error notification
|
|
|
|
},
|
|
|
|
progress: function(e, data) {
|
2012-03-18 01:20:39 +04:00
|
|
|
// TODO: show nice progress bar in file row
|
|
|
|
},
|
|
|
|
progressall: function(e, data) {
|
|
|
|
var progress = (data.loaded/data.total)*100;
|
|
|
|
$('#uploadprogressbar').progressbar('value',progress);
|
|
|
|
},
|
|
|
|
start: function(e, data) {
|
2012-03-27 23:38:55 +04:00
|
|
|
$('#uploadprogressbar').progressbar({value:0});
|
|
|
|
$('#uploadprogressbar').fadeIn();
|
|
|
|
if(data.dataType != 'iframe ') {
|
|
|
|
$('#upload input.stop').show();
|
|
|
|
}
|
2012-03-18 01:20:39 +04:00
|
|
|
},
|
|
|
|
stop: function(e, data) {
|
2012-03-27 23:38:55 +04:00
|
|
|
if(data.dataType != 'iframe ') {
|
|
|
|
$('#upload input.stop').hide();
|
|
|
|
}
|
|
|
|
$('#uploadprogressbar').progressbar('value',100);
|
|
|
|
$('#uploadprogressbar').fadeOut();
|
2011-06-05 00:59:18 +04:00
|
|
|
}
|
2012-03-16 03:03:23 +04:00
|
|
|
})
|
2011-06-03 04:44:31 +04:00
|
|
|
});
|
2012-03-16 19:25:41 +04:00
|
|
|
|
2011-07-19 22:23:33 +04:00
|
|
|
//add multiply file upload attribute to all browsers except konqueror (which crashes when it's used)
|
|
|
|
if(navigator.userAgent.search(/konqueror/i)==-1){
|
2011-07-20 17:50:42 +04:00
|
|
|
$('.file_upload_start').attr('multiple','multiple')
|
2011-07-19 22:23:33 +04:00
|
|
|
}
|
2011-07-22 18:52:35 +04:00
|
|
|
|
|
|
|
//if the breadcrumb is to long, start by replacing foldernames with '...' except for the current folder
|
|
|
|
var crumb=$('div.crumb').first();
|
|
|
|
while($('div.controls').height()>40 && crumb.next('div.crumb').length>0){
|
|
|
|
crumb.children('a').text('...');
|
|
|
|
crumb=crumb.next('div.crumb');
|
|
|
|
}
|
|
|
|
//if that isn't enough, start removing items from the breacrumb except for the current folder and it's parent
|
|
|
|
var crumb=$('div.crumb').first();
|
|
|
|
var next=crumb.next('div.crumb');
|
|
|
|
while($('div.controls').height()>40 && next.next('div.crumb').length>0){
|
|
|
|
crumb.remove();
|
|
|
|
crumb=next;
|
|
|
|
next=crumb.next('div.crumb');
|
|
|
|
}
|
|
|
|
//still not enough, start shorting down the current folder name
|
|
|
|
var crumb=$('div.crumb>a').last();
|
|
|
|
while($('div.controls').height()>40 && crumb.text().length>6){
|
|
|
|
var text=crumb.text()
|
|
|
|
text=text.substr(0,text.length-6)+'...';
|
|
|
|
crumb.text(text);
|
|
|
|
}
|
2012-03-16 19:25:41 +04:00
|
|
|
|
2011-10-23 13:40:40 +04:00
|
|
|
$(window).click(function(){
|
|
|
|
$('#new>ul').hide();
|
|
|
|
$('#new').removeClass('active');
|
2011-11-04 06:02:51 +04:00
|
|
|
$('button.file_upload_filename').removeClass('active');
|
2011-10-23 13:40:40 +04:00
|
|
|
$('#new li').each(function(i,element){
|
|
|
|
if($(element).children('p').length==0){
|
|
|
|
$(element).children('input').remove();
|
|
|
|
$(element).append('<p>'+$(element).data('text')+'</p>');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
$('#new').click(function(event){
|
|
|
|
event.stopPropagation();
|
|
|
|
});
|
|
|
|
$('#new>a').click(function(){
|
|
|
|
$('#new>ul').toggle();
|
|
|
|
$('#new').toggleClass('active');
|
2011-11-04 06:02:51 +04:00
|
|
|
$('button.file_upload_filename').toggleClass('active');
|
2011-10-23 13:40:40 +04:00
|
|
|
});
|
|
|
|
$('#new li').click(function(){
|
|
|
|
if($(this).children('p').length==0){
|
|
|
|
return;
|
|
|
|
}
|
2012-03-16 19:25:41 +04:00
|
|
|
|
2011-10-23 13:40:40 +04:00
|
|
|
$('#new li').each(function(i,element){
|
|
|
|
if($(element).children('p').length==0){
|
|
|
|
$(element).children('input').remove();
|
|
|
|
$(element).append('<p>'+$(element).data('text')+'</p>');
|
|
|
|
}
|
|
|
|
});
|
2012-03-16 19:25:41 +04:00
|
|
|
|
2011-10-23 13:40:40 +04:00
|
|
|
var type=$(this).data('type');
|
|
|
|
var text=$(this).children('p').text();
|
|
|
|
$(this).data('text',text);
|
|
|
|
$(this).children('p').remove();
|
|
|
|
var input=$('<input>');
|
|
|
|
$(this).append(input);
|
|
|
|
input.focus();
|
|
|
|
input.change(function(){
|
2012-06-29 17:23:04 +04:00
|
|
|
var name=getUniqueName($(this).val());
|
2012-06-12 16:11:28 +04:00
|
|
|
if(type != 'web' && name.indexOf('/')!=-1){
|
2012-06-06 02:02:13 +04:00
|
|
|
$('#notification').text(t('files','Invalid name, \'/\' is not allowed.'));
|
|
|
|
$('#notification').fadeIn();
|
|
|
|
return;
|
|
|
|
}
|
2011-10-23 13:40:40 +04:00
|
|
|
switch(type){
|
|
|
|
case 'file':
|
2012-03-08 00:43:44 +04:00
|
|
|
$.post(
|
|
|
|
OC.filePath('files','ajax','newfile.php'),
|
|
|
|
{dir:$('#dir').val(),filename:name,content:" \n"},
|
|
|
|
function(data){
|
2011-10-23 13:40:40 +04:00
|
|
|
var date=new Date();
|
|
|
|
FileList.addFile(name,0,date);
|
2011-11-04 06:11:29 +04:00
|
|
|
var tr=$('tr').filterAttr('data-file',name);
|
|
|
|
tr.data('mime','text/plain');
|
|
|
|
getMimeIcon('text/plain',function(path){
|
|
|
|
tr.find('td.filename').attr('style','background-image:url('+path+')');
|
|
|
|
});
|
2012-03-08 00:43:44 +04:00
|
|
|
}
|
|
|
|
);
|
2011-10-23 13:40:40 +04:00
|
|
|
break;
|
|
|
|
case 'folder':
|
2012-03-08 00:43:44 +04:00
|
|
|
$.post(
|
|
|
|
OC.filePath('files','ajax','newfolder.php'),
|
|
|
|
{dir:$('#dir').val(),foldername:name},
|
|
|
|
function(data){
|
2011-10-23 13:40:40 +04:00
|
|
|
var date=new Date();
|
|
|
|
FileList.addDir(name,0,date);
|
2012-03-08 00:43:44 +04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
case 'web':
|
|
|
|
if(name.substr(0,8)!='https://' && name.substr(0,7)!='http://'){
|
|
|
|
name='http://'.name;
|
|
|
|
}
|
|
|
|
var localName=name;
|
|
|
|
if(localName.substr(localName.length-1,1)=='/'){//strip /
|
|
|
|
localName=localName.substr(0,localName.length-1)
|
|
|
|
}
|
|
|
|
if(localName.indexOf('/')){//use last part of url
|
|
|
|
localName=localName.split('/').pop();
|
|
|
|
}else{//or the domain
|
|
|
|
localName=(localName.match(/:\/\/(.[^/]+)/)[1]).replace('www.','');
|
|
|
|
}
|
2012-06-29 17:23:04 +04:00
|
|
|
localName = getUniqueName(localName);
|
2012-03-08 00:43:44 +04:00
|
|
|
$.post(
|
|
|
|
OC.filePath('files','ajax','newfile.php'),
|
|
|
|
{dir:$('#dir').val(),source:name,filename:localName},
|
|
|
|
function(result){
|
|
|
|
if(result.status == 'success'){
|
|
|
|
var date=new Date();
|
|
|
|
FileList.addFile(localName,0,date);
|
|
|
|
var tr=$('tr').filterAttr('data-file',localName);
|
|
|
|
tr.data('mime',result.data.mime);
|
|
|
|
getMimeIcon(result.data.mime,function(path){
|
|
|
|
tr.find('td.filename').attr('style','background-image:url('+path+')');
|
|
|
|
});
|
|
|
|
}else{
|
2012-03-16 19:25:41 +04:00
|
|
|
|
2012-03-08 00:43:44 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
2011-10-23 13:40:40 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
var li=$(this).parent();
|
|
|
|
$(this).remove();
|
|
|
|
li.append('<p>'+li.data('text')+'</p>');
|
|
|
|
$('#new>a').click();
|
|
|
|
});
|
|
|
|
});
|
2011-11-10 19:40:09 +04:00
|
|
|
|
|
|
|
//check if we need to scan the filesystem
|
|
|
|
$.get(OC.filePath('files','ajax','scan.php'),{checkonly:'true'}, function(response) {
|
|
|
|
if(response.data.done){
|
|
|
|
scanFiles();
|
|
|
|
}
|
|
|
|
}, "json");
|
2011-03-03 01:06:23 +03:00
|
|
|
});
|
2011-04-17 00:56:40 +04:00
|
|
|
|
2012-04-25 01:56:51 +04:00
|
|
|
function scanFiles(force,dir){
|
2012-04-26 00:42:00 +04:00
|
|
|
if(!dir){
|
|
|
|
dir='';
|
|
|
|
}
|
2011-11-10 19:40:09 +04:00
|
|
|
force=!!force; //cast to bool
|
2012-02-01 18:33:12 +04:00
|
|
|
scanFiles.scanning=true;
|
2011-11-10 19:40:09 +04:00
|
|
|
$('#scanning-message').show();
|
2012-01-31 16:56:58 +04:00
|
|
|
$('#fileList').remove();
|
2012-04-25 01:56:51 +04:00
|
|
|
var scannerEventSource=new OC.EventSource(OC.filePath('files','ajax','scan.php'),{force:force,dir:dir});
|
2012-01-31 16:56:58 +04:00
|
|
|
scanFiles.cancel=scannerEventSource.close.bind(scannerEventSource);
|
2012-02-01 18:25:00 +04:00
|
|
|
scannerEventSource.listen('scanning',function(data){
|
|
|
|
$('#scan-count').text(data.count+' files scanned');
|
|
|
|
$('#scan-current').text(data.file+'/');
|
2012-01-31 02:32:55 +04:00
|
|
|
});
|
|
|
|
scannerEventSource.listen('success',function(success){
|
2012-02-01 18:33:12 +04:00
|
|
|
scanFiles.scanning=false;
|
2012-01-31 02:32:55 +04:00
|
|
|
if(success){
|
2011-11-10 19:40:09 +04:00
|
|
|
window.location.reload();
|
|
|
|
}else{
|
2012-01-31 02:32:55 +04:00
|
|
|
alert('error while scanning');
|
2011-11-10 19:40:09 +04:00
|
|
|
}
|
2012-01-31 02:32:55 +04:00
|
|
|
});
|
2011-11-10 19:40:09 +04:00
|
|
|
}
|
2012-02-01 18:33:12 +04:00
|
|
|
scanFiles.scanning=false;
|
2011-11-10 19:40:09 +04:00
|
|
|
|
2011-06-04 20:44:14 +04:00
|
|
|
function boolOperationFinished(data, callback) {
|
|
|
|
result = jQuery.parseJSON(data.responseText);
|
2011-04-17 19:49:56 +04:00
|
|
|
if(result.status == 'success'){
|
2011-06-04 20:44:14 +04:00
|
|
|
callback.call();
|
2011-04-17 19:49:56 +04:00
|
|
|
} else {
|
|
|
|
alert(result.data.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-17 17:59:06 +04:00
|
|
|
function updateBreadcrumb(breadcrumbHtml) {
|
|
|
|
$('p.nav').empty().html(breadcrumbHtml);
|
|
|
|
}
|
|
|
|
|
2011-07-07 23:43:35 +04:00
|
|
|
//options for file drag/dropp
|
|
|
|
var dragOptions={
|
2011-07-08 00:18:35 +04:00
|
|
|
distance: 20, revert: 'invalid', opacity: 0.7,
|
2011-07-07 23:43:35 +04:00
|
|
|
stop: function(event, ui) {
|
|
|
|
$('#fileList tr td.filename').addClass('ui-draggable');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
var folderDropOptions={
|
|
|
|
drop: function( event, ui ) {
|
2012-04-15 18:06:16 +04:00
|
|
|
var file=ui.draggable.parent().data('file');
|
2012-05-09 02:07:14 +04:00
|
|
|
var target=$(this).find('.nametext').text().trim();
|
2011-07-07 23:43:35 +04:00
|
|
|
var dir=$('#dir').val();
|
|
|
|
$.ajax({
|
2012-04-26 19:35:12 +04:00
|
|
|
url: OC.filePath('files', 'ajax', 'move.php'),
|
2012-05-09 02:07:14 +04:00
|
|
|
data: "dir="+encodeURIComponent(dir)+"&file="+encodeURIComponent(file)+'&target='+encodeURIComponent(dir)+'/'+encodeURIComponent(target),
|
|
|
|
complete: function(data){boolOperationFinished(data, function(){
|
|
|
|
var el = $('#fileList tr').filterAttr('data-file',file).find('td.filename');
|
|
|
|
el.draggable('destroy');
|
|
|
|
FileList.remove(file);
|
|
|
|
});}
|
2011-07-07 23:43:35 +04:00
|
|
|
});
|
|
|
|
}
|
2011-07-22 00:01:55 +04:00
|
|
|
}
|
2011-07-26 18:43:12 +04:00
|
|
|
var crumbDropOptions={
|
|
|
|
drop: function( event, ui ) {
|
|
|
|
var file=ui.draggable.text().trim();
|
|
|
|
var target=$(this).data('dir');
|
|
|
|
var dir=$('#dir').val();
|
|
|
|
while(dir.substr(0,1)=='/'){//remove extra leading /'s
|
|
|
|
dir=dir.substr(1);
|
|
|
|
}
|
|
|
|
dir='/'+dir;
|
|
|
|
if(dir.substr(-1,1)!='/'){
|
|
|
|
dir=dir+'/';
|
|
|
|
}
|
2012-04-15 18:06:16 +04:00
|
|
|
if(target==dir || target+'/'==dir){
|
2011-07-26 18:43:12 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$.ajax({
|
2012-04-26 19:35:12 +04:00
|
|
|
url: OC.filePath('files', 'ajax', 'move.php'),
|
2012-04-10 15:53:27 +04:00
|
|
|
data: "dir="+encodeURIComponent(dir)+"&file="+encodeURIComponent(file)+'&target='+encodeURIComponent(target),
|
2011-07-26 18:43:12 +04:00
|
|
|
complete: function(data){boolOperationFinished(data, function(){
|
|
|
|
FileList.remove(file);
|
|
|
|
});}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
tolerance: 'pointer'
|
|
|
|
}
|
2011-07-22 00:01:55 +04:00
|
|
|
|
|
|
|
function procesSelection(){
|
2011-07-26 18:43:12 +04:00
|
|
|
var selected=getSelectedFiles();
|
|
|
|
var selectedFiles=selected.filter(function(el){return el.type=='file'});
|
|
|
|
var selectedFolders=selected.filter(function(el){return el.type=='dir'});
|
2011-07-22 00:01:55 +04:00
|
|
|
if(selectedFiles.length==0 && selectedFolders.length==0){
|
2011-08-28 06:16:39 +04:00
|
|
|
$('#headerName>span.name').text(t('files','Name'));
|
|
|
|
$('#headerSize').text(t('files','Size'));
|
2011-08-09 19:54:02 +04:00
|
|
|
$('#modified').text(t('files','Modified'));
|
2011-07-30 17:16:20 +04:00
|
|
|
$('th').removeClass('multiselect');
|
2011-07-28 14:14:55 +04:00
|
|
|
$('.selectedActions').hide();
|
2011-08-03 01:00:40 +04:00
|
|
|
$('thead').removeClass('fixed');
|
|
|
|
$('#headerName').css('width','auto');
|
|
|
|
$('#headerSize').css('width','auto');
|
|
|
|
$('#headerDate').css('width','auto');
|
|
|
|
$('table').css('padding-top','0');
|
2011-07-22 00:01:55 +04:00
|
|
|
}else{
|
2011-08-03 01:00:40 +04:00
|
|
|
var width={name:$('#headerName').css('width'),size:$('#headerSize').css('width'),date:$('#headerDate').css('width')};
|
|
|
|
$('#headerName').css('width',width.name);
|
|
|
|
$('#headerSize').css('width',width.size);
|
|
|
|
$('#headerDate').css('width',width.date);
|
2011-07-28 14:14:55 +04:00
|
|
|
$('.selectedActions').show();
|
2011-07-22 00:01:55 +04:00
|
|
|
var totalSize=0;
|
2011-07-26 18:43:12 +04:00
|
|
|
for(var i=0;i<selectedFiles.length;i++){
|
|
|
|
totalSize+=selectedFiles[i].size;
|
|
|
|
};
|
|
|
|
for(var i=0;i<selectedFolders.length;i++){
|
|
|
|
totalSize+=selectedFolders[i].size;
|
|
|
|
};
|
2011-07-29 01:56:42 +04:00
|
|
|
simpleSize=simpleFileSize(totalSize);
|
2011-08-28 06:16:39 +04:00
|
|
|
$('#headerSize').text(simpleSize);
|
2011-07-29 01:56:42 +04:00
|
|
|
$('#headerSize').attr('title',humanFileSize(totalSize));
|
2011-07-22 00:01:55 +04:00
|
|
|
var selection='';
|
2011-07-28 02:21:11 +04:00
|
|
|
if(selectedFolders.length>0){
|
|
|
|
if(selectedFolders.length==1){
|
2011-08-09 19:54:02 +04:00
|
|
|
selection+='1 '+t('files','folder');
|
2011-07-22 00:01:55 +04:00
|
|
|
}else{
|
2011-08-09 19:54:02 +04:00
|
|
|
selection+=selectedFolders.length+' '+t('files','folders');
|
2011-07-22 00:01:55 +04:00
|
|
|
}
|
2011-07-28 02:21:11 +04:00
|
|
|
if(selectedFiles.length>0){
|
|
|
|
selection+=' & ';
|
2011-07-22 00:01:55 +04:00
|
|
|
}
|
|
|
|
}
|
2011-07-28 02:21:11 +04:00
|
|
|
if(selectedFiles.length>0){
|
|
|
|
if(selectedFiles.length==1){
|
2011-08-09 19:54:02 +04:00
|
|
|
selection+='1 '+t('files','file');
|
2011-07-22 00:01:55 +04:00
|
|
|
}else{
|
2011-08-09 19:54:02 +04:00
|
|
|
selection+=selectedFiles.length+' '+t('files','files');
|
2011-07-22 00:01:55 +04:00
|
|
|
}
|
|
|
|
}
|
2011-07-28 02:21:11 +04:00
|
|
|
$('#headerName>span.name').text(selection);
|
2011-07-28 14:14:55 +04:00
|
|
|
$('#modified').text('');
|
2011-07-30 17:16:20 +04:00
|
|
|
$('th').addClass('multiselect');
|
2011-07-22 00:01:55 +04:00
|
|
|
}
|
2011-07-26 18:14:20 +04:00
|
|
|
}
|
|
|
|
|
2011-07-25 22:24:59 +04:00
|
|
|
/**
|
|
|
|
* @brief get a list of selected files
|
|
|
|
* @param string property (option) the property of the file requested
|
|
|
|
* @return array
|
|
|
|
*
|
2011-07-26 18:43:12 +04:00
|
|
|
* possible values for property: name, mime, size and type
|
2011-07-25 22:24:59 +04:00
|
|
|
* 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){
|
2011-07-26 18:43:12 +04:00
|
|
|
var elements=$('td.filename input:checkbox:checked').parent().parent();
|
2011-07-25 22:24:59 +04:00
|
|
|
var files=[];
|
|
|
|
elements.each(function(i,element){
|
|
|
|
var file={
|
2011-11-05 02:44:41 +04:00
|
|
|
name:$(element).attr('data-file'),
|
2011-07-26 18:43:12 +04:00
|
|
|
mime:$(element).data('mime'),
|
|
|
|
type:$(element).data('type'),
|
|
|
|
size:$(element).data('size'),
|
2011-07-25 22:24:59 +04:00
|
|
|
};
|
|
|
|
if(property){
|
|
|
|
files.push(file[property]);
|
|
|
|
}else{
|
2011-07-26 18:43:12 +04:00
|
|
|
files.push(file);
|
2011-07-25 22:24:59 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
return files;
|
2011-07-28 02:21:11 +04:00
|
|
|
}
|
2011-07-29 03:10:08 +04:00
|
|
|
|
|
|
|
function relative_modified_date(timestamp) {
|
|
|
|
var timediff = Math.round((new Date()).getTime() / 1000) - timestamp;
|
|
|
|
var diffminutes = Math.round(timediff/60);
|
|
|
|
var diffhours = Math.round(diffminutes/60);
|
|
|
|
var diffdays = Math.round(diffhours/24);
|
|
|
|
var diffmonths = Math.round(diffdays/31);
|
|
|
|
var diffyears = Math.round(diffdays/365);
|
2011-08-28 19:44:33 +04:00
|
|
|
if(timediff < 60) { return t('files','seconds ago'); }
|
|
|
|
else if(timediff < 120) { return '1 '+t('files','minute ago'); }
|
|
|
|
else if(timediff < 3600) { return diffminutes+' '+t('files','minutes ago'); }
|
2011-07-29 03:10:08 +04:00
|
|
|
//else if($timediff < 7200) { return '1 hour ago'; }
|
|
|
|
//else if($timediff < 86400) { return $diffhours.' hours ago'; }
|
2011-08-28 19:44:33 +04:00
|
|
|
else if(timediff < 86400) { return t('files','today'); }
|
|
|
|
else if(timediff < 172800) { return t('files','yesterday'); }
|
|
|
|
else if(timediff < 2678400) { return diffdays+' '+t('files','days ago'); }
|
|
|
|
else if(timediff < 5184000) { return t('files','last month'); }
|
2011-07-29 03:10:08 +04:00
|
|
|
//else if($timediff < 31556926) { return $diffmonths.' months ago'; }
|
2011-08-28 19:44:33 +04:00
|
|
|
else if(timediff < 31556926) { return t('files','months ago'); }
|
|
|
|
else if(timediff < 63113852) { return t('files','last year'); }
|
|
|
|
else { return diffyears+' '+t('files','years ago'); }
|
2011-07-29 03:10:08 +04:00
|
|
|
}
|
2011-07-29 03:36:31 +04:00
|
|
|
|
2011-10-08 23:18:47 +04:00
|
|
|
function getMimeIcon(mime, ready){
|
|
|
|
if(getMimeIcon.cache[mime]){
|
|
|
|
ready(getMimeIcon.cache[mime]);
|
|
|
|
}else{
|
|
|
|
$.get( OC.filePath('files','ajax','mimeicon.php')+'?mime='+mime, function(path){
|
|
|
|
getMimeIcon.cache[mime]=path;
|
|
|
|
ready(getMimeIcon.cache[mime]);
|
|
|
|
});
|
2011-07-29 03:36:31 +04:00
|
|
|
}
|
2011-07-30 14:14:09 +04:00
|
|
|
}
|
2011-10-08 23:18:47 +04:00
|
|
|
getMimeIcon.cache={};
|
2012-04-15 19:30:07 +04:00
|
|
|
|
|
|
|
function getUniqueName(name){
|
|
|
|
if($('tr').filterAttr('data-file',name).length>0){
|
|
|
|
var parts=name.split('.');
|
2012-06-29 17:23:04 +04:00
|
|
|
var extension = "";
|
|
|
|
if (parts.length > 1) {
|
|
|
|
extension=parts.pop();
|
|
|
|
}
|
2012-04-15 19:30:07 +04:00
|
|
|
var base=parts.join('.');
|
|
|
|
numMatch=base.match(/\((\d+)\)/);
|
|
|
|
var num=2;
|
|
|
|
if(numMatch && numMatch.length>0){
|
|
|
|
num=parseInt(numMatch[numMatch.length-1])+1;
|
|
|
|
base=base.split('(')
|
|
|
|
base.pop();
|
|
|
|
base=base.join('(').trim();
|
|
|
|
}
|
2012-06-29 17:23:04 +04:00
|
|
|
name=base+' ('+num+')';
|
|
|
|
if (extension) {
|
|
|
|
name = name+'.'+extension;
|
|
|
|
}
|
2012-04-15 19:30:07 +04:00
|
|
|
return getUniqueName(name);
|
|
|
|
}
|
|
|
|
return name;
|
|
|
|
}
|