2016-06-09 13:05:02 +03: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 ( $ ) {
2016-06-11 16:15:37 +03:00
var TEMPLATE =
'<li data-toggle="tooltip" title="{{name}}" data-name="{{name}}">' +
'{{#if isUploading}}' +
'<span class="icon-loading-small"></span> {{name}}' +
'{{else}}' +
'<img src="' + OC . imagePath ( 'core' , 'actions/error.svg' ) + '"/> {{name}}' +
'{{/if}}' +
'</li>' ;
2016-06-09 13:05:02 +03:00
var Drop = {
2016-06-11 16:15:37 +03:00
/** @type {Function} **/
_template : undefined ,
2016-06-09 13:05:02 +03:00
initialize : function ( ) {
2016-10-22 23:13:18 +03:00
var filesClient = new OC . Files . Client ( {
host : OC . getHost ( ) ,
port : OC . getPort ( ) ,
userName : $ ( '#sharingToken' ) . val ( ) ,
// note: password not be required, the endpoint
// will recognize previous validation from the session
root : OC . getRootPath ( ) + '/public.php/webdav' ,
useHTTPS : OC . getProtocol ( ) === 'https'
} ) ;
2016-06-09 13:05:02 +03:00
$ ( document ) . bind ( 'drop dragover' , function ( e ) {
// Prevent the default browser drop action:
e . preventDefault ( ) ;
} ) ;
2016-06-11 16:15:37 +03:00
var output = this . template ( ) ;
2016-06-09 18:45:16 +03:00
$ ( '#public-upload' ) . fileupload ( {
2016-10-22 23:13:18 +03:00
type : 'PUT' ,
2016-06-09 18:45:16 +03:00
dropZone : $ ( '#public-upload' ) ,
2016-10-22 23:13:18 +03:00
sequentialUploads : true ,
2016-06-09 18:45:16 +03:00
add : function ( e , data ) {
2016-06-09 22:44:54 +03:00
var errors = [ ] ;
2016-10-22 23:13:18 +03:00
var name = data . files [ 0 ] . name ;
var base = OC . getProtocol ( ) + '://' + OC . getHost ( ) ;
data . url = base + OC . getRootPath ( ) + '/public.php/webdav/' + encodeURI ( name ) ;
data . multipart = false ;
if ( ! data . headers ) {
data . headers = { } ;
}
var userName = filesClient . getUserName ( ) ;
var password = filesClient . getPassword ( ) ;
if ( userName ) {
// copy username/password from DAV client
data . headers [ 'Authorization' ] =
'Basic ' + btoa ( userName + ':' + ( password || '' ) ) ;
2016-06-09 22:44:54 +03:00
}
2016-06-10 15:47:40 +03:00
$ ( '#drop-upload-done-indicator' ) . addClass ( 'hidden' ) ;
$ ( '#drop-upload-progress-indicator' ) . removeClass ( 'hidden' ) ;
2016-06-09 18:45:16 +03:00
_ . each ( data [ 'files' ] , function ( file ) {
2016-10-24 16:42:44 +03:00
$ ( '#public-upload ul' ) . append ( output ( { isUploading : true , name : escapeHTML ( file . name ) } ) ) ;
$ ( '[data-toggle="tooltip"]' ) . tooltip ( ) ;
data . submit ( ) ;
2016-06-09 18:45:16 +03:00
} ) ;
2016-10-22 23:13:18 +03:00
return true ;
2016-06-09 18:45:16 +03:00
} ,
2016-10-24 16:42:44 +03:00
done : function ( e , data ) {
// Created
if ( data . jqXHR . status === 201 ) {
var mimeTypeUrl = OC . MimeType . getIconUrl ( data . files [ 0 ] . type ) ;
$ ( '#public-upload ul li[data-name="' + escapeHTML ( data . files [ 0 ] . name ) + '"]' ) . html ( '<img src="' + escapeHTML ( mimeTypeUrl ) + '"/> ' + escapeHTML ( data . files [ 0 ] . name ) ) ;
2016-06-09 22:44:54 +03:00
$ ( '[data-toggle="tooltip"]' ) . tooltip ( ) ;
2016-06-11 16:15:37 +03:00
} else {
2016-10-24 16:42:44 +03:00
var name = data . files [ 0 ] . name ;
2016-06-11 16:15:37 +03:00
OC . Notification . showTemporary ( OC . L10N . translate ( 'files_sharing' , 'Could not upload "{filename}"' , { filename : name } ) ) ;
$ ( '#public-upload ul li[data-name="' + escapeHTML ( name ) + '"]' ) . html ( output ( { isUploading : false , name : escapeHTML ( name ) } ) ) ;
$ ( '[data-toggle="tooltip"]' ) . tooltip ( ) ;
2016-06-09 22:44:54 +03:00
}
2016-06-10 15:47:40 +03:00
} ,
progressall : function ( e , data ) {
var progress = parseInt ( data . loaded / data . total * 100 , 10 ) ;
if ( progress === 100 ) {
$ ( '#drop-upload-done-indicator' ) . removeClass ( 'hidden' ) ;
$ ( '#drop-upload-progress-indicator' ) . addClass ( 'hidden' ) ;
} else {
$ ( '#drop-upload-done-indicator' ) . addClass ( 'hidden' ) ;
$ ( '#drop-upload-progress-indicator' ) . removeClass ( 'hidden' ) ;
}
2016-06-09 13:05:02 +03:00
}
} ) ;
2016-06-09 18:45:16 +03:00
$ ( '#public-upload .button.icon-upload' ) . click ( function ( e ) {
e . preventDefault ( ) ;
$ ( '#public-upload #emptycontent input' ) . focus ( ) . trigger ( 'click' ) ;
} ) ;
2016-06-11 16:15:37 +03:00
} ,
/ * *
* @ returns { Function } from Handlebars
* @ private
* /
template : function ( ) {
if ( ! this . _template ) {
this . _template = Handlebars . compile ( TEMPLATE ) ;
}
return this . _template ;
2016-06-09 13:05:02 +03:00
}
} ;
$ ( document ) . ready ( function ( ) {
2016-11-10 22:55:18 +03:00
if ( $ ( '#upload-only-interface' ) . val ( ) === "1" && oc _config . enable _avatars ) {
2016-06-09 13:05:02 +03:00
$ ( '.avatardiv' ) . avatar ( $ ( '#sharingUserId' ) . val ( ) , 128 , true ) ;
}
OCA . Files _Sharing _Drop = Drop ;
OCA . Files _Sharing _Drop . initialize ( ) ;
} ) ;
} ) ( jQuery ) ;