2024-02-04 11:25:21 +00:00
|
|
|
import { cdnUrl, thumborUrl } from './config'
|
2024-01-06 23:52:24 +00:00
|
|
|
|
2024-01-23 15:21:37 +00:00
|
|
|
const getSizeUrlPart = (options: { width?: number; height?: number; noSizeUrlPart?: boolean } = {}) => {
|
2023-10-27 18:50:13 +00:00
|
|
|
const widthString = options.width ? options.width.toString() : ''
|
|
|
|
const heightString = options.height ? options.height.toString() : ''
|
|
|
|
|
2024-02-04 17:40:15 +00:00
|
|
|
if (!(widthString || heightString) || options.noSizeUrlPart) {
|
2023-10-27 18:50:13 +00:00
|
|
|
return ''
|
|
|
|
}
|
|
|
|
|
|
|
|
return `${widthString}x${heightString}/`
|
|
|
|
}
|
|
|
|
|
2024-01-21 08:05:36 +00:00
|
|
|
export const getImageUrl = (
|
|
|
|
src: string,
|
|
|
|
options: { width?: number; height?: number; noSizeUrlPart?: boolean } = {},
|
|
|
|
) => {
|
2024-03-25 13:07:14 +00:00
|
|
|
if (!src.includes('discours.io') && src.includes('http')) {
|
|
|
|
return src
|
|
|
|
}
|
|
|
|
const filename = src.toLowerCase().split('/').pop()
|
|
|
|
const ext = filename.split('.').pop()
|
|
|
|
const isAudio = ext in ['wav', 'mp3', 'ogg', 'aif', 'flac']
|
|
|
|
const base = isAudio ? cdnUrl : `${thumborUrl}/unsafe/`
|
|
|
|
const suffix = isAudio || options.noSizeUrlPart ? '' : getSizeUrlPart(options)
|
|
|
|
const subfolder = isAudio ? 'audio' : 'image'
|
|
|
|
|
|
|
|
return `${base}${suffix}production/${subfolder}/${filename}`
|
2023-10-27 18:50:13 +00:00
|
|
|
}
|
2024-01-06 23:52:24 +00:00
|
|
|
|
|
|
|
export const getOpenGraphImageUrl = (
|
|
|
|
src: string,
|
|
|
|
options: {
|
|
|
|
topic: string
|
|
|
|
title: string
|
|
|
|
author: string
|
|
|
|
width?: number
|
|
|
|
height?: number
|
|
|
|
},
|
|
|
|
) => {
|
|
|
|
const sizeUrlPart = getSizeUrlPart(options)
|
|
|
|
|
|
|
|
const filtersPart = `filters:discourstext('${encodeURIComponent(options.topic)}','${encodeURIComponent(
|
|
|
|
options.author,
|
|
|
|
)}','${encodeURIComponent(options.title)}')/`
|
|
|
|
|
2024-01-22 20:38:31 +00:00
|
|
|
if (src.startsWith(thumborUrl)) {
|
2024-02-04 09:03:15 +00:00
|
|
|
const thumborKey = src.replace(`${thumborUrl}/unsafe`, '')
|
2024-01-06 23:52:24 +00:00
|
|
|
return `${thumborUrl}/unsafe/${sizeUrlPart}${filtersPart}${thumborKey}`
|
|
|
|
}
|
|
|
|
|
|
|
|
return `${thumborUrl}/unsafe/${sizeUrlPart}${filtersPart}${src}`
|
|
|
|
}
|