mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 02:20:54 +01:00
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
import { Constants } from '../constants';
|
|
|
|
const getDomain = (twitterId: string): string | null => {
|
|
const mosaicDomains = Constants.MOSAIC_DOMAIN_LIST;
|
|
|
|
if (mosaicDomains.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
let hash = 0;
|
|
for (let i = 0; i < twitterId.length; i++) {
|
|
const char = twitterId.charCodeAt(i);
|
|
hash = (hash << 5) - hash + char;
|
|
}
|
|
return mosaicDomains[Math.abs(hash) % mosaicDomains.length];
|
|
}
|
|
|
|
/* Handler for mosaic (multi-image combiner) */
|
|
export const handleMosaic = async (
|
|
mediaList: APIPhoto[],
|
|
id: string
|
|
): Promise<APIMosaicPhoto | null> => {
|
|
const selectedDomain: string | null = getDomain(id);
|
|
|
|
/* Fallback if there are no Mosaic servers */
|
|
if (selectedDomain === null) {
|
|
return null;
|
|
} else {
|
|
const mosaicMedia = mediaList.map(
|
|
media => media.url?.match(/(?<=\/media\/)[\w-]+(?=[.?])/g)?.[0] || ''
|
|
);
|
|
const baseUrl = `https://${selectedDomain}/`;
|
|
let path = '';
|
|
|
|
for (let j = 0; j < 4; j++) {
|
|
if (typeof mosaicMedia[j] === 'string') {
|
|
path += `/${mosaicMedia[j]}`;
|
|
}
|
|
}
|
|
|
|
return {
|
|
type: 'mosaic_photo',
|
|
formats: {
|
|
jpeg: `${baseUrl}jpeg/${id}${path}`,
|
|
webp: `${baseUrl}webp/${id}${path}`
|
|
}
|
|
} as APIMosaicPhoto;
|
|
}
|
|
};
|