2014-01-30 09:41:04 +00:00
/ *
* Copyright ( c ) 2014
*
* This file is licensed under the Affero General Public License version 3
* or later .
*
* See the COPYING - README file .
*
* /
2014-04-28 14:51:57 +00:00
/* global OC, t, FileList */
/* global getURLParameter */
2014-01-30 09:41:04 +00:00
var Files = {
2013-11-06 09:15:05 +00:00
// file space size sync
_updateStorageStatistics : function ( ) {
Files . _updateStorageStatisticsTimeout = null ;
2013-11-06 09:55:19 +00:00
var currentDir = FileList . getCurrentDirectory ( ) ,
state = Files . updateStorageStatistics ;
if ( state . dir ) {
if ( state . dir === currentDir ) {
return ;
}
// cancel previous call, as it was for another dir
state . call . abort ( ) ;
2013-11-06 09:15:05 +00:00
}
2013-11-06 09:55:19 +00:00
state . dir = currentDir ;
state . call = $ . getJSON ( OC . filePath ( 'files' , 'ajax' , 'getstoragestats.php' ) + '?dir=' + encodeURIComponent ( currentDir ) , function ( response ) {
state . dir = null ;
state . call = null ;
2013-11-06 09:15:05 +00:00
Files . updateMaxUploadFilesize ( response ) ;
} ) ;
} ,
2013-11-06 09:55:19 +00:00
updateStorageStatistics : function ( force ) {
2013-11-06 09:15:05 +00:00
if ( ! OC . currentUser ) {
return ;
}
// debounce to prevent calling too often
if ( Files . _updateStorageStatisticsTimeout ) {
clearTimeout ( Files . _updateStorageStatisticsTimeout ) ;
}
2013-11-06 09:55:19 +00:00
if ( force ) {
Files . _updateStorageStatistics ( ) ;
}
else {
Files . _updateStorageStatisticsTimeout = setTimeout ( Files . _updateStorageStatistics , 250 ) ;
}
2013-11-06 09:15:05 +00:00
} ,
2013-01-18 19:09:03 +00:00
updateMaxUploadFilesize : function ( response ) {
2013-10-22 16:11:03 +00:00
if ( response === undefined ) {
2013-01-18 19:09:03 +00:00
return ;
}
2013-10-22 16:11:03 +00:00
if ( response . data !== undefined && response . data . uploadMaxFilesize !== undefined ) {
2013-01-18 19:09:03 +00:00
$ ( '#max_upload' ) . val ( response . data . uploadMaxFilesize ) ;
2013-12-11 04:17:28 +00:00
$ ( '#free_space' ) . val ( response . data . freeSpace ) ;
2013-01-18 23:31:49 +00:00
$ ( '#upload.button' ) . attr ( 'original-title' , response . data . maxHumanFilesize ) ;
$ ( '#usedSpacePercent' ) . val ( response . data . usedSpacePercent ) ;
Files . displayStorageWarnings ( ) ;
2013-01-18 19:09:03 +00:00
}
2013-10-22 16:11:03 +00:00
if ( response [ 0 ] === undefined ) {
2013-01-18 19:09:03 +00:00
return ;
}
2013-10-22 16:11:03 +00:00
if ( response [ 0 ] . uploadMaxFilesize !== undefined ) {
2013-01-18 19:09:03 +00:00
$ ( '#max_upload' ) . val ( response [ 0 ] . uploadMaxFilesize ) ;
2013-01-18 23:31:49 +00:00
$ ( '#upload.button' ) . attr ( 'original-title' , response [ 0 ] . maxHumanFilesize ) ;
$ ( '#usedSpacePercent' ) . val ( response [ 0 ] . usedSpacePercent ) ;
Files . displayStorageWarnings ( ) ;
2013-01-18 19:09:03 +00:00
}
} ,
2013-10-28 10:22:34 +00:00
/ * *
* Fix path name by removing double slash at the beginning , if any
* /
fixPath : function ( fileName ) {
if ( fileName . substr ( 0 , 2 ) == '//' ) {
return fileName . substr ( 1 ) ;
}
return fileName ;
} ,
2014-01-30 10:42:43 +00:00
/ * *
* Checks whether the given file name is valid .
* @ param name file name to check
* @ return true if the file name is valid .
* Throws a string exception with an error message if
* the file name is not valid
* /
2014-04-08 15:17:48 +00:00
isFileNameValid : function ( name ) {
2014-01-30 10:42:43 +00:00
var trimmedName = name . trim ( ) ;
2014-04-08 15:17:48 +00:00
if ( trimmedName === '.' || trimmedName === '..' )
2014-03-04 15:42:40 +00:00
{
2014-01-30 10:42:43 +00:00
throw t ( 'files' , '"{name}" is an invalid file name.' , { name : name } ) ;
} else if ( trimmedName . length === 0 ) {
2013-10-22 16:11:03 +00:00
throw t ( 'files' , 'File name cannot be empty.' ) ;
2013-01-07 09:39:35 +00:00
}
// check for invalid characters
2014-04-28 14:51:57 +00:00
var invalidCharacters =
2014-01-30 10:42:43 +00:00
[ '\\' , '/' , '<' , '>' , ':' , '"' , '|' , '?' , '*' , '\n' ] ;
2014-04-28 14:51:57 +00:00
for ( var i = 0 ; i < invalidCharacters . length ; i ++ ) {
if ( trimmedName . indexOf ( invalidCharacters [ i ] ) !== - 1 ) {
2013-10-22 16:11:03 +00:00
throw t ( 'files' , "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." ) ;
2012-11-22 12:03:17 +00:00
}
}
2013-01-06 11:52:00 +00:00
return true ;
2013-01-02 14:09:40 +00:00
} ,
2013-01-18 22:22:34 +00:00
displayStorageWarnings : function ( ) {
2013-01-18 23:31:49 +00:00
if ( ! OC . Notification . isHidden ( ) ) {
return ;
}
2013-01-18 22:22:34 +00:00
var usedSpacePercent = $ ( '#usedSpacePercent' ) . val ( ) ;
if ( usedSpacePercent > 98 ) {
2013-01-11 14:02:34 +00:00
OC . Notification . show ( t ( 'files' , 'Your storage is full, files can not be updated or synced anymore!' ) ) ;
return ;
2013-01-18 22:22:34 +00:00
}
if ( usedSpacePercent > 90 ) {
2014-04-28 14:51:57 +00:00
OC . Notification . show ( t ( 'files' , 'Your storage is almost full ({usedSpacePercent}%)' ,
{ usedSpacePercent : usedSpacePercent } ) ) ;
2013-01-18 22:22:34 +00:00
}
2013-08-12 15:25:27 +00:00
} ,
displayEncryptionWarning : function ( ) {
if ( ! OC . Notification . isHidden ( ) ) {
return ;
}
var encryptedFiles = $ ( '#encryptedFiles' ) . val ( ) ;
2013-09-06 10:27:40 +00:00
var initStatus = $ ( '#encryptionInitStatus' ) . val ( ) ;
if ( initStatus === '0' ) { // enc not initialized, but should be
2014-04-05 17:28:53 +00:00
OC . Notification . show ( t ( 'files' , 'Encryption App is enabled but your keys are not initialized, please log-out and log-in again' ) ) ;
2013-09-06 10:27:40 +00:00
return ;
}
if ( initStatus === '1' ) { // encryption tried to init but failed
2014-04-11 18:38:27 +00:00
OC . Notification . show ( t ( 'files' , 'Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.' ) ) ;
2013-09-06 10:27:40 +00:00
return ;
}
2013-08-12 15:25:27 +00:00
if ( encryptedFiles === '1' ) {
2014-04-05 17:28:53 +00:00
OC . Notification . show ( t ( 'files' , 'Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files.' ) ) ;
2013-08-12 15:25:27 +00:00
return ;
}
2013-08-17 11:07:18 +00:00
} ,
2014-04-11 10:46:12 +00:00
// TODO: move to FileList class
2013-10-22 16:11:03 +00:00
setupDragAndDrop : function ( ) {
2013-08-17 11:07:18 +00:00
var $fileList = $ ( '#fileList' ) ;
//drag/drop of files
2013-10-22 16:11:03 +00:00
$fileList . find ( 'tr td.filename' ) . each ( function ( i , e ) {
2013-08-17 11:07:18 +00:00
if ( $ ( e ) . parent ( ) . data ( 'permissions' ) & OC . PERMISSION _DELETE ) {
$ ( e ) . draggable ( dragOptions ) ;
}
} ) ;
2013-10-22 16:11:03 +00:00
$fileList . find ( 'tr[data-type="dir"] td.filename' ) . each ( function ( i , e ) {
if ( $ ( e ) . parent ( ) . data ( 'permissions' ) & OC . PERMISSION _CREATE ) {
2013-08-17 11:07:18 +00:00
$ ( e ) . droppable ( folderDropOptions ) ;
}
} ) ;
2013-08-27 11:13:00 +00:00
} ,
2013-10-28 19:22:06 +00:00
/ * *
* Returns the download URL of the given file ( s )
* @ param filename string or array of file names to download
* @ param dir optional directory in which the file name is , defaults to the current directory
* /
getDownloadUrl : function ( filename , dir ) {
if ( $ . isArray ( filename ) ) {
filename = JSON . stringify ( filename ) ;
2013-08-27 11:13:00 +00:00
}
2013-10-28 19:22:06 +00:00
var params = {
dir : dir || FileList . getCurrentDirectory ( ) ,
files : filename
} ;
return this . getAjaxUrl ( 'download' , params ) ;
2013-08-27 11:13:00 +00:00
} ,
2013-10-28 19:22:06 +00:00
/ * *
* Returns the ajax URL for a given action
* @ param action action string
* @ param params optional params map
* /
getAjaxUrl : function ( action , params ) {
var q = '' ;
if ( params ) {
q = '?' + OC . buildQueryString ( params ) ;
2013-08-27 11:13:00 +00:00
}
2013-10-28 19:22:06 +00:00
return OC . filePath ( 'files' , 'ajax' , action + '.php' ) + q ;
2012-03-27 19:38:55 +00:00
}
2012-09-05 20:17:33 +00:00
} ;
2011-03-02 22:06:23 +00:00
$ ( document ) . ready ( function ( ) {
2013-09-01 12:36:33 +00:00
// FIXME: workaround for trashbin app
2013-10-22 16:11:03 +00:00
if ( window . trashBinApp ) {
2013-09-01 12:36:33 +00:00
return ;
}
2013-08-12 15:25:27 +00:00
Files . displayEncryptionWarning ( ) ;
2013-01-14 19:30:39 +00:00
Files . bindKeyboardShortcuts ( document , jQuery ) ;
2013-08-17 11:07:18 +00:00
Files . setupDragAndDrop ( ) ;
2012-03-16 15:25:41 +00:00
2011-04-17 15:49:56 +00:00
$ ( '#file_action_panel' ) . attr ( 'activeAction' , false ) ;
2011-07-07 19:43:35 +00:00
2011-08-11 20:22:32 +00:00
// Triggers invisible file input
2013-01-18 21:38:44 +00:00
$ ( '#upload a' ) . on ( 'click' , function ( ) {
2012-12-05 10:17:41 +00:00
$ ( this ) . parent ( ) . children ( '#file_upload_start' ) . trigger ( 'click' ) ;
2011-08-11 20:22:32 +00:00
return false ;
} ) ;
2013-02-22 16:21:57 +00:00
2013-04-28 21:25:58 +00:00
// Trigger cancelling of file upload
2013-04-28 21:28:41 +00:00
$ ( '#uploadprogresswrapper .stop' ) . on ( 'click' , function ( ) {
2013-08-16 09:40:55 +00:00
OC . Upload . cancelUploads ( ) ;
2014-02-12 13:50:23 +00:00
FileList . updateSelectionSummary ( ) ;
2013-04-28 21:25:58 +00:00
} ) ;
2013-01-18 09:23:31 +00:00
// Show trash bin
2013-07-26 09:13:43 +00:00
$ ( '#trash' ) . on ( 'click' , function ( ) {
2013-01-18 09:23:31 +00:00
window . location = OC . filePath ( 'files_trashbin' , '' , 'index.php' ) ;
2013-01-15 19:35:15 +00:00
} ) ;
2011-08-11 20:22:32 +00:00
2012-03-15 23:03:23 +00:00
// drag&drop support using jquery.fileupload
2012-04-15 14:47:53 +00:00
// TODO use OC.dialogs
2012-03-27 19:38:55 +00:00
$ ( document ) . bind ( 'drop dragover' , function ( e ) {
e . preventDefault ( ) ; // prevent browser from doing anything, if file isn't dropped in dropZone
2014-04-28 14:51:57 +00:00
} ) ;
2012-10-14 19:04:08 +00:00
2012-11-22 23:20:46 +00:00
//do a background scan if needed
scanFiles ( ) ;
2012-08-29 06:42:49 +00:00
2013-01-11 14:02:34 +00:00
// display storage warnings
2014-02-07 16:47:42 +00:00
setTimeout ( Files . displayStorageWarnings , 100 ) ;
2013-01-11 14:02:34 +00:00
OC . Notification . setDefault ( Files . displayStorageWarnings ) ;
2013-01-18 22:22:34 +00:00
2013-11-05 11:18:25 +00:00
// only possible at the moment if user is logged in
if ( OC . currentUser ) {
// start on load - we ask the server every 5 minutes
2013-11-06 09:15:05 +00:00
var updateStorageStatisticsInterval = 5 * 60 * 1000 ;
var updateStorageStatisticsIntervalId = setInterval ( Files . updateStorageStatistics , updateStorageStatisticsInterval ) ;
2013-11-05 11:18:25 +00:00
// Use jquery-visibility to de-/re-activate file stats sync
if ( $ . support . pageVisibility ) {
$ ( document ) . on ( {
'show.visibility' : function ( ) {
2013-11-06 09:15:05 +00:00
if ( ! updateStorageStatisticsIntervalId ) {
updateStorageStatisticsIntervalId = setInterval ( Files . updateStorageStatistics , updateStorageStatisticsInterval ) ;
2013-11-05 11:18:25 +00:00
}
} ,
'hide.visibility' : function ( ) {
2013-11-06 09:15:05 +00:00
clearInterval ( updateStorageStatisticsIntervalId ) ;
updateStorageStatisticsIntervalId = 0 ;
2013-01-11 15:47:28 +00:00
}
2013-11-05 11:18:25 +00:00
} ) ;
}
2013-01-11 15:47:28 +00:00
}
2013-09-20 12:59:17 +00:00
2013-07-31 20:24:52 +00:00
//scroll to and highlight preselected file
if ( getURLParameter ( 'scrollto' ) ) {
FileList . scrollTo ( getURLParameter ( 'scrollto' ) ) ;
}
2011-03-02 22:06:23 +00:00
} ) ;
2011-04-16 20:56:40 +00:00
2013-10-22 16:11:03 +00:00
function scanFiles ( force , dir , users ) {
2013-01-31 22:26:40 +00:00
if ( ! OC . currentUser ) {
return ;
}
2013-10-22 16:11:03 +00:00
if ( ! dir ) {
2012-11-22 23:20:46 +00:00
dir = '' ;
2012-04-25 20:42:00 +00:00
}
2012-11-22 23:20:46 +00:00
force = ! ! force ; //cast to bool
scanFiles . scanning = true ;
2013-06-18 23:26:08 +00:00
var scannerEventSource ;
if ( users ) {
var usersString ;
if ( users === 'all' ) {
usersString = users ;
} else {
2013-06-19 13:02:18 +00:00
usersString = JSON . stringify ( users ) ;
2013-06-18 23:26:08 +00:00
}
scannerEventSource = new OC . EventSource ( OC . filePath ( 'files' , 'ajax' , 'scan.php' ) , { force : force , dir : dir , users : usersString } ) ;
} else {
scannerEventSource = new OC . EventSource ( OC . filePath ( 'files' , 'ajax' , 'scan.php' ) , { force : force , dir : dir } ) ;
}
2012-11-22 23:20:46 +00:00
scanFiles . cancel = scannerEventSource . close . bind ( scannerEventSource ) ;
2013-10-22 16:11:03 +00:00
scannerEventSource . listen ( 'count' , function ( count ) {
console . log ( count + ' files scanned' ) ;
2012-11-22 23:20:46 +00:00
} ) ;
2013-10-22 16:11:03 +00:00
scannerEventSource . listen ( 'folder' , function ( path ) {
console . log ( 'now scanning ' + path ) ;
2012-01-30 22:32:55 +00:00
} ) ;
2013-10-22 16:11:03 +00:00
scannerEventSource . listen ( 'done' , function ( count ) {
2012-02-01 14:33:12 +00:00
scanFiles . scanning = false ;
2013-05-24 12:31:06 +00:00
console . log ( 'done after ' + count + ' files' ) ;
2013-11-06 09:15:05 +00:00
Files . updateStorageStatistics ( ) ;
2012-01-30 22:32:55 +00:00
} ) ;
2013-10-22 16:11:03 +00:00
scannerEventSource . listen ( 'user' , function ( user ) {
2013-06-18 23:26:08 +00:00
console . log ( 'scanning files for ' + user ) ;
} ) ;
2011-11-10 15:40:09 +00:00
}
2012-02-01 14:33:12 +00:00
scanFiles . scanning = false ;
2011-11-10 15:40:09 +00:00
2014-04-11 10:46:12 +00:00
// TODO: move to FileList
2013-10-22 16:11:03 +00:00
var createDragShadow = function ( event ) {
2013-01-18 20:49:38 +00:00
//select dragged file
2013-01-21 13:58:55 +00:00
var isDragSelected = $ ( event . target ) . parents ( 'tr' ) . find ( 'td input:first' ) . prop ( 'checked' ) ;
if ( ! isDragSelected ) {
//select dragged file
2014-04-04 16:46:08 +00:00
FileList . _selectFileEl ( $ ( event . target ) . parents ( 'tr:first' ) , true ) ;
2013-01-21 13:58:55 +00:00
}
2013-02-22 16:21:57 +00:00
2014-04-04 16:46:08 +00:00
// do not show drag shadow for too many files
var selectedFiles = _ . first ( FileList . getSelectedFiles ( ) , FileList . pageSize ) ;
2014-04-08 14:56:02 +00:00
selectedFiles . sort ( FileList . _fileInfoCompare ) ;
2013-02-22 16:21:57 +00:00
2013-10-22 16:11:03 +00:00
if ( ! isDragSelected && selectedFiles . length === 1 ) {
2013-01-21 13:58:55 +00:00
//revert the selection
2014-04-04 16:46:08 +00:00
FileList . _selectFileEl ( $ ( event . target ) . parents ( 'tr:first' ) , false ) ;
2013-01-18 20:49:38 +00:00
}
2013-02-22 16:21:57 +00:00
2013-01-18 20:49:38 +00:00
// build dragshadow
var dragshadow = $ ( '<table class="dragshadow"></table>' ) ;
var tbody = $ ( '<tbody></tbody>' ) ;
dragshadow . append ( tbody ) ;
2013-02-22 16:21:57 +00:00
2013-01-18 20:49:38 +00:00
var dir = $ ( '#dir' ) . val ( ) ;
2013-02-22 16:21:57 +00:00
2013-10-22 16:11:03 +00:00
$ ( selectedFiles ) . each ( function ( i , elem ) {
2014-04-11 10:46:12 +00:00
var newtr = $ ( '<tr/>' )
. attr ( 'data-dir' , dir )
. attr ( 'data-file' , elem . name )
. attr ( 'data-origin' , elem . origin ) ;
2013-04-22 19:54:25 +00:00
newtr . append ( $ ( '<td/>' ) . addClass ( 'filename' ) . text ( elem . name ) ) ;
2014-04-11 10:46:12 +00:00
newtr . append ( $ ( '<td/>' ) . addClass ( 'size' ) . text ( OC . Util . humanFileSize ( elem . size ) ) ) ;
2013-01-18 20:49:38 +00:00
tbody . append ( newtr ) ;
if ( elem . type === 'dir' ) {
newtr . find ( 'td.filename' ) . attr ( 'style' , 'background-image:url(' + OC . imagePath ( 'core' , 'filetypes/folder.png' ) + ')' ) ;
} else {
2013-08-23 21:19:21 +00:00
var path = getPathForPreview ( elem . name ) ;
2013-10-28 10:22:34 +00:00
Files . lazyLoadPreview ( path , elem . mime , function ( previewpath ) {
2013-07-02 09:13:22 +00:00
newtr . find ( 'td.filename' ) . attr ( 'style' , 'background-image:url(' + previewpath + ')' ) ;
2013-10-28 10:22:34 +00:00
} , null , null , elem . etag ) ;
2013-01-18 20:49:38 +00:00
}
} ) ;
2013-02-22 16:21:57 +00:00
2013-01-18 20:49:38 +00:00
return dragshadow ;
2013-10-22 16:11:03 +00:00
} ;
2013-01-18 20:49:38 +00:00
//options for file drag/drop
2013-12-04 17:27:24 +00:00
//start&stop handlers needs some cleaning up
2014-04-11 10:46:12 +00:00
// TODO: move to FileList class
2011-07-07 19:43:35 +00:00
var dragOptions = {
2013-01-21 13:58:55 +00:00
revert : 'invalid' , revertDuration : 300 ,
2013-10-28 14:41:52 +00:00
opacity : 0.7 , zIndex : 100 , appendTo : 'body' , cursorAt : { left : 24 , top : 18 } ,
2013-01-18 20:49:38 +00:00
helper : createDragShadow , cursor : 'move' ,
2014-04-28 14:51:57 +00:00
start : function ( event , ui ) {
var $selectedFiles = $ ( 'td.filename input:checkbox:checked' ) ;
if ( $selectedFiles . length > 1 ) {
$selectedFiles . parents ( 'tr' ) . fadeTo ( 250 , 0.2 ) ;
}
else {
$ ( this ) . fadeTo ( 250 , 0.2 ) ;
}
} ,
stop : function ( event , ui ) {
var $selectedFiles = $ ( 'td.filename input:checkbox:checked' ) ;
if ( $selectedFiles . length > 1 ) {
$selectedFiles . parents ( 'tr' ) . fadeTo ( 250 , 1 ) ;
2013-12-04 17:27:24 +00:00
}
2014-04-28 14:51:57 +00:00
else {
$ ( this ) . fadeTo ( 250 , 1 ) ;
}
$ ( '#fileList tr td.filename' ) . addClass ( 'ui-draggable' ) ;
}
2013-10-22 16:11:03 +00:00
} ;
2013-02-25 14:08:14 +00:00
// sane browsers support using the distance option
2013-03-28 18:13:37 +00:00
if ( $ ( 'html.ie' ) . length === 0 ) {
2013-02-25 14:08:14 +00:00
dragOptions [ 'distance' ] = 20 ;
2013-06-25 10:24:14 +00:00
}
2013-01-18 20:49:38 +00:00
2014-04-11 10:46:12 +00:00
// TODO: move to FileList class
var folderDropOptions = {
2013-12-04 17:27:24 +00:00
hoverClass : "canDrop" ,
2011-07-07 19:43:35 +00:00
drop : function ( event , ui ) {
2014-04-11 10:46:12 +00:00
// don't allow moving a file into a selected folder
2013-01-18 20:49:38 +00:00
if ( $ ( event . target ) . parents ( 'tr' ) . find ( 'td input:first' ) . prop ( 'checked' ) === true ) {
return false ;
}
2013-02-22 16:21:57 +00:00
2014-04-11 10:46:12 +00:00
var targetPath = FileList . getCurrentDirectory ( ) + '/' + $ ( this ) . closest ( 'tr' ) . data ( 'file' ) ;
var files = FileList . getSelectedFiles ( ) ;
if ( files . length === 0 ) {
// single one selected without checkbox?
files = _ . map ( ui . helper . find ( 'tr' ) , FileList . elementToFile ) ;
}
FileList . move ( _ . pluck ( files , 'name' ) , targetPath ) ;
2013-01-18 20:49:38 +00:00
} ,
tolerance : 'pointer'
2013-10-22 16:11:03 +00:00
} ;
2013-01-18 20:49:38 +00:00
2013-10-28 10:22:34 +00:00
Files . getMimeIcon = function ( mime , ready ) {
if ( Files . getMimeIcon . cache [ mime ] ) {
ready ( Files . getMimeIcon . cache [ mime ] ) ;
2013-10-22 16:11:03 +00:00
} else {
$ . get ( OC . filePath ( 'files' , 'ajax' , 'mimeicon.php' ) , { mime : mime } , function ( path ) {
2014-04-04 09:32:07 +00:00
if ( OC . Util . hasSVGSupport ( ) ) {
2014-02-19 13:47:29 +00:00
path = path . substr ( 0 , path . length - 4 ) + '.svg' ;
}
2013-10-28 10:22:34 +00:00
Files . getMimeIcon . cache [ mime ] = path ;
ready ( Files . getMimeIcon . cache [ mime ] ) ;
2011-10-08 19:18:47 +00:00
} ) ;
2011-07-28 23:36:31 +00:00
}
2011-07-30 10:14:09 +00:00
}
2013-10-28 10:22:34 +00:00
Files . getMimeIcon . cache = { } ;
2012-04-15 15:30:07 +00:00
2013-08-23 21:19:21 +00:00
function getPathForPreview ( name ) {
var path = $ ( '#dir' ) . val ( ) + '/' + name ;
return path ;
}
2013-10-28 19:22:06 +00:00
/ * *
* Generates a preview URL based on the URL space .
* @ param urlSpec map with { x : width , y : height , file : file path }
* @ return preview URL
* /
Files . generatePreviewUrl = function ( urlSpec ) {
urlSpec = urlSpec || { } ;
if ( ! urlSpec . x ) {
urlSpec . x = $ ( '#filestable' ) . data ( 'preview-x' ) ;
}
if ( ! urlSpec . y ) {
urlSpec . y = $ ( '#filestable' ) . data ( 'preview-y' ) ;
}
2014-04-04 15:10:46 +00:00
urlSpec . y *= window . devicePixelRatio ;
urlSpec . x *= window . devicePixelRatio ;
2013-10-28 19:22:06 +00:00
urlSpec . forceIcon = 0 ;
return OC . generateUrl ( '/core/preview.png?' ) + $ . param ( urlSpec ) ;
2014-04-28 14:51:57 +00:00
} ;
2013-10-28 19:22:06 +00:00
2013-10-28 10:22:34 +00:00
Files . lazyLoadPreview = function ( path , mime , ready , width , height , etag ) {
2013-09-19 12:46:33 +00:00
// get mime icon url
2013-10-28 10:22:34 +00:00
Files . getMimeIcon ( mime , function ( iconURL ) {
2014-04-04 15:10:46 +00:00
var previewURL ,
2013-10-28 19:22:06 +00:00
urlSpec = { } ;
2013-09-19 12:46:33 +00:00
ready ( iconURL ) ; // set mimeicon URL
2013-09-20 12:59:17 +00:00
2013-10-28 10:22:34 +00:00
urlSpec . file = Files . fixPath ( path ) ;
if ( etag ) {
// use etag as cache buster
urlSpec . c = etag ;
}
else {
console . warn ( 'Files.lazyLoadPreview(): missing etag argument' ) ;
}
2013-10-28 19:22:06 +00:00
previewURL = Files . generatePreviewUrl ( urlSpec ) ;
2013-10-28 10:22:34 +00:00
previewURL = previewURL . replace ( '(' , '%28' ) ;
previewURL = previewURL . replace ( ')' , '%29' ) ;
// preload image to prevent delay
// this will make the browser cache the image
var img = new Image ( ) ;
img . onload = function ( ) {
2014-02-19 13:47:29 +00:00
// if loading the preview image failed (no preview for the mimetype) then img.width will < 5
if ( img . width > 5 ) {
ready ( previewURL ) ;
}
2014-04-04 15:10:46 +00:00
} ;
2013-10-28 10:22:34 +00:00
img . src = previewURL ;
2013-08-14 11:25:07 +00:00
} ) ;
2014-01-30 09:41:04 +00:00
} ;
2013-07-02 09:13:22 +00:00
2013-10-22 16:11:03 +00:00
function getUniqueName ( name ) {
2014-01-10 14:02:26 +00:00
if ( FileList . findFileEl ( name ) . exists ( ) ) {
2014-01-30 09:41:04 +00:00
var numMatch ;
2012-04-15 15:30:07 +00:00
var parts = name . split ( '.' ) ;
2012-06-29 13:23:04 +00:00
var extension = "" ;
if ( parts . length > 1 ) {
extension = parts . pop ( ) ;
}
2012-04-15 15:30:07 +00:00
var base = parts . join ( '.' ) ;
numMatch = base . match ( /\((\d+)\)/ ) ;
var num = 2 ;
2013-10-22 16:11:03 +00:00
if ( numMatch && numMatch . length > 0 ) {
2012-04-15 15:30:07 +00:00
num = parseInt ( numMatch [ numMatch . length - 1 ] ) + 1 ;
2013-10-22 16:11:03 +00:00
base = base . split ( '(' ) ;
2012-04-15 15:30:07 +00:00
base . pop ( ) ;
2013-01-30 12:29:24 +00:00
base = $ . trim ( base . join ( '(' ) ) ;
2012-04-15 15:30:07 +00:00
}
2012-06-29 13:23:04 +00:00
name = base + ' (' + num + ')' ;
if ( extension ) {
name = name + '.' + extension ;
}
2012-04-15 15:30:07 +00:00
return getUniqueName ( name ) ;
}
return name ;
}
2013-07-26 09:13:43 +00:00
function checkTrashStatus ( ) {
2013-10-22 16:11:03 +00:00
$ . post ( OC . filePath ( 'files_trashbin' , 'ajax' , 'isEmpty.php' ) , function ( result ) {
2013-07-26 09:13:43 +00:00
if ( result . data . isEmpty === false ) {
$ ( "input[type=button][id=trash]" ) . removeAttr ( "disabled" ) ;
}
} ) ;
2013-07-29 22:34:36 +00:00
}
2013-08-17 11:07:18 +00:00
2013-10-28 19:22:06 +00:00
// override core's fileDownloadPath (legacy)
function fileDownloadPath ( dir , file ) {
return Files . getDownloadUrl ( file , dir ) ;
2013-08-17 11:07:18 +00:00
}
2013-12-04 17:27:24 +00:00