Files
Baileys/src/Utils/link-preview.ts
2022-06-09 15:07:04 +05:30

60 lines
1.7 KiB
TypeScript

import { WAUrlInfo } from '../Types'
import { extractImageThumb, getHttpStream } from './messages-media'
const THUMBNAIL_WIDTH_PX = 192
/** Fetches an image and generates a thumbnail for it */
const getCompressedJpegThumbnail = async(url: string, { thumbnailWidth, timeoutMs }: URLGenerationOptions) => {
const stream = await getHttpStream(url, { timeout: timeoutMs })
const result = await extractImageThumb(stream, thumbnailWidth)
return result
}
export type URLGenerationOptions = {
thumbnailWidth: number
timeoutMs: number
}
/**
* Given a piece of text, checks for any URL present, generates link preview for the same and returns it
* Return undefined if the fetch failed or no URL was found
* @param text first matched URL in text
* @returns the URL info required to generate link preview
*/
export const getUrlInfo = async(
text: string,
opts: URLGenerationOptions = { thumbnailWidth: THUMBNAIL_WIDTH_PX, timeoutMs: 3000 }
): Promise<WAUrlInfo | undefined> => {
try {
const { getLinkPreview } = await import('link-preview-js')
let previewLink = text
if(!text.startsWith('https://') && !text.startsWith('http://')) {
previewLink = 'https://' + previewLink
}
const info = await getLinkPreview(previewLink, { timeout: opts.timeoutMs })
if(info && 'title' in info) {
const [image] = info.images
let jpegThumbnail: Buffer | undefined = undefined
try {
jpegThumbnail = image
? await getCompressedJpegThumbnail(image, opts)
: undefined
} catch(error) {
}
return {
'canonical-url': info.url,
'matched-text': text,
title: info.title,
description: info.description,
jpegThumbnail
}
}
} catch(error) {
if(!error.message.includes('receive a valid')) {
throw error
}
}
}