refactor: split monolith into 3 microservices (frontend, backend, discord-gateway)

- Extract services into services/{frontend,backend,discord-gateway}
- Create packages/shared/ for shared logger, errors, utils, types
- Setup Modular MVC pattern in backend (controller→service→repository)
- Setup event-driven architecture in discord-gateway with Redis pub/sub
- Move Docker files to infra/docker/ with per-service Dockerfiles
- Update docker-compose.yml to use Traefik-only routing (no port exposes)
- Update GitHub Actions deploy workflow for multi-service matrix build
- Fix all import paths and resolve type errors across all services
- All 3 services pass tsc --noEmit clean

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
MythEclipse
2026-06-01 21:44:29 +07:00
co-authored by Claude Opus 4.8
parent bda8304bb9
commit c48a0c5e3b
193 changed files with 16879 additions and 1158 deletions
@@ -0,0 +1,96 @@
/**
* Sticker-specific prompt templates for AI moderation.
*
* Discord stickers are cartoon/meme artwork — not real photos.
* These prompts give the LLM proper context to avoid false-positive flags
* based solely on sticker names or cartoon imagery.
*/
/**
* Prompt used when a sticker image was successfully downloaded (from cache
* or network) and is being sent to the vision LLM as a base64 image.
*
* Explains that stickers are cartoon art, not documentation of real events,
* and instructs the model to apply looser standards for cartoon content.
*/
export function buildStickerVisionPrompt(
stickerName: string,
messageId: string,
): string {
return [
`Analisis sticker Discord berikut sebagai evidence moderasi.`,
`Sticker "${stickerName}" berasal dari pesan id=${messageId}.`,
``,
`PENTING — Konteks Sticker:`,
`- Sticker Discord adalah gambar KARTUN/MEME/ILUSTRASI, BUKAN foto atau video nyata.`,
`- Sticker sering bersifat humor, satir, atau ekspresi emosi yang dilebih-lebihkan.`,
`- Gambar di sticker bisa menampilkan adegan yang terlihat "keras" (tokoh kartun menginjak sesuatu, ledakan komik, senjata kartun, tokoh berantem) — itu SENI KARTUN, bukan dokumentasi kekerasan atau ancaman nyata.`,
`- Teks di sticker sering berupa lelucon, sindiran, atau ekspresi khas komunitas — bukan ancaman literal.`,
``,
`Jelaskan isi visual, teks yang terlihat, dan konteks risiko.`,
`Terapkan standar yang lebih longgar untuk konten kartun/meme:`,
`- Adegan kartun yang terlihat "keras" ≠ kekerasan nyata → jangan flag "violence" kecuali jelas menargetkan individu/kelompok nyata dengan ancaman serius.`,
`- Nama sticker yang terdengar provokatif (mis. "Singa injek pejabat") adalah konteks satir/kartun, bukan bukti pelanggaran.`,
`- Humor/satir/politik kartun ≠ SARA atau hate speech.`,
`- Sticker yang menampilkan tokoh kartun dalam pose agresif adalah ekspresi/emosi umum di Discord, bukan harassment.`,
``,
`Jawab Bahasa Indonesia, maksimal 3 kalimat. Jangan bilang kurang konteks atau perlu admin cek.`,
].join("\n");
}
/**
* Wrapper for text-only evidence when a sticker image failed to download.
*
* Returns a formatted string that explicitly tells the LLM not to flag
* based on the sticker name alone, since names can sound provocative
* while the actual cartoon image is harmless.
*/
export function buildStickerTextOnlyWarning(
stickerName: string,
stickerUrl: string,
): string {
return (
`[sticker: "${stickerName}" (${stickerUrl}) — GAMBAR GAGAL DIUNDUH. ` +
`"${stickerName}" adalah sticker kartun/meme Discord. ` +
`JANGAN flag berdasarkan nama sticker saja tanpa gambar visual. ` +
`Sticker Discord adalah seni kartun/ekspresi humor, bukan foto nyata. ` +
`Nama yang terdengar provokatif adalah hal umum untuk sticker satir/humor di Discord.]`
);
}
/**
* Prompt used when a custom emoji image was successfully downloaded
* and is being sent to the vision LLM as a base64 image.
*
* Custom emojis are small icons — context is similar to stickers.
*/
export function buildCustomEmojiVisionPrompt(
emojiName: string,
messageId: string,
): string {
return [
`Analisis custom emoji Discord berikut sebagai evidence moderasi.`,
`Emoji "${emojiName}" berasal dari pesan id=${messageId}.`,
``,
`PENTING — Konteks Custom Emoji:`,
`- Custom emoji Discord adalah ikon kecil/ekspresi, BUKAN foto atau dokumen nyata.`,
`- Emoji sering digunakan untuk ekspresi emosi, reaksi, atau lelucon.`,
`- Jangan flag berdasarkan nama emoji saja — analisis isi visual gambar.`,
`- Emoji yang terlihat lucu/aneh adalah hal umum di Discord, bukan pelanggaran.`,
``,
`Jelaskan isi visual dan konteks risiko.`,
`Jawab Bahasa Indonesia, maksimal 2 kalimat. Jangan bilang kurang konteks.`,
].join("\n");
}
/**
* Fallback text for when a custom emoji image failed to download.
*/
export function buildCustomEmojiTextOnlyFallback(emojiName: string): string {
return (
`[custom_emoji: "${emojiName}" — GAMBAR GAGAL DIUNDUH. ` +
`"${emojiName}" adalah custom emoji Discord (ikon kecil). ` +
`JANGAN flag berdasarkan nama emoji saja tanpa gambar visual. ` +
`Custom emoji di Discord adalah ekspresi/emosi umum, bukan konten ofensif.]`
);
}