X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/33608c44bf33ab330ad1267ab8d56c08634673b5..b1a6da4a288560a87e0e38ad2fd73fb227e3fc66:/src/common/webdav.ts?ds=sidebyside diff --git a/src/common/webdav.ts b/src/common/webdav.ts index 27e1f22d..8aea568a 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;