mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 02:50:54 +01:00
Assign mosaic load balancing based on id
This commit is contained in:
parent
fa3a541f95
commit
fda3ccc619
1 changed files with 16 additions and 6 deletions
|
@ -1,16 +1,26 @@
|
||||||
import { Constants } from '../constants';
|
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) */
|
/* Handler for mosaic (multi-image combiner) */
|
||||||
export const handleMosaic = async (
|
export const handleMosaic = async (
|
||||||
mediaList: APIPhoto[],
|
mediaList: APIPhoto[],
|
||||||
id: string
|
id: string
|
||||||
): Promise<APIMosaicPhoto | null> => {
|
): Promise<APIMosaicPhoto | null> => {
|
||||||
const mosaicDomains = Constants.MOSAIC_DOMAIN_LIST;
|
const selectedDomain: string | null = getDomain(id);
|
||||||
let selectedDomain: string | null = null;
|
|
||||||
while (selectedDomain === null && mosaicDomains.length > 0) {
|
|
||||||
const domain = mosaicDomains[Math.floor(Math.random() * mosaicDomains.length)];
|
|
||||||
selectedDomain = domain;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Fallback if there are no Mosaic servers */
|
/* Fallback if there are no Mosaic servers */
|
||||||
if (selectedDomain === null) {
|
if (selectedDomain === null) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue