* chore: Centralize env parsing, defaults, deprecation * wip * test * test * tsc * docs, more validation * fix: Allow empty REDIS_URL (defaults to localhost) * test * fix: SLACK_MESSAGE_ACTIONS not bool * fix: Add SMTP port validation
36 lines
849 B
TypeScript
36 lines
849 B
TypeScript
import crypto from "crypto";
|
|
import fetch from "fetch-with-proxy";
|
|
import env from "@server/env";
|
|
|
|
export async function generateAvatarUrl({
|
|
id,
|
|
domain,
|
|
name = "Unknown",
|
|
}: {
|
|
id: string;
|
|
domain?: string;
|
|
name?: string;
|
|
}) {
|
|
// attempt to get logo from Clearbit API. If one doesn't exist then
|
|
// fall back to using tiley to generate a placeholder logo
|
|
const hash = crypto.createHash("sha256");
|
|
hash.update(id);
|
|
const hashedId = hash.digest("hex");
|
|
let cbResponse, cbUrl;
|
|
|
|
if (domain) {
|
|
cbUrl = `https://logo.clearbit.com/${domain}`;
|
|
|
|
try {
|
|
cbResponse = await fetch(cbUrl);
|
|
} catch (err) {
|
|
// okay
|
|
}
|
|
}
|
|
|
|
const tileyUrl = `${
|
|
env.DEFAULT_AVATAR_HOST
|
|
}/avatar/${hashedId}/${encodeURIComponent(name[0])}.png`;
|
|
return cbUrl && cbResponse && cbResponse.status === 200 ? cbUrl : tileyUrl;
|
|
}
|