signal-desktop/ts/services/backups/api.ts

134 lines
3.4 KiB
TypeScript
Raw Normal View History

2024-04-22 14:11:36 +00:00
// Copyright 2024 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2024-08-08 19:22:48 +00:00
import { type Readable } from 'node:stream';
2024-04-22 14:11:36 +00:00
import { strictAssert } from '../../util/assert';
import type {
WebAPIType,
AttachmentUploadFormResponseType,
2024-04-22 14:11:36 +00:00
GetBackupInfoResponseType,
BackupMediaItemType,
BackupMediaBatchResponseType,
BackupListMediaResponseType,
} from '../../textsecure/WebAPI';
import type { BackupCredentials } from './credentials';
2024-05-20 19:29:20 +00:00
import { uploadFile } from '../../util/uploadAttachment';
2024-04-22 14:11:36 +00:00
2024-08-27 21:00:41 +00:00
export type DownloadOptionsType = Readonly<{
downloadOffset: number;
onProgress: (currentBytes: number, totalBytes: number) => void;
2024-09-11 18:03:18 +00:00
abortSignal?: AbortSignal;
2024-08-27 21:00:41 +00:00
}>;
2024-04-22 14:11:36 +00:00
export class BackupAPI {
private cachedBackupInfo: GetBackupInfoResponseType | undefined;
2024-04-22 14:11:36 +00:00
constructor(private credentials: BackupCredentials) {}
public async refresh(): Promise<void> {
await this.server.refreshBackup(
await this.credentials.getHeadersForToday()
);
}
public async getInfo(): Promise<GetBackupInfoResponseType> {
const backupInfo = await this.server.getBackupInfo(
2024-04-22 14:11:36 +00:00
await this.credentials.getHeadersForToday()
);
this.cachedBackupInfo = backupInfo;
return backupInfo;
}
private async getCachedInfo(): Promise<GetBackupInfoResponseType> {
if (this.cachedBackupInfo) {
return this.cachedBackupInfo;
}
return this.getInfo();
}
public async getMediaDir(): Promise<string> {
return (await this.getCachedInfo()).mediaDir;
}
public async getBackupDir(): Promise<string> {
return (await this.getCachedInfo())?.backupDir;
}
// Backup name will change whenever a new backup is created, so we don't want to cache
// it
public async getBackupName(): Promise<string> {
return (await this.getInfo()).backupName;
2024-04-22 14:11:36 +00:00
}
2024-05-14 17:04:50 +00:00
public async upload(filePath: string, fileSize: number): Promise<void> {
const form = await this.server.getBackupUploadForm(
await this.credentials.getHeadersForToday()
);
2024-05-20 19:29:20 +00:00
await uploadFile({
absoluteCiphertextPath: filePath,
ciphertextFileSize: fileSize,
uploadForm: form,
});
2024-04-22 14:11:36 +00:00
}
2024-08-27 21:00:41 +00:00
public async download({
downloadOffset,
onProgress,
2024-09-11 18:03:18 +00:00
abortSignal,
2024-08-27 21:00:41 +00:00
}: DownloadOptionsType): Promise<Readable> {
2024-08-08 19:22:48 +00:00
const { cdn, backupDir, backupName } = await this.getInfo();
const { headers } = await this.credentials.getCDNReadCredentials(cdn);
return this.server.getBackupStream({
cdn,
backupDir,
backupName,
headers,
2024-08-27 21:00:41 +00:00
downloadOffset,
onProgress,
2024-09-11 18:03:18 +00:00
abortSignal,
2024-08-08 19:22:48 +00:00
});
}
public async getMediaUploadForm(): Promise<AttachmentUploadFormResponseType> {
2024-04-22 14:11:36 +00:00
return this.server.getBackupMediaUploadForm(
await this.credentials.getHeadersForToday()
);
}
public async backupMediaBatch(
items: ReadonlyArray<BackupMediaItemType>
): Promise<BackupMediaBatchResponseType> {
return this.server.backupMediaBatch({
headers: await this.credentials.getHeadersForToday(),
items,
});
}
public async listMedia({
cursor,
limit,
}: {
cursor?: string;
limit: number;
}): Promise<BackupListMediaResponseType> {
return this.server.backupListMedia({
headers: await this.credentials.getHeadersForToday(),
cursor,
limit,
});
}
public clearCache(): void {
this.cachedBackupInfo = undefined;
}
2024-04-22 14:11:36 +00:00
private get server(): WebAPIType {
const { server } = window.textsecure;
strictAssert(server, 'server not available');
return server;
}
}