|
|
|
@ -39,11 +39,11 @@ interface RawQuote {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// tslint:disable-next-line: no-unnecessary-class
|
|
|
|
|
export class AttachmentUtils {
|
|
|
|
|
export class AttachmentFsV2Utils {
|
|
|
|
|
private constructor() {}
|
|
|
|
|
|
|
|
|
|
public static async uploadV1(params: UploadParams): Promise<AttachmentPointer> {
|
|
|
|
|
const { attachment, openGroup, isAvatar = false, isRaw = false, shouldPad = false } = params;
|
|
|
|
|
public static async uploadToFsV2(params: UploadParams): Promise<AttachmentPointer> {
|
|
|
|
|
const { attachment, openGroup, isRaw = false, shouldPad = false } = params;
|
|
|
|
|
if (typeof attachment !== 'object' || attachment == null) {
|
|
|
|
|
throw new Error('Invalid attachment passed.');
|
|
|
|
|
}
|
|
|
|
@ -53,15 +53,9 @@ export class AttachmentUtils {
|
|
|
|
|
`\`attachment.data\` must be an \`ArrayBuffer\`; got: ${typeof attachment.data}`
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let server = window.tokenlessFileServerAdnAPI;
|
|
|
|
|
// this can only be an opengroupv1
|
|
|
|
|
if (openGroup) {
|
|
|
|
|
const openGroupServer = await window.lokiPublicChatAPI.findOrCreateServer(openGroup.server);
|
|
|
|
|
if (!openGroupServer) {
|
|
|
|
|
throw new Error(`Failed to get open group server: ${openGroup.server}.`);
|
|
|
|
|
}
|
|
|
|
|
server = openGroupServer;
|
|
|
|
|
throw new Error('opengroupv1 attachments are not supported anymore');
|
|
|
|
|
}
|
|
|
|
|
const pointer: AttachmentPointer = {
|
|
|
|
|
contentType: attachment.contentType || undefined,
|
|
|
|
@ -77,7 +71,6 @@ export class AttachmentUtils {
|
|
|
|
|
if (isRaw || openGroup) {
|
|
|
|
|
attachmentData = attachment.data;
|
|
|
|
|
} else {
|
|
|
|
|
server = window.tokenlessFileServerAdnAPI;
|
|
|
|
|
pointer.key = new Uint8Array(crypto.randomBytes(64));
|
|
|
|
|
const iv = new Uint8Array(crypto.randomBytes(16));
|
|
|
|
|
|
|
|
|
@ -95,7 +88,6 @@ export class AttachmentUtils {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// use file server v2
|
|
|
|
|
|
|
|
|
|
if (FSv2.useFileServerAPIV2Sending) {
|
|
|
|
|
const uploadToV2Result = await FSv2.uploadFileToFsV2(attachmentData);
|
|
|
|
|
if (uploadToV2Result) {
|
|
|
|
@ -104,39 +96,18 @@ export class AttachmentUtils {
|
|
|
|
|
} else {
|
|
|
|
|
window?.log?.warn('upload to file server v2 failed');
|
|
|
|
|
}
|
|
|
|
|
return pointer;
|
|
|
|
|
} else {
|
|
|
|
|
const result = isAvatar
|
|
|
|
|
? await server.putAvatar(attachmentData)
|
|
|
|
|
: await server.putAttachment(attachmentData);
|
|
|
|
|
pointer.id = result.id;
|
|
|
|
|
pointer.url = result.url;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static async uploadAvatarV1(
|
|
|
|
|
attachment?: Attachment
|
|
|
|
|
): Promise<AttachmentPointer | undefined> {
|
|
|
|
|
if (!attachment) {
|
|
|
|
|
return undefined;
|
|
|
|
|
throw new Error('Only v2 fileserver upload is supported');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// isRaw is true since the data is already encrypted
|
|
|
|
|
// and doesn't need to be encrypted again
|
|
|
|
|
return this.uploadV1({
|
|
|
|
|
attachment,
|
|
|
|
|
isAvatar: true,
|
|
|
|
|
isRaw: true,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static async uploadAttachmentsV1(
|
|
|
|
|
public static async uploadAttachmentsToFsV2(
|
|
|
|
|
attachments: Array<Attachment>,
|
|
|
|
|
openGroup?: OpenGroup
|
|
|
|
|
): Promise<Array<AttachmentPointer>> {
|
|
|
|
|
const promises = (attachments || []).map(async attachment =>
|
|
|
|
|
this.uploadV1({
|
|
|
|
|
this.uploadToFsV2({
|
|
|
|
|
attachment,
|
|
|
|
|
openGroup,
|
|
|
|
|
shouldPad: true,
|
|
|
|
@ -146,7 +117,7 @@ export class AttachmentUtils {
|
|
|
|
|
return Promise.all(promises);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static async uploadLinkPreviewsV1(
|
|
|
|
|
public static async uploadLinkPreviewsToFsV2(
|
|
|
|
|
previews: Array<RawPreview>,
|
|
|
|
|
openGroup?: OpenGroup
|
|
|
|
|
): Promise<Array<Preview>> {
|
|
|
|
@ -157,7 +128,7 @@ export class AttachmentUtils {
|
|
|
|
|
}
|
|
|
|
|
return {
|
|
|
|
|
...item,
|
|
|
|
|
image: await this.uploadV1({
|
|
|
|
|
image: await this.uploadToFsV2({
|
|
|
|
|
attachment: item.image,
|
|
|
|
|
openGroup,
|
|
|
|
|
}),
|
|
|
|
@ -166,7 +137,7 @@ export class AttachmentUtils {
|
|
|
|
|
return Promise.all(promises);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static async uploadQuoteThumbnailsV1(
|
|
|
|
|
public static async uploadQuoteThumbnailsToFsV2(
|
|
|
|
|
quote?: RawQuote,
|
|
|
|
|
openGroup?: OpenGroup
|
|
|
|
|
): Promise<Quote | undefined> {
|
|
|
|
@ -177,7 +148,7 @@ export class AttachmentUtils {
|
|
|
|
|
const promises = (quote.attachments ?? []).map(async attachment => {
|
|
|
|
|
let thumbnail: AttachmentPointer | undefined;
|
|
|
|
|
if (attachment.thumbnail) {
|
|
|
|
|
thumbnail = await this.uploadV1({
|
|
|
|
|
thumbnail = await this.uploadToFsV2({
|
|
|
|
|
attachment: attachment.thumbnail,
|
|
|
|
|
openGroup,
|
|
|
|
|
});
|
|
|
|
|