2016-06-09 10:05:02 +00:00
/ *
* Copyright ( c ) 2016 Lukas Reschke < lukas @ statuscode . ch >
*
* This file is licensed under the Affero General Public License version 3
* or later .
*
* See the COPYING - README file .
*
* /
( function ( $ ) {
var Drop = {
initialize : function ( ) {
$ ( document ) . bind ( 'drop dragover' , function ( e ) {
// Prevent the default browser drop action:
e . preventDefault ( ) ;
} ) ;
2016-06-09 15:45:16 +00:00
$ ( '#public-upload' ) . fileupload ( {
2016-06-09 10:05:02 +00:00
url : OC . linkTo ( 'files' , 'ajax/upload.php' ) ,
dataType : 'json' ,
2016-06-09 15:45:16 +00:00
dropZone : $ ( '#public-upload' ) ,
2016-06-09 10:05:02 +00:00
formData : {
dirToken : $ ( '#sharingToken' ) . val ( )
2016-06-09 15:45:16 +00:00
} ,
add : function ( e , data ) {
2016-06-09 19:44:54 +00:00
var errors = [ ] ;
if ( data . files [ 0 ] [ 'size' ] && data . files [ 0 ] [ 'size' ] > $ ( '#maxFilesizeUpload' ) . val ( ) ) {
errors . push ( 'File is too big' ) ;
}
2016-06-09 15:45:16 +00:00
_ . each ( data [ 'files' ] , function ( file ) {
2016-06-09 19:44:54 +00:00
if ( errors . length === 0 ) {
$ ( '#public-upload ul' ) . append ( '<li data-toggle="tooltip" title="' + escapeHTML ( file . name ) + '" data-name="' + escapeHTML ( file . name ) + '"><span class="icon-loading-small"></span> ' + escapeHTML ( file . name ) + '</li>' ) ;
$ ( '[data-toggle="tooltip"]' ) . tooltip ( ) ;
data . submit ( ) ;
} else {
OC . Notification . showTemporary ( OC . L10N . translate ( 'files_sharing' , 'Could not upload "{filename}"' , { filename : file . name } ) ) ;
$ ( '#public-upload ul' ) . append ( '<li data-toggle="tooltip" title="' + escapeHTML ( file . name ) + '" data-name="' + escapeHTML ( file . name ) + '"><img src="' + OC . imagePath ( 'core' , 'actions/error.svg' ) + '"/> ' + escapeHTML ( file . name ) + '</li>' ) ;
$ ( '[data-toggle="tooltip"]' ) . tooltip ( ) ;
}
2016-06-09 15:45:16 +00:00
} ) ;
} ,
success : function ( response ) {
2016-06-09 19:44:54 +00:00
if ( response . status !== 'error' ) {
var mimeTypeUrl = OC . MimeType . getIconUrl ( response [ 'mimetype' ] ) ;
$ ( '#public-upload ul li[data-name="' + escapeHTML ( response [ 'filename' ] ) + '"]' ) . html ( '<img src="' + escapeHTML ( mimeTypeUrl ) + '"/> ' + escapeHTML ( response [ 'filename' ] ) ) ;
$ ( '[data-toggle="tooltip"]' ) . tooltip ( ) ;
}
2016-06-09 10:05:02 +00:00
}
} ) ;
2016-06-09 15:45:16 +00:00
$ ( '#public-upload .button.icon-upload' ) . click ( function ( e ) {
e . preventDefault ( ) ;
$ ( '#public-upload #emptycontent input' ) . focus ( ) . trigger ( 'click' ) ;
} ) ;
2016-06-09 10:05:02 +00:00
}
} ;
$ ( document ) . ready ( function ( ) {
2016-06-09 15:45:16 +00:00
if ( $ ( '#upload-only-interface' ) . val ( ) === "1" ) {
2016-06-09 10:05:02 +00:00
$ ( '.avatardiv' ) . avatar ( $ ( '#sharingUserId' ) . val ( ) , 128 , true ) ;
}
OCA . Files _Sharing _Drop = Drop ;
OCA . Files _Sharing _Drop . initialize ( ) ;
} ) ;
} ) ( jQuery ) ;