hippofish/packages/backend/src/misc/reaction-lib.ts

93 lines
2.1 KiB
TypeScript
Raw Normal View History

2023-01-13 05:40:33 +01:00
import { emojiRegex } from "./emoji-regex.js";
import { fetchMeta } from "./fetch-meta.js";
import { Emojis } from "@/models/index.js";
import { toPunyNullable } from "./convert-host.js";
import { IsNull } from "typeorm";
2023-02-17 09:01:22 +01:00
export async function getFallbackReaction() {
const meta = await fetchMeta();
return meta.defaultReaction;
}
export function convertReactions(reactions: Record<string, number>) {
const result = new Map();
for (const reaction in reactions) {
if (reactions[reaction] <= 0) continue;
const decoded = decodeReaction(reaction).reaction;
result.set(decoded, (result.get(decoded) || 0) + reactions[reaction]);
}
return Object.fromEntries(result);
}
2023-01-13 05:40:33 +01:00
export async function toDbReaction(
reaction?: string | null,
reacterHost?: string | null,
): Promise<string> {
2023-02-17 09:01:22 +01:00
if (!reaction) return await getFallbackReaction();
reacterHost = toPunyNullable(reacterHost);
if (reaction === "♥️") return "❤️";
// Allow unicode reactions
const match = emojiRegex.exec(reaction);
if (match) {
const unicode = match[0];
return unicode;
}
2020-04-15 17:47:17 +02:00
const custom = reaction.match(/^:([\w+-]+)(?:@\.)?:$/);
if (custom) {
const name = custom[1];
const emoji = await Emojis.findOneBy({
2023-02-17 09:01:22 +01:00
host: reacterHost || IsNull(),
name,
});
2020-05-10 10:25:16 +02:00
if (emoji) return reacterHost ? `:${name}@${reacterHost}:` : `:${name}:`;
}
return await getFallbackReaction();
}
type DecodedReaction = {
/**
* (Unicode Emoji or ':name@hostname' or ':name@.')
*/
reaction: string;
/**
* name (name, Emojiクエリに使う)
*/
name?: string;
/**
* host (host, Emojiクエリに使う)
*/
host?: string | null;
};
export function decodeReaction(str: string): DecodedReaction {
const custom = str.match(/^:([\w+-]+)(?:@([\w.-]+))?:$/);
if (custom) {
const name = custom[1];
const host = custom[2] || null;
return {
2023-01-13 05:40:33 +01:00
reaction: `:${name}@${host || "."}:`, // ローカル分は@以降を省略するのではなく.にする
name,
2021-12-09 15:58:30 +01:00
host,
};
}
return {
reaction: str,
name: undefined,
2021-12-09 15:58:30 +01:00
host: undefined,
};
}