ente/src/services/collectionService.ts

138 lines
4.2 KiB
TypeScript
Raw Normal View History

import { getEndpoint } from "utils/common/apiUtil";
import { getData, LS_KEYS } from "utils/storage/localStorage";
import { file, user, getFiles } from "./fileService";
import localForage from 'localforage';
import HTTPService from "./HTTPService";
import * as Comlink from 'comlink';
2021-01-13 12:43:46 +00:00
import { keyEncryptionResult } from "./uploadService";
const CryptoWorker: any =
typeof window !== 'undefined' &&
Comlink.wrap(new Worker('worker/crypto.worker.js', { type: 'module' }));
const ENDPOINT = getEndpoint();
2021-01-13 12:43:46 +00:00
enum CollectionType {
2021-01-14 09:41:09 +00:00
folder = "folder",
favorites = "favorites",
album = "album",
2021-01-13 12:43:46 +00:00
}
export interface collection {
id: string;
owner: user;
key?: string;
2021-01-13 12:43:46 +00:00
name: string;
2021-01-14 09:41:09 +00:00
type: string;
2021-01-13 12:43:46 +00:00
attributes: collectionAttributes
sharees: user[];
updationTime: number;
encryptedKey: string;
keyDecryptionNonce: string;
isDeleted: boolean;
}
interface collectionAttributes {
encryptedPath?: string;
pathDecryptionNonce?: string
};
export interface collectionLatestFile {
collection: collection
file: file;
}
const getCollectionKey = async (collection: collection, masterKey: string) => {
const worker = await new CryptoWorker();
const userID = getData(LS_KEYS.USER).id;
let decryptedKey: string;
if (collection.owner.id == userID) {
decryptedKey = await worker.decryptB64(
collection.encryptedKey,
collection.keyDecryptionNonce,
masterKey
);
} else {
const keyAttributes = getData(LS_KEYS.KEY_ATTRIBUTES);
const secretKey = await worker.decryptB64(
keyAttributes.encryptedSecretKey,
keyAttributes.secretKeyDecryptionNonce,
masterKey
);
decryptedKey = await worker.boxSealOpen(
await worker.fromB64(collection.encryptedKey),
await worker.fromB64(keyAttributes.publicKey),
await worker.fromB64(secretKey)
);
}
return {
...collection,
key: decryptedKey,
};
};
const getCollections = async (
token: string,
sinceTime: string,
key: string
): Promise<collection[]> => {
const resp = await HTTPService.get(`${ENDPOINT}/collections`, {
token: token,
sinceTime: sinceTime,
});
const ignore: Set<number> = new Set([206, 208]);
const promises: Promise<collection>[] = resp.data.collections.filter(collection => !ignore.has(collection.id)).map(
(collection: collection) => getCollectionKey(collection, key)
);
return await Promise.all(promises);
};
export const fetchCollections = async (token: string, key: string) => {
return getCollections(token, '0', key);
};
2021-01-13 12:43:46 +00:00
export const getCollectionLatestFile = async (
collections: collection[],
token
): Promise<collectionLatestFile[]> => {
return Promise.all(
collections.map(async collection => {
const sinceTime: string = (Number(await localForage.getItem<string>(`${collection.id}-time`)) - 1).toString();
const file: file[] = await getFiles([collection], sinceTime, "100", token);
return {
file: file[0],
collection,
}
}))
};
export const createAlbum = async (albumName: string, key: string, token: string) => {
2021-01-13 12:43:46 +00:00
const worker = await new CryptoWorker();
const collectionKey: Uint8Array = await worker.generateMasterKey();
2021-01-13 12:43:46 +00:00
const { encryptedData: encryptedKey, nonce: keyDecryptionNonce }: keyEncryptionResult = await worker.encryptToB64(collectionKey, key);
const newCollection: collection = {
id: null,
owner: null,
encryptedKey,
keyDecryptionNonce,
name: albumName,
type: CollectionType.album,
attributes: {},
sharees: null,
updationTime: null,
isDeleted: false
};
let createdCollection: collection = await createCollection(newCollection, token);
createdCollection = await getCollectionKey(createdCollection, key);
return createdCollection;
}
const createCollection = async (collectionData: collection, token: string): Promise<collection> => {
const response = await HTTPService.post(`${ENDPOINT}/collections`, collectionData, { token });
2021-01-14 09:41:09 +00:00
return response.data.collection;
2021-01-13 12:43:46 +00:00
}