X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/75db1e88374315f84fdfb30faee84253e1383a28..701e59342c16c23f8ee16c1ef92ee2ca6c416c0a:/src/common/webdav.ts diff --git a/src/common/webdav.ts b/src/common/webdav.ts index 27e1f22de5..8aea568af3 100644 --- a/src/common/webdav.ts +++ b/src/common/webdav.ts @@ -25,9 +25,23 @@ export class WebDAV { this.request({ ...config, url, method: 'PUT', - data, + data }) + upload = (url: string, path: string, files: File[], config: WebDAVRequestConfig = {}) => { + const fd = new FormData(); + fd.append('path', path); + files.forEach((f, idx) => { + fd.append(`file-${idx}`, f); + }); + + return this.request({ + ...config, url, + method: 'PUT', + data: fd + }); + } + copy = (url: string, destination: string, config: WebDAVRequestConfig = {}) => this.request({ ...config, url, @@ -62,13 +76,27 @@ export class WebDAV { r.upload.addEventListener('progress', config.onUploadProgress); } - r.addEventListener('load', () => resolve(r)); - r.addEventListener('error', () => reject(r)); + r.addEventListener('load', () => { + if (r.status === 404) { + return reject(r); + } else { + return resolve(r); + } + }); + + r.addEventListener('error', () => { + return reject(r); + }); + + r.upload.addEventListener('error', () => { + return reject(r); + }); r.send(config.data); }); } } + export interface WebDAVRequestConfig { headers?: { [key: string]: string;