123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- import { arrayToB64, b64ToArray } from './utils';
- function post(obj) {
- return {
- method: 'POST',
- headers: new Headers({
- 'Content-Type': 'application/json'
- }),
- body: JSON.stringify(obj)
- };
- }
- function parseNonce(header) {
- header = header || '';
- return header.split(' ')[1];
- }
- async function fetchWithAuth(url, params, keychain) {
- const result = {};
- params = params || {};
- const h = await keychain.authHeader();
- params.headers = new Headers({ Authorization: h });
- const response = await fetch(url, params);
- result.response = response;
- result.ok = response.ok;
- const nonce = parseNonce(response.headers.get('WWW-Authenticate'));
- result.shouldRetry = response.status === 401 && nonce !== keychain.nonce;
- keychain.nonce = nonce;
- return result;
- }
- async function fetchWithAuthAndRetry(url, params, keychain) {
- const result = await fetchWithAuth(url, params, keychain);
- if (result.shouldRetry) {
- return fetchWithAuth(url, params, keychain);
- }
- return result;
- }
- export async function del(id, owner_token) {
- const response = await fetch(`/api/delete/${id}`, post({ owner_token }));
- return response.ok;
- }
- export async function setParams(id, owner_token, params) {
- const response = await fetch(
- `/api/params/${id}`,
- post({
- owner_token,
- dlimit: params.dlimit
- })
- );
- return response.ok;
- }
- export async function fileInfo(id, owner_token) {
- const response = await fetch(`/api/info/${id}`, post({ owner_token }));
- if (response.ok) {
- const obj = await response.json();
- return obj;
- }
- throw new Error(response.status);
- }
- export async function metadata(id, keychain) {
- const result = await fetchWithAuthAndRetry(
- `/api/metadata/${id}`,
- { method: 'GET' },
- keychain
- );
- if (result.ok) {
- const data = await result.response.json();
- const meta = await keychain.decryptMetadata(b64ToArray(data.metadata));
- return {
- size: data.size,
- ttl: data.ttl,
- iv: meta.iv,
- name: meta.name,
- type: meta.type
- };
- }
- throw new Error(result.response.status);
- }
- export async function setPassword(id, owner_token, keychain) {
- const auth = await keychain.authKeyB64();
- const response = await fetch(
- `/api/password/${id}`,
- post({ owner_token, auth })
- );
- return response.ok;
- }
- export function uploadFile(
- encrypted,
- metadata,
- verifierB64,
- keychain,
- onprogress
- ) {
- const xhr = new XMLHttpRequest();
- const upload = {
- cancel: function() {
- xhr.abort();
- },
- result: new Promise(function(resolve, reject) {
- xhr.addEventListener('loadend', function() {
- const authHeader = xhr.getResponseHeader('WWW-Authenticate');
- if (authHeader) {
- keychain.nonce = parseNonce(authHeader);
- }
- if (xhr.status === 200) {
- const responseObj = JSON.parse(xhr.responseText);
- return resolve({
- url: responseObj.url,
- id: responseObj.id,
- ownerToken: responseObj.owner
- });
- }
- reject(new Error(xhr.status));
- });
- })
- };
- const dataView = new DataView(encrypted);
- const blob = new Blob([dataView], { type: 'application/octet-stream' });
- const fd = new FormData();
- fd.append('data', blob);
- xhr.upload.addEventListener('progress', function(event) {
- if (event.lengthComputable) {
- onprogress([event.loaded, event.total]);
- }
- });
- xhr.open('post', '/api/upload', true);
- xhr.setRequestHeader('X-File-Metadata', arrayToB64(new Uint8Array(metadata)));
- xhr.setRequestHeader('Authorization', `send-v1 ${verifierB64}`);
- xhr.send(fd);
- return upload;
- }
- function download(id, keychain, onprogress, canceller) {
- const xhr = new XMLHttpRequest();
- canceller.oncancel = function() {
- xhr.abort();
- };
- return new Promise(async function(resolve, reject) {
- xhr.addEventListener('loadend', function() {
- canceller.oncancel = function() {};
- const authHeader = xhr.getResponseHeader('WWW-Authenticate');
- if (authHeader) {
- keychain.nonce = parseNonce(authHeader);
- }
- if (xhr.status !== 200) {
- return reject(new Error(xhr.status));
- }
- const blob = new Blob([xhr.response]);
- const fileReader = new FileReader();
- fileReader.readAsArrayBuffer(blob);
- fileReader.onload = function() {
- resolve(this.result);
- };
- });
- xhr.addEventListener('progress', function(event) {
- if (event.lengthComputable && event.target.status === 200) {
- onprogress([event.loaded, event.total]);
- }
- });
- const auth = await keychain.authHeader();
- xhr.open('get', `/api/download/${id}`);
- xhr.setRequestHeader('Authorization', auth);
- xhr.responseType = 'blob';
- xhr.send();
- });
- }
- async function tryDownload(id, keychain, onprogress, canceller, tries = 1) {
- try {
- const result = await download(id, keychain, onprogress, canceller);
- return result;
- } catch (e) {
- if (e.message === '401' && --tries > 0) {
- return tryDownload(id, keychain, onprogress, canceller, tries);
- }
- throw e;
- }
- }
- export function downloadFile(id, keychain, onprogress) {
- const canceller = {
- oncancel: function() {} // download() sets this
- };
- function cancel() {
- canceller.oncancel();
- }
- return {
- cancel,
- result: tryDownload(id, keychain, onprogress, canceller, 2)
- };
- }
|