nextcloud/apps/files/js/files.js

983 lines
30 KiB
JavaScript
Raw Normal View History

var uploadingFiles = {};
Files={
cancelUpload:function(filename) {
if(uploadingFiles[filename]) {
uploadingFiles[filename].abort();
delete uploadingFiles[filename];
return true;
}
return false;
},
cancelUploads:function() {
$.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];
});
}
delete uploadingFiles[index];
});
procesSelection();
},
2013-01-18 23:09:03 +04:00
updateMaxUploadFilesize:function(response) {
if(response == undefined) {
return;
}
if(response.data !== undefined && response.data.uploadMaxFilesize !== undefined) {
$('#max_upload').val(response.data.uploadMaxFilesize);
$('#upload.button').attr('original-title', response.data.maxHumanFilesize);
$('#usedSpacePercent').val(response.data.usedSpacePercent);
Files.displayStorageWarnings();
2013-01-18 23:09:03 +04:00
}
if(response[0] == undefined) {
return;
}
if(response[0].uploadMaxFilesize !== undefined) {
$('#max_upload').val(response[0].uploadMaxFilesize);
$('#upload.button').attr('original-title', response[0].maxHumanFilesize);
$('#usedSpacePercent').val(response[0].usedSpacePercent);
Files.displayStorageWarnings();
2013-01-18 23:09:03 +04:00
}
},
isFileNameValid:function (name) {
if (name === '.') {
OC.Notification.show(t('files', '\'.\' is an invalid file name.'));
return false;
}
if (name.length == 0) {
OC.Notification.show(t('files', 'File name cannot be empty.'));
return false;
}
// check for invalid characters
var invalid_characters = ['\\', '/', '<', '>', ':', '"', '|', '?', '*'];
for (var i = 0; i < invalid_characters.length; i++) {
if (name.indexOf(invalid_characters[i]) != -1) {
OC.Notification.show(t('files', "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed."));
return false;
}
}
OC.Notification.hide();
return true;
},
displayStorageWarnings: function() {
if (!OC.Notification.isHidden()) {
return;
}
var usedSpacePercent = $('#usedSpacePercent').val();
if (usedSpacePercent > 98) {
OC.Notification.show(t('files', 'Your storage is full, files can not be updated or synced anymore!'));
return;
}
if (usedSpacePercent > 90) {
OC.Notification.show(t('files', 'Your storage is almost full ({usedSpacePercent}%)', {usedSpacePercent: usedSpacePercent}));
}
}
2012-09-06 00:17:33 +04:00
};
$(document).ready(function() {
2013-01-14 23:30:39 +04:00
Files.bindKeyboardShortcuts(document, jQuery);
$('#fileList tr').each(function(){
//little hack to set unescape filenames in attribute
$(this).attr('data-file',decodeURIComponent($(this).attr('data-file')));
});
2011-04-17 19:49:56 +04:00
$('#file_action_panel').attr('activeAction', false);
//drag/drop of files
$('#fileList tr td.filename').each(function(i,e){
if ($(e).parent().data('permissions') & OC.PERMISSION_DELETE) {
$(e).draggable(dragOptions);
}
});
$('#fileList tr[data-type="dir"] td.filename').each(function(i,e){
if ($(e).parent().data('permissions') & OC.PERMISSION_CREATE){
$(e).droppable(folderDropOptions);
}
});
$('div.crumb:not(.last)').droppable(crumbDropOptions);
$('ul#apps>li:first-child').data('dir','');
if($('div.crumb').length){
$('ul#apps>li:first-child').droppable(crumbDropOptions);
}
2011-08-12 00:22:32 +04:00
// Triggers invisible file input
2013-01-19 01:38:44 +04:00
$('#upload a').on('click', function() {
2012-12-05 14:17:41 +04:00
$(this).parent().children('#file_upload_start').trigger('click');
2011-08-12 00:22:32 +04:00
return false;
});
2013-02-22 20:21:57 +04:00
2013-04-29 01:25:58 +04:00
// Trigger cancelling of file upload
2013-04-29 01:28:41 +04:00
$('#uploadprogresswrapper .stop').on('click', function() {
2013-04-29 01:25:58 +04:00
Files.cancelUploads();
});
2013-01-18 13:23:31 +04:00
// Show trash bin
2013-01-15 23:35:15 +04:00
$('#trash a').live('click', function() {
2013-01-18 13:23:31 +04:00
window.location=OC.filePath('files_trashbin', '', 'index.php');
2013-01-15 23:35:15 +04:00
});
2011-08-12 00:22:32 +04:00
2011-08-28 23:21:53 +04:00
var lastChecked;
2011-06-04 22:16:44 +04:00
// Sets the file link behaviour :
$('#fileList').on('click','td.filename a',function(event) {
2011-08-28 23:21:53 +04:00
if (event.ctrlKey || event.shiftKey) {
2013-01-09 18:21:55 +04:00
event.preventDefault();
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');
}
});
}
}
var checkbox = $(this).parent().children('input:checkbox');
2011-08-28 23:21:53 +04:00
lastChecked = checkbox;
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');
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)){
FileActions.currentFile = $(this).parent();
var mime=FileActions.getCurrentMimeType();
var type=FileActions.getCurrentType();
var permissions = FileActions.getCurrentPermissions();
2012-07-26 00:33:08 +04:00
var action=FileActions.getDefault(mime,type, permissions);
if(action){
2013-01-09 18:21:55 +04:00
event.preventDefault();
action(filename);
}
}
2011-06-04 22:16:44 +04:00
}
2011-06-04 22:16:44 +04:00
});
// Sets the select_all checkbox behaviour :
$('#select_all').click(function() {
if($(this).attr('checked')){
// 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');
}else{
// 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-22 00:01:55 +04:00
procesSelection();
});
2013-01-19 01:38:44 +04:00
$('#fileList').on('change', 'td.filename input:checkbox',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;
$(this).parent().parent().toggleClass('selected');
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){
$('#select_all').attr('checked',true);
}
}
2011-07-22 00:01:55 +04:00
procesSelection();
});
2011-07-26 18:14:20 +04:00
$('.download').click('click',function(event) {
2013-03-07 17:15:02 +04:00
var files=getSelectedFiles('name');
var fileslist = JSON.stringify(files);
2011-04-18 17:40:17 +04:00
var dir=$('#dir').val()||'/';
OC.Notification.show(t('files','Your download is being prepared. This might take some time if the files are big.'));
// use special download URL if provided, e.g. for public shared files
if ( (downloadURL = document.getElementById("downloadURL")) ) {
window.location=downloadURL.value+"&download&files="+encodeURIComponent(fileslist);
} else {
2013-03-07 17:15:02 +04:00
window.location=OC.filePath('files', 'ajax', 'download.php') + '?'+ $.param({ dir: dir, files: fileslist });
}
2011-04-18 17:40:17 +04:00
return false;
});
$('.delete-selected').click(function(event) {
var files=getSelectedFiles('name');
event.preventDefault();
FileList.do_delete(files);
2011-04-18 18:48:35 +04:00
return false;
});
// drag&drop support using jquery.fileupload
// TODO use OC.dialogs
$(document).bind('drop dragover', function (e) {
e.preventDefault(); // prevent browser from doing anything, if file isn't dropped in dropZone
});
2012-10-14 23:04:08 +04:00
2012-12-05 14:17:41 +04:00
if ( document.getElementById('data-upload-form') ) {
$(function() {
$('#file_upload_start').fileupload({
dropZone: $('#content'), // restrict dropZone to content div
//singleFileUploads is on by default, so the data.files array will always have length 1
add: function(e, data) {
2013-03-27 18:55:09 +04:00
if(data.files[0].type === '' && data.files[0].size == 4096)
{
data.textStatus = 'dirorzero';
data.errorThrown = t('files','Unable to upload your file as it is a directory or has 0 bytes');
var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload');
fu._trigger('fail', e, data);
return true; //don't upload this file but go on with next in queue
}
var totalSize=0;
$.each(data.originalFiles, function(i,file){
totalSize+=file.size;
});
if(totalSize>$('#max_upload').val()){
data.textStatus = 'notenoughspace';
data.errorThrown = t('files','Not enough space available');
var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload');
fu._trigger('fail', e, data);
return false; //don't upload anything
2012-12-18 19:10:48 +04:00
}
// start the actual file upload
var jqXHR = data.submit();
// remember jqXHR to show warning to user when he navigates away but an upload is still in progress
if (typeof data.context !== 'undefined' && data.context.data('type') === 'dir') {
var dirName = data.context.data('file');
if(typeof uploadingFiles[dirName] === 'undefined') {
uploadingFiles[dirName] = {};
}
uploadingFiles[dirName][data.files[0].name] = jqXHR;
} else {
uploadingFiles[data.files[0].name] = jqXHR;
}
//show cancel button
if($('html.lte9').length === 0 && data.dataType !== 'iframe') {
$('#uploadprogresswrapper input.stop').show();
}
},
/**
* called after the first add, does NOT have the data param
* @param e
*/
start: function(e) {
//IE < 10 does not fire the necessary events for the progress bar.
if($('html.lte9').length > 0) {
return;
}
$('#uploadprogressbar').progressbar({value:0});
$('#uploadprogressbar').fadeIn();
},
fail: function(e, data) {
if (typeof data.textStatus !== 'undefined' && data.textStatus !== 'success' ) {
if (data.textStatus === 'abort') {
$('#notification').text(t('files', 'Upload cancelled.'));
} else {
// HTTP connection problem
$('#notification').text(data.errorThrown);
}
$('#notification').fadeIn();
//hide notification after 5 sec
setTimeout(function() {
$('#notification').fadeOut();
}, 5000);
}
delete uploadingFiles[data.files[0].name];
},
progress: function(e, data) {
// TODO: show nice progress bar in file row
},
progressall: function(e, data) {
//IE < 10 does not fire the necessary events for the progress bar.
if($('html.lte9').length > 0) {
return;
}
var progress = (data.loaded/data.total)*100;
$('#uploadprogressbar').progressbar('value',progress);
},
/**
* called for every successful upload
* @param e
* @param data
*/
done:function(e, data) {
// handle different responses (json or body from iframe for ie)
var response;
if (typeof data.result === 'string') {
response = data.result;
} else {
//fetch response from iframe
response = data.result[0].body.innerText;
}
var result=$.parseJSON(response);
if(typeof result[0] !== 'undefined' && result[0].status === 'success') {
var file = result[0];
} else {
data.textStatus = 'servererror';
data.errorThrown = t('files', result.data.message);
var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload');
fu._trigger('fail', e, data);
}
var filename = result[0].originalname;
// delete jqXHR reference
if (typeof data.context !== 'undefined' && data.context.data('type') === 'dir') {
var dirName = data.context.data('file');
delete uploadingFiles[dirName][filename];
if ($.assocArraySize(uploadingFiles[dirName]) == 0) {
delete uploadingFiles[dirName];
}
} else {
delete uploadingFiles[filename];
2011-09-23 01:24:24 +04:00
}
2013-03-26 17:14:30 +04:00
},
/**
* called after last upload
* @param e
* @param data
*/
stop: function(e, data) {
2013-03-13 20:38:56 +04:00
if(data.dataType !== 'iframe') {
$('#uploadprogresswrapper input.stop').hide();
}
2013-03-13 20:38:56 +04:00
//IE < 10 does not fire the necessary events for the progress bar.
if($('html.lte9').length > 0) {
return;
}
$('#uploadprogressbar').progressbar('value',100);
$('#uploadprogressbar').fadeOut();
}
})
});
}
$.assocArraySize = function(obj) {
// http://stackoverflow.com/a/6700/11236
var size = 0, key;
for (key in obj) {
2012-12-18 19:10:48 +04:00
if (obj.hasOwnProperty(key)) size++;
}
return size;
};
// warn user not to leave the page while upload is in progress
$(window).bind('beforeunload', function(e) {
if ($.assocArraySize(uploadingFiles) > 0)
return t('files','File upload is in progress. Leaving the page now will cancel the upload.');
});
//add multiply file upload attribute to all browsers except konqueror (which crashes when it's used)
if(navigator.userAgent.search(/konqueror/i)==-1){
2012-12-05 14:17:41 +04:00
$('#file_upload_start').attr('multiple','multiple')
}
//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);
}
2013-02-21 20:38:25 +04:00
$(document).click(function(){
2011-10-23 13:40:40 +04:00
$('#new>ul').hide();
$('#new').removeClass('active');
$('#new li').each(function(i,element){
if($(element).children('p').length==0){
2013-01-02 20:02:55 +04:00
$(element).children('form').remove();
2011-10-23 13:40:40 +04:00
$(element).append('<p>'+$(element).data('text')+'</p>');
}
});
});
$('#new').click(function(event){
event.stopPropagation();
});
$('#new>a').click(function(){
$('#new>ul').toggle();
$('#new').toggleClass('active');
});
$('#new li').click(function(){
if($(this).children('p').length==0){
return;
}
2011-10-23 13:40:40 +04:00
$('#new li').each(function(i,element){
if($(element).children('p').length==0){
$(element).children('form').remove();
2011-10-23 13:40:40 +04:00
$(element).append('<p>'+$(element).data('text')+'</p>');
}
});
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 form=$('<form></form>');
2013-01-02 20:02:55 +04:00
var input=$('<input>');
form.append(input);
$(this).append(form);
2011-10-23 13:40:40 +04:00
input.focus();
form.submit(function(event){
event.stopPropagation();
event.preventDefault();
var newname=input.val();
if(type == 'web' && newname.length == 0) {
OC.Notification.show(t('files', 'URL cannot be empty.'));
return false;
} else if (type != 'web' && !Files.isFileNameValid(newname)) {
return false;
} else if( type == 'folder' && $('#dir').val() == '/' && newname == 'Shared') {
OC.Notification.show(t('files','Invalid folder name. Usage of \'Shared\' is reserved by Owncloud'));
return false;
}
if (FileList.lastAction) {
FileList.lastAction();
}
var name = getUniqueName(newname);
if (newname != name) {
FileList.checkName(name, newname, true);
var hidden = true;
} else {
var hidden = false;
}
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},
function(result){
if (result.status == 'success') {
var date=new Date();
FileList.addFile(name,0,date,false,hidden);
var tr=$('tr').filterAttr('data-file',name);
tr.attr('data-mime',result.data.mime);
tr.attr('data-id', result.data.id);
getMimeIcon(result.data.mime,function(path){
tr.find('td.filename').attr('style','background-image:url('+path+')');
});
} else {
2013-04-06 18:52:55 +04:00
OC.dialogs.alert(result.data.message, t('core', 'Error'));
}
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(result){
if (result.status == 'success') {
var date=new Date();
FileList.addDir(name,0,date,hidden);
var tr=$('tr').filterAttr('data-file',name);
tr.attr('data-id', result.data.id);
} else {
2013-04-06 18:52:55 +04:00
OC.dialogs.alert(result.data.message, t('core', 'Error'));
}
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;
2012-03-08 00:43:44 +04:00
}
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.','');
}
localName = getUniqueName(localName);
2013-03-26 17:14:30 +04:00
//IE < 10 does not fire the necessary events for the progress bar.
if($('html.lte9').length > 0) {
2013-03-26 17:14:30 +04:00
} else {
$('#uploadprogressbar').progressbar({value:0});
$('#uploadprogressbar').fadeIn();
}
2012-07-22 05:56:51 +04:00
var eventSource=new OC.EventSource(OC.filePath('files','ajax','newfile.php'),{dir:$('#dir').val(),source:name,filename:localName});
eventSource.listen('progress',function(progress){
2013-03-13 20:38:56 +04:00
//IE < 10 does not fire the necessary events for the progress bar.
if($('html.lte9').length > 0) {
2013-03-26 17:14:30 +04:00
} else {
$('#uploadprogressbar').progressbar('value',progress);
}
2012-07-22 05:56:51 +04:00
});
eventSource.listen('success',function(data){
var mime=data.mime;
var size=data.size;
var id=data.id;
2012-07-22 05:56:51 +04:00
$('#uploadprogressbar').fadeOut();
var date=new Date();
FileList.addFile(localName,size,date,false,hidden);
2012-07-22 05:56:51 +04:00
var tr=$('tr').filterAttr('data-file',localName);
tr.data('mime',mime).data('id',id);
tr.attr('data-id', id);
2012-07-22 05:56:51 +04:00
getMimeIcon(mime,function(path){
tr.find('td.filename').attr('style','background-image:url('+path+')');
});
});
eventSource.listen('error',function(error){
$('#uploadprogressbar').fadeOut();
alert(error);
});
2011-10-23 13:40:40 +04:00
break;
}
var li=form.parent();
form.remove();
2011-10-23 13:40:40 +04:00
li.append('<p>'+li.data('text')+'</p>');
$('#new>a').click();
});
});
2012-11-23 03:20:46 +04:00
//do a background scan if needed
scanFiles();
2012-08-29 10:42:49 +04:00
var lastWidth = 0;
var breadcrumbs = [];
var breadcrumbsWidth = 0;
if ( document.getElementById("navigation") ) {
breadcrumbsWidth = $('#navigation').get(0).offsetWidth;
}
var hiddenBreadcrumbs = 0;
$.each($('.crumb'), function(index, breadcrumb) {
breadcrumbs[index] = breadcrumb;
breadcrumbsWidth += $(breadcrumb).get(0).offsetWidth;
});
$.each($('#controls .actions>div'), function(index, action) {
breadcrumbsWidth += $(action).get(0).offsetWidth;
});
function resizeBreadcrumbs(firstRun) {
var width = $(this).width();
if (width != lastWidth) {
if ((width < lastWidth || firstRun) && width < breadcrumbsWidth) {
if (hiddenBreadcrumbs == 0) {
breadcrumbsWidth -= $(breadcrumbs[1]).get(0).offsetWidth;
$(breadcrumbs[1]).find('a').hide();
$(breadcrumbs[1]).append('<span>...</span>');
breadcrumbsWidth += $(breadcrumbs[1]).get(0).offsetWidth;
hiddenBreadcrumbs = 2;
}
var i = hiddenBreadcrumbs;
while (width < breadcrumbsWidth && i > 1 && i < breadcrumbs.length - 1) {
breadcrumbsWidth -= $(breadcrumbs[i]).get(0).offsetWidth;
$(breadcrumbs[i]).hide();
hiddenBreadcrumbs = i;
i++
}
} else if (width > lastWidth && hiddenBreadcrumbs > 0) {
var i = hiddenBreadcrumbs;
while (width > breadcrumbsWidth && i > 0) {
if (hiddenBreadcrumbs == 1) {
breadcrumbsWidth -= $(breadcrumbs[1]).get(0).offsetWidth;
$(breadcrumbs[1]).find('span').remove();
$(breadcrumbs[1]).find('a').show();
breadcrumbsWidth += $(breadcrumbs[1]).get(0).offsetWidth;
} else {
$(breadcrumbs[i]).show();
breadcrumbsWidth += $(breadcrumbs[i]).get(0).offsetWidth;
if (breadcrumbsWidth > width) {
breadcrumbsWidth -= $(breadcrumbs[i]).get(0).offsetWidth;
$(breadcrumbs[i]).hide();
break;
}
}
i--;
hiddenBreadcrumbs = i;
}
}
lastWidth = width;
}
}
$(window).resize(function() {
resizeBreadcrumbs(false);
});
2012-08-29 10:42:49 +04:00
resizeBreadcrumbs(true);
// display storage warnings
setTimeout ( "Files.displayStorageWarnings()", 100 );
OC.Notification.setDefault(Files.displayStorageWarnings);
// file space size sync
function update_storage_statistics() {
$.getJSON(OC.filePath('files','ajax','getstoragestats.php'),function(response) {
Files.updateMaxUploadFilesize(response);
});
}
// start on load - we ask the server every 5 minutes
var update_storage_statistics_interval = 5*60*1000;
var update_storage_statistics_interval_id = setInterval(update_storage_statistics, update_storage_statistics_interval);
// Use jquery-visibility to de-/re-activate file stats sync
if ($.support.pageVisibility) {
$(document).on({
'show.visibility': function() {
if (!update_storage_statistics_interval_id) {
update_storage_statistics_interval_id = setInterval(update_storage_statistics, update_storage_statistics_interval);
}
},
'hide.visibility': function() {
clearInterval(update_storage_statistics_interval_id);
update_storage_statistics_interval_id = 0;
}
});
}
});
2011-04-17 00:56:40 +04:00
2012-11-23 03:20:46 +04:00
function scanFiles(force, dir){
if (!OC.currentUser) {
return;
}
2012-04-26 00:42:00 +04:00
if(!dir){
2012-11-23 03:20:46 +04:00
dir = '';
2012-04-26 00:42:00 +04:00
}
2012-11-23 03:20:46 +04:00
force = !!force; //cast to bool
scanFiles.scanning = true;
var scannerEventSource = new OC.EventSource(OC.filePath('files','ajax','scan.php'),{force:force,dir:dir});
scanFiles.cancel = scannerEventSource.close.bind(scannerEventSource);
scannerEventSource.listen('count',function(count){
2013-05-24 16:31:06 +04:00
console.log(count + ' files scanned')
2012-11-23 03:20:46 +04:00
});
scannerEventSource.listen('folder',function(path){
console.log('now scanning ' + path)
});
2012-11-23 03:20:46 +04:00
scannerEventSource.listen('done',function(count){
scanFiles.scanning=false;
2013-05-24 16:31:06 +04:00
console.log('done after ' + count + ' files');
});
}
scanFiles.scanning=false;
function boolOperationFinished(data, callback) {
result = jQuery.parseJSON(data.responseText);
2013-01-18 23:09:03 +04:00
Files.updateMaxUploadFilesize(result);
2011-04-17 19:49:56 +04:00
if(result.status == 'success'){
callback.call();
2011-04-17 19:49:56 +04:00
} else {
alert(result.data.message);
}
}
function updateBreadcrumb(breadcrumbHtml) {
$('p.nav').empty().html(breadcrumbHtml);
}
2013-01-19 00:49:38 +04:00
var createDragShadow = function(event){
//select dragged file
var isDragSelected = $(event.target).parents('tr').find('td input:first').prop('checked');
if (!isDragSelected) {
//select dragged file
$(event.target).parents('tr').find('td input:first').prop('checked',true);
}
2013-02-22 20:21:57 +04:00
2013-01-19 00:49:38 +04:00
var selectedFiles = getSelectedFiles();
2013-02-22 20:21:57 +04:00
if (!isDragSelected && selectedFiles.length == 1) {
//revert the selection
$(event.target).parents('tr').find('td input:first').prop('checked',false);
}
2013-02-22 20:21:57 +04:00
2013-01-19 00:49:38 +04:00
//also update class when we dragged more than one file
if (selectedFiles.length > 1) {
$(event.target).parents('tr').addClass('selected');
}
2013-02-22 20:21:57 +04:00
2013-01-19 00:49:38 +04:00
// build dragshadow
var dragshadow = $('<table class="dragshadow"></table>');
var tbody = $('<tbody></tbody>');
dragshadow.append(tbody);
2013-02-22 20:21:57 +04:00
2013-01-19 00:49:38 +04:00
var dir=$('#dir').val();
2013-02-22 20:21:57 +04:00
2013-01-19 00:49:38 +04:00
$(selectedFiles).each(function(i,elem){
var newtr = $('<tr/>').attr('data-dir', dir).attr('data-filename', elem.name);
newtr.append($('<td/>').addClass('filename').text(elem.name));
newtr.append($('<td/>').addClass('size').text(humanFileSize(elem.size)));
2013-01-19 00:49:38 +04:00
tbody.append(newtr);
if (elem.type === 'dir') {
newtr.find('td.filename').attr('style','background-image:url('+OC.imagePath('core', 'filetypes/folder.png')+')');
} else {
getMimeIcon(elem.mime,function(path){
newtr.find('td.filename').attr('style','background-image:url('+path+')');
});
}
});
2013-02-22 20:21:57 +04:00
2013-01-19 00:49:38 +04:00
return dragshadow;
}
//options for file drag/drop
var dragOptions={
revert: 'invalid', revertDuration: 300,
opacity: 0.7, zIndex: 100, appendTo: 'body', cursorAt: { left: -5, top: -5 },
2013-01-19 00:49:38 +04:00
helper: createDragShadow, cursor: 'move',
stop: function(event, ui) {
$('#fileList tr td.filename').addClass('ui-draggable');
}
2013-01-19 00:49:38 +04:00
}
// sane browsers support using the distance option
if ( $('html.ie').length === 0) {
dragOptions['distance'] = 20;
}
2013-01-19 00:49:38 +04:00
var folderDropOptions={
drop: function( event, ui ) {
2013-01-19 00:49:38 +04:00
//don't allow moving a file into a selected folder
if ($(event.target).parents('tr').find('td input:first').prop('checked') === true) {
return false;
}
2013-02-22 20:21:57 +04:00
2013-01-30 16:29:24 +04:00
var target=$.trim($(this).find('.nametext').text());
2013-02-22 20:21:57 +04:00
2013-01-19 00:49:38 +04:00
var files = ui.helper.find('tr');
$(files).each(function(i,row){
var dir = $(row).data('dir');
var file = $(row).data('filename');
2013-01-19 01:16:04 +04:00
$.post(OC.filePath('files', 'ajax', 'move.php'), { dir: dir, file: file, target: dir+'/'+target }, function(result) {
2013-01-19 00:49:38 +04:00
if (result) {
if (result.status === 'success') {
//recalculate folder size
var oldSize = $('#fileList tr').filterAttr('data-file',target).data('size');
var newSize = oldSize + $('#fileList tr').filterAttr('data-file',file).data('size');
$('#fileList tr').filterAttr('data-file',target).data('size', newSize);
$('#fileList tr').filterAttr('data-file',target).find('td.filesize').text(humanFileSize(newSize));
FileList.remove(file);
procesSelection();
$('#notification').hide();
} else {
$('#notification').hide();
$('#notification').text(result.data.message);
$('#notification').fadeIn();
}
} else {
2013-04-06 18:52:55 +04:00
OC.dialogs.alert(t('Error moving file'), t('core', 'Error'));
2013-01-19 00:49:38 +04:00
}
});
});
2013-01-19 00:49:38 +04:00
},
tolerance: 'pointer'
2011-07-22 00:01:55 +04:00
}
2013-01-19 00:49:38 +04:00
2011-07-26 18:43:12 +04:00
var crumbDropOptions={
drop: function( event, ui ) {
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+'/';
}
if(target==dir || target+'/'==dir){
2011-07-26 18:43:12 +04:00
return;
}
2013-01-19 00:49:38 +04:00
var files = ui.helper.find('tr');
$(files).each(function(i,row){
var dir = $(row).data('dir');
var file = $(row).data('filename');
2013-01-19 01:16:04 +04:00
$.post(OC.filePath('files', 'ajax', 'move.php'), { dir: dir, file: file, target: target }, function(result) {
2013-01-19 00:49:38 +04:00
if (result) {
if (result.status === 'success') {
FileList.remove(file);
procesSelection();
$('#notification').hide();
} else {
$('#notification').hide();
$('#notification').text(result.data.message);
$('#notification').fadeIn();
}
} else {
2013-04-06 18:52:55 +04:00
OC.dialogs.alert(t('Error moving file'), t('core', 'Error'));
2013-01-19 00:49:38 +04:00
}
});
2011-07-26 18:43:12 +04:00
});
},
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'});
2012-12-20 13:53:50 +04:00
if(selectedFiles.length==0 && selectedFolders.length==0) {
$('#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'));
$('table').removeClass('multiselect');
$('.selectedActions').hide();
2012-12-20 13:53:50 +04:00
}
else {
$('.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);
$('#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='';
if(selectedFolders.length>0){
if(selectedFolders.length==1){
selection+=t('files','1 folder');
2011-07-22 00:01:55 +04:00
}else{
selection+=t('files','{count} folders',{count: selectedFolders.length});
2011-07-22 00:01:55 +04:00
}
if(selectedFiles.length>0){
selection+=' & ';
2011-07-22 00:01:55 +04:00
}
}
if(selectedFiles.length>0){
if(selectedFiles.length==1){
selection+=t('files','1 file');
2011-07-22 00:01:55 +04:00
}else{
selection+=t('files','{count} files',{count: selectedFiles.length});
2011-07-22 00:01:55 +04:00
}
}
$('#headerName>span.name').text(selection);
$('#modified').text('');
$('table').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={
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-10-08 23:18:47 +04:00
function getMimeIcon(mime, ready){
if(getMimeIcon.cache[mime]){
ready(getMimeIcon.cache[mime]);
}else{
2012-12-14 01:31:43 +04:00
$.get( OC.filePath('files','ajax','mimeicon.php'), {mime: mime}, function(path){
2011-10-08 23:18:47 +04:00
getMimeIcon.cache[mime]=path;
ready(getMimeIcon.cache[mime]);
});
}
}
2011-10-08 23:18:47 +04:00
getMimeIcon.cache={};
function getUniqueName(name){
if($('tr').filterAttr('data-file',name).length>0){
var parts=name.split('.');
var extension = "";
if (parts.length > 1) {
extension=parts.pop();
}
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();
2013-01-30 16:29:24 +04:00
base=$.trim(base.join('('));
}
name=base+' ('+num+')';
if (extension) {
name = name+'.'+extension;
}
return getUniqueName(name);
}
return name;
}