/// import type { Logger } from 'pino'; import { Boom } from '@hapi/boom'; import { Readable, Transform } from 'stream'; import { URL } from 'url'; import { proto } from '../Proto'; import { DownloadableMessage, MediaConnInfo, MediaDecryptionKeyInfo, MediaType, WAMediaUpload, WAMediaUploadFunction, WAMessageContent } from '../Models'; import { BinaryNode } from '../Internal'; import { AxiosRequestConfig } from 'axios'; export declare const hkdfInfoKey: (type: MediaType) => string; /** generates all the keys required to encrypt/decrypt & sign a media message */ export declare function getMediaKeys(buffer: Uint8Array | string | null | undefined, mediaType: MediaType): MediaDecryptionKeyInfo; export declare const extractImageThumb: (bufferOrFilePath: Readable | Buffer | string, width?: number) => Promise<{ buffer: any; original: { width: any; height: any; }; }>; export declare const encodeBase64EncodedStringForUpload: (b64: string) => string; export declare const generateProfilePicture: (mediaUpload: WAMediaUpload) => Promise<{ img: Buffer; }>; /** gets the SHA256 of the given media message */ export declare const mediaMessageSHA256B64: (message: WAMessageContent) => string; export declare function getAudioDuration(buffer: Buffer | string | Readable): Promise; export declare const toReadable: (buffer: Buffer) => Readable; export declare const toBuffer: (stream: Readable) => Promise; export declare const getStream: (item: WAMediaUpload) => Promise<{ stream: Readable; type: string; }>; /** generates a thumbnail for a given media, if required */ export declare function generateThumbnail(file: string, mediaType: 'video' | 'image', options: { logger?: Logger; }): Promise<{ thumbnail: string; originalImageDimensions: { width: number; height: number; }; }>; export declare const getHttpStream: (url: string | URL, options?: AxiosRequestConfig & { isStream?: true; }) => Promise; export declare const encryptedStream: (media: WAMediaUpload, mediaType: MediaType, saveOriginalFileIfRequired?: boolean, logger?: Logger) => Promise<{ mediaKey: Buffer; encWriteStream: Readable; bodyPath: string; mac: Buffer; fileEncSha256: Buffer; fileSha256: Buffer; fileLength: number; didSaveToTmpPath: boolean; }>; export declare type MediaDownloadOptions = { startByte?: number; endByte?: number; options?: AxiosRequestConfig; }; export declare const getUrlFromDirectPath: (directPath: string) => string; export declare const downloadContentFromMessage: ({ mediaKey, directPath, url }: DownloadableMessage, type: MediaType, opts?: MediaDownloadOptions) => Promise; /** * Decrypts and downloads an AES256-CBC encrypted file given the keys. * Assumes the SHA256 of the plaintext is appended to the end of the ciphertext * */ export declare const downloadEncryptedContent: (downloadUrl: string, { cipherKey, iv }: MediaDecryptionKeyInfo, { startByte, endByte }?: MediaDownloadOptions) => Promise; export declare function extensionForMediaMessage(message: WAMessageContent): string; export declare const getWAUploadToServer: ({ customUploadHosts, fetchAgent, logger }: any, refreshMediaConn: (force: boolean) => Promise) => WAMediaUploadFunction; /** * Generate a binary node that will request the phone to re-upload the media & return the newly uploaded URL */ export declare const encryptMediaRetryRequest: (key: proto.IMessageKey, mediaKey: Buffer | Uint8Array, meId: string) => BinaryNode; export declare const decodeMediaRetryNode: (node: BinaryNode) => { key: proto.IMessageKey; media?: { ciphertext: Uint8Array; iv: Uint8Array; }; error?: Boom; }; export declare const decryptMediaRetryData: ({ ciphertext, iv }: { ciphertext: Uint8Array; iv: Uint8Array; }, mediaKey: Uint8Array, msgId: string) => proto.MediaRetryNotification; export declare const getStatusCodeForMediaRetry: (code: number) => any;