123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- /**
- * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- (function ($) {
- var Drop = {
- /** @type {Function} **/
- _template: undefined,
- /** @type {boolean} */
- _uploading: false,
- addFileToUpload: function(e, data) {
- var errors = [];
- var output = this.template();
- var filesClient = new OC.Files.Client({
- host: OC.getHost(),
- port: OC.getPort(),
- // note: password not be required, the endpoint
- // will recognize previous validation from the session
- root: OC.getRootPath() + '/public.php/dav/files/' + $('#sharingToken').val() + '/',
- useHTTPS: OC.getProtocol() === 'https'
- });
- // We only process one file at a time 🤷♀️
- var name = data.files[0].name;
- // removing unwanted characters
- name = name.replace(/["'#%`]/gm, '');
- try {
- // FIXME: not so elegant... need to refactor that method to return a value
- Files.isFileNameValid(name);
- }
- catch (errorMessage) {
- OC.Notification.show(errorMessage, {type: 'error'});
- return false;
- }
- var base = OC.getProtocol() + '://' + OC.getHost();
- data.url = base + OC.getRootPath() + '/public.php/dav/files/' + $('#sharingToken').val() + '/' + encodeURI(name);
- data.multipart = false;
- if (!data.headers) {
- data.headers = {};
- }
- $('#drop-upload-done-indicator').addClass('hidden');
- $('#drop-upload-progress-indicator').removeClass('hidden');
- $('#drop-uploaded-files').append(output({isUploading: true, name: data.files[0].name}));
- data.submit();
- return true;
- },
- updateFileItem: function (fileName, fileItem) {
- $('#drop-uploaded-files li[data-name="' + fileName + '"]').replaceWith(fileItem);
- },
- initialize: function () {
- $(document).bind('drop dragover', function (e) {
- // Prevent the default browser drop action:
- e.preventDefault();
- });
- var output = this.template();
- var self = this;
- $('#public-upload').fileupload({
- type: 'PUT',
- dropZone: $('#public-upload'),
- sequentialUploads: true,
- start: function(e) {
- self._uploading = true;
- },
- stop: function(e) {
- self._uploading = false;
- },
- add: function(e, data) {
- Drop.addFileToUpload(e, data);
- $('#drop-upload-status').text(t('files_sharing', 'Waiting…'));
- //we return true to keep trying to upload next file even
- //if addFileToUpload did not like the previous one
- return true;
- },
- done: function(e, data) {
- // Created
- var mimeTypeUrl = OC.MimeType.getIconUrl(data.files[0].type);
- var fileItem = output({isUploading: false, iconSrc: mimeTypeUrl, name: data.files[0].name});
- Drop.updateFileItem(data.files[0].name, fileItem);
- },
- fail: function(e, data) {
- OC.Notification.showTemporary(OC.L10N.translate(
- 'files_sharing',
- 'Could not upload "{filename}"',
- {filename: data.files[0].name}
- ));
- $('#drop-upload-status').text(t('files_sharing', 'error'));
- var errorIconSrc = OC.imagePath('core', 'actions/error.svg');
- var fileItem = output({isUploading: false, iconSrc: errorIconSrc, name: data.files[0].name});
- Drop.updateFileItem(data.files[0].name, fileItem);
- },
- 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');
- }
- },
- progress: function (e, data) {
- var progress = parseInt(data.loaded / data.total * 100, 10);
- if(progress === 100) {
- $('#drop-upload-progress-bar').val(100);
- $('#drop-upload-status').text(t('files_sharing', 'finished'));
- } else {
- $('#drop-upload-progress-bar').val(progress);
- $('#drop-upload-status').text(progress + '%');
- }
- },
- });
- $('#public-upload .button.icon-upload').click(function(e) {
- e.preventDefault();
- $('#public-upload .emptycontent input').focus().trigger('click');
- });
- window.onbeforeunload = function() {
- return self.confirmBeforeUnload();
- }
- },
- /**
- * @returns {Function} from Handlebars
- * @private
- */
- template: function () {
- return OCA.Sharing.Templates['files_drop'];
- },
- confirmBeforeUnload: function() {
- if (this._uploading) {
- return t('files', 'This will stop your current uploads.')
- }
- },
- };
- OCA.FilesSharingDrop = Drop;
- window.addEventListener('DOMContentLoaded', function() {
- if($('#upload-only-interface').val() === "1") {
- $('.avatardiv').avatar($('#sharingUserId').val(), 128, true);
- }
- OCA.FilesSharingDrop.initialize();
- });
- })(jQuery);
|