Spaces:
Runtime error
Runtime error
File size: 15,483 Bytes
e4b505c fc6d61f b171365 0e51c08 f19cc50 fc6d61f e4b505c f19cc50 e4b505c b171365 f19cc50 fc6d61f e4b505c fc6d61f b171365 0e51c08 fc6d61f f19cc50 0e51c08 fc6d61f f19cc50 fc6d61f 0e51c08 fc6d61f f19cc50 b171365 0e51c08 b171365 0e51c08 f19cc50 0e51c08 f19cc50 0e51c08 f19cc50 0e51c08 fc6d61f 0e51c08 fc6d61f b171365 fc6d61f b171365 fc6d61f b171365 fc6d61f f19cc50 fc6d61f 0e51c08 b171365 0e51c08 b171365 0e51c08 b171365 0e51c08 b171365 0e51c08 b171365 0e51c08 f19cc50 0e51c08 f19cc50 0e51c08 b171365 f19cc50 0e51c08 b171365 0e51c08 f19cc50 0e51c08 fc6d61f f19cc50 fc6d61f e4b505c fc6d61f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 | import dotenv from "dotenv";
dotenv.config();
import {
Client,
GatewayIntentBits,
Events,
ModalBuilder,
TextInputBuilder,
TextInputStyle,
ActionRowBuilder,
MessageFlags,
ApplicationCommandType,
EmbedBuilder,
ButtonBuilder,
ButtonStyle,
PermissionFlagsBits,
ChannelSelectMenuBuilder,
StringSelectMenuBuilder,
ChannelType
} from "discord.js";
import { loadConfig, saveConfig } from "./configManager.js";
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
],
});
const API_URL = process.env.API_URL || "http://127.0.0.1:8000";
// Domyślne modele zapasowe (używane gdyby backend był wyłączony podczas konfiguracji)
const FALLBACK_MODELS = {
text: ["yaya36095/xlm-roberta-text-detector", "mock"],
image: ["capcheck/ai-image-detection", "mock"]
};
// Pamięć podręczna przechowuje konfigurację oraz pobrane dynamicznie modele
const activeSetupSessions = new Map();
client.once(Events.ClientReady, async () => {
console.log(`Bot ready: ${client.user.tag}`);
try {
await client.application.commands.set([
{
name: "detect",
description: "Otwiera okienko do wklejenia linku lub tekstu do analizy",
type: ApplicationCommandType.ChatInput
},
{
name: "setup",
description: "Ustawienia kanału logów i modeli analizy (Wymaga Administratora)",
default_member_permissions: PermissionFlagsBits.Administrator.toString(),
type: ApplicationCommandType.ChatInput
},
{
name: "Przeanalizuj tekst",
type: ApplicationCommandType.Message
}
]);
console.log("Pomyślnie zarejestrowano komendy (/detect, /setup oraz menu kontekstowe)");
} catch (error) {
console.error("Błąd podczas rejestracji komend:", error);
}
});
// Funkcja pobierająca aktualne modele bezpośrednio z FastAPI w czasie rzeczywistym
async function fetchAvailableModels() {
try {
const response = await fetch(API_URL);
if (response.ok) {
const data = await response.json();
if (data.available_models) {
const textModels = data.available_models.text || [];
const imageModels = data.available_models.image || [];
// Upewniamy się, że zawsze mamy opcję testową "mock"
if (!textModels.includes("mock")) textModels.push("mock");
if (!imageModels.includes("mock")) imageModels.push("mock");
return { text: textModels, image: imageModels };
}
}
} catch (err) {
console.warn("Nie udało się pobrać modeli z API (użyto modeli zapasowych):", err.message);
}
return FALLBACK_MODELS;
}
function preparePayload(input) {
const trimmed = input.trim();
const isUrl = trimmed.startsWith("http://") || trimmed.startsWith("https://");
if (isUrl) {
const lowerUrl = trimmed.toLowerCase();
if (lowerUrl.endsWith(".png") || lowerUrl.endsWith(".jpg") || lowerUrl.endsWith(".jpeg") || lowerUrl.endsWith(".webp") || lowerUrl.endsWith(".gif")) {
return {
type: "image",
payload: {
image_url: trimmed,
content_type: "image"
}
};
} else if (lowerUrl.endsWith(".mp4") || lowerUrl.endsWith(".webm") || lowerUrl.endsWith(".mov") || lowerUrl.endsWith(".avi")) {
return {
type: "video",
payload: {
video_url: trimmed,
content_type: "video"
}
};
} else {
return {
type: "file",
payload: {
file_url: trimmed,
content_type: "file"
}
};
}
}
return {
type: "text",
payload: {
text: trimmed,
content_type: "text"
}
};
}
function getProgressBar(confidence, isDeepfake) {
const totalBlocks = 10;
const filledBlocks = Math.min(totalBlocks, Math.max(0, Math.round(confidence * totalBlocks)));
const emptyBlocks = totalBlocks - filledBlocks;
const blockEmoji = isDeepfake ? "🟥" : "🟩";
return blockEmoji.repeat(filledBlocks) + "⬛".repeat(emptyBlocks);
}
// ZMIANA: Funkcja przyjmuje teraz pobrane dynamicznie modele jako drugi parametr
function generateSetupView(tempConfig, availableModels) {
const embed = new EmbedBuilder()
.setColor(0x5865F2)
.setTitle("⚙️ Konfiguracja Systemu Detekcji")
.setDescription("Wybierz kanał do wysyłania logów oraz aktywne modele analizy z menu poniżej.")
.addFields(
{
name: "📂 Kanał logów (Raporty)",
value: tempConfig.logChannelId ? `<#${tempConfig.logChannelId}>` : "*Wysyłanie tylko do konsoli*",
inline: false
},
{
name: "📝 Model tekstowy",
value: `\`${tempConfig.textModel}\``,
inline: true
},
{
name: "🖼️ Model obrazów",
value: `\`${tempConfig.imageModel}\``,
inline: true
}
)
.setFooter({ text: "Wybierz opcje i kliknij Zapisz ustawienia" })
.setTimestamp();
const channelSelect = new ChannelSelectMenuBuilder()
.setCustomId("setup_log_channel")
.setPlaceholder("Wybierz kanał dla raportów")
.addChannelTypes(ChannelType.GuildText);
// DYNAMICZNE mapowanie modeli tekstowych z API
const textOptions = availableModels.text.map(model => ({
label: model === "mock" ? "Mock (Model testowy)" : model,
value: model,
default: tempConfig.textModel === model
}));
const textModelSelect = new StringSelectMenuBuilder()
.setCustomId("setup_text_model")
.setPlaceholder("Wybierz model tekstu")
.addOptions(textOptions);
// DYNAMICZNE mapowanie modeli graficznych z API
const imageOptions = availableModels.image.map(model => ({
label: model === "mock" ? "Mock (Model testowy)" : model,
value: model,
default: tempConfig.imageModel === model
}));
const imageModelSelect = new StringSelectMenuBuilder()
.setCustomId("setup_image_model")
.setPlaceholder("Wybierz model obrazów")
.addOptions(imageOptions);
const buttonsRow = new ActionRowBuilder().addComponents(
new ButtonBuilder()
.setCustomId("setup_save")
.setLabel("Zapisz ustawienia")
.setStyle(ButtonStyle.Success)
.setEmoji("💾"),
new ButtonBuilder()
.setCustomId("setup_cancel")
.setLabel("Anuluj")
.setStyle(ButtonStyle.Danger)
.setEmoji("❌")
);
return {
embeds: [embed],
components: [
new ActionRowBuilder().addComponents(channelSelect),
new ActionRowBuilder().addComponents(textModelSelect),
new ActionRowBuilder().addComponents(imageModelSelect),
buttonsRow
]
};
}
async function sendLogToDiscord(guild, embedToSend) {
const config = loadConfig(guild.id);
if (!config.logChannelId) return;
try {
const channel = await guild.channels.fetch(config.logChannelId);
if (channel) {
await channel.send({ embeds: [embedToSend] });
}
} catch (err) {
console.warn(`Nie można wysłać logu na kanał ${config.logChannelId}:`, err.message);
}
}
async function handleAnalysis(interaction, userContent, targetMessage = null) {
await interaction.deferReply({ flags: [MessageFlags.Ephemeral] });
const serverConfig = loadConfig(interaction.guildId);
try {
const { type, payload } = preparePayload(userContent);
if (type === "text") {
payload.model = serverConfig.textModel;
} else if (type === "image") {
payload.model = serverConfig.imageModel;
}
console.log(`Wysyłanie zapytania typu: ${type} do API z modelem: ${payload.model}...`);
const response = await fetch(`${API_URL}/analyze`, {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(payload),
});
if (!response.ok) {
const errorData = await response.json().catch(() => ({}));
console.error("Szczegóły błędu z FastAPI:", JSON.stringify(errorData, null, 2));
let errorMsg = `Błąd serwera API (Status ${response.status})`;
if (errorData.detail) {
if (Array.isArray(errorData.detail)) {
errorMsg = errorData.detail
.map(err => `• Pole \`${err.loc.join(".")}\`: ${err.msg}`)
.join("\n");
} else {
errorMsg = errorData.detail;
}
}
throw new Error(errorMsg);
}
const data = await response.json();
if (targetMessage) {
try {
if (data.is_deepfake) {
await targetMessage.react('⚠️');
} else {
await targetMessage.react('✅');
}
} catch (reactError) {
console.warn("Nie udało się dodać reakcji do wiadomości:", reactError.message);
}
}
const embedColor = data.is_deepfake ? 0xFF0000 : 0x00FF00;
const verdictText = data.is_deepfake ? "⚠️ Wykryto potencjalny Deepfake!" : "✅ Zawartość wydaje się oryginalna";
const progressBar = getProgressBar(data.confidence, data.is_deepfake);
const confidencePercent = (data.confidence * 100).toFixed(2);
const embed = new EmbedBuilder()
.setColor(embedColor)
.setTitle("🛡️ Wynik Analizy Treści")
.setDescription(`**Werdykt:** ${verdictText}`)
.addFields(
{ name: "Pewność modelu", value: `\`${confidencePercent}%\` \n${progressBar}` },
{ name: "Czas przetwarzania", value: `\`${data.analysis_time.toFixed(3)}s\``, inline: true },
{ name: "Użyty model", value: `\`${data.model_used}\``, inline: true },
{ name: "Format danych", value: `\`${data.content_type.toUpperCase()}\``, inline: true }
)
.setTimestamp()
.setFooter({ text: "Deepfake Detection Service", iconURL: client.user.displayAvatarURL() });
const buttonRow = new ActionRowBuilder().addComponents(
new ButtonBuilder()
.setCustomId("modelCorrect")
.setLabel("Model odpowiedział poprawnie")
.setStyle(ButtonStyle.Success)
.setEmoji("✅"),
new ButtonBuilder()
.setCustomId("reportError")
.setLabel("Zgłoś błąd analizy")
.setStyle(ButtonStyle.Danger)
.setEmoji("⚠️")
);
await interaction.editReply({
embeds: [embed],
components: [buttonRow]
});
} catch (error) {
console.error("Błąd podczas analizy:", error);
await interaction.editReply({
content: `❌ Nie udało się przeprowadzić analizy.\n\n**Szczegóły błędu:**\n${error.message}`,
});
}
}
client.on(Events.InteractionCreate, async (interaction) => {
if (interaction.isChatInputCommand()) {
if (interaction.commandName === "detect") {
const modal = new ModalBuilder()
.setCustomId("detectModal")
.setTitle("Detektor Deepfake");
const textInput = new TextInputBuilder()
.setCustomId("detectInput")
.setLabel("Wklej tutaj tekst lub link (obraz/wideo):")
.setStyle(TextInputStyle.Paragraph)
.setPlaceholder("Wklej zawartość...")
.setRequired(true);
const actionRow = new ActionRowBuilder().addComponents(textInput);
modal.addComponents(actionRow);
await interaction.showModal(modal);
}
// ZMIANA: Pobieranie modeli z API na żywo przed pokazaniem setupu
if (interaction.commandName === "setup") {
const guildId = interaction.guildId;
const currentConfig = loadConfig(guildId);
// Informujemy Discord, że pobieramy konfigurację z API
await interaction.deferReply({ flags: [MessageFlags.Ephemeral] });
// Pobieramy aktywne modele bezpośrednio z FastAPI
const availableModels = await fetchAvailableModels();
// Zapisujemy w sesji zarówno konfigurację, jak i pobrane modele
activeSetupSessions.set(guildId, {
config: { ...currentConfig },
availableModels
});
const setupView = generateSetupView(currentConfig, availableModels);
await interaction.editReply(setupView);
}
}
// OBSŁUGA ZMIANY KANAŁU LOGÓW
if (interaction.isChannelSelectMenu()) {
if (interaction.customId === "setup_log_channel") {
const guildId = interaction.guildId;
const tempSession = activeSetupSessions.get(guildId);
if (tempSession) {
tempSession.config.logChannelId = interaction.values[0];
await interaction.update(generateSetupView(tempSession.config, tempSession.availableModels));
}
}
}
// OBSŁUGA ZMIANY MODELI
if (interaction.isStringSelectMenu()) {
const guildId = interaction.guildId;
const tempSession = activeSetupSessions.get(guildId);
if (tempSession) {
if (interaction.customId === "setup_text_model") {
tempSession.config.textModel = interaction.values[0];
} else if (interaction.customId === "setup_image_model") {
tempSession.config.imageModel = interaction.values[0];
}
await interaction.update(generateSetupView(tempSession.config, tempSession.availableModels));
}
}
if (interaction.isMessageContextMenuCommand()) {
if (interaction.commandName === "Przeanalizuj tekst") {
const targetMessage = interaction.targetMessage;
let contentToAnalyze = targetMessage.content;
const attachment = targetMessage.attachments.first();
if (attachment) {
contentToAnalyze = attachment.url;
}
if (!contentToAnalyze || contentToAnalyze.trim().length === 0) {
return interaction.reply({
content: "❌ Ta wiadomość nie zawiera tekstu ani załączników do analizy.",
flags: [MessageFlags.Ephemeral]
});
}
await handleAnalysis(interaction, contentToAnalyze, targetMessage);
}
}
if (interaction.isModalSubmit()) {
if (interaction.customId === "detectModal") {
const userContent = interaction.fields.getTextInputValue("detectInput");
await handleAnalysis(interaction, userContent);
}
}
if (interaction.isButton()) {
const guildId = interaction.guildId;
if (interaction.customId === "setup_save") {
const tempSession = activeSetupSessions.get(guildId);
if (tempSession) {
saveConfig(guildId, tempSession.config);
activeSetupSessions.delete(guildId);
await interaction.update({
content: "✅ **Ustawienia zostały pomyślnie zapisane!**",
embeds: [],
components: []
});
}
}
if (interaction.customId === "setup_cancel") {
activeSetupSessions.delete(guildId);
await interaction.update({
content: "❌ **Konfiguracja została anulowana.**",
embeds: [],
components: []
});
}
if (interaction.customId === "reportError") {
await interaction.reply({
content: "✅ **Dziękujemy!** Twoje zgłoszenie błędu zostało zarejestrowane.",
flags: [MessageFlags.Ephemeral]
});
console.log(`[RAPORT BŁĘDU] Użytkownik ${interaction.user.tag} (ID: ${interaction.user.id}) zgłosił błędną klasyfikację.`);
const originalEmbed = interaction.message.embeds[0];
if (originalEmbed) {
const logEmbed = EmbedBuilder.from(originalEmbed)
.setColor(0xFFAA00)
.setTitle("⚠️ Zgłoszenie błędu analizy")
.setDescription(`Użytkownik **${interaction.user.tag}** (ID: \`${interaction.user.id}\`) zgłosił błąd analizy w poniższym raporcie.`);
await sendLogToDiscord(interaction.guild, logEmbed);
}
}
if (interaction.customId === "modelCorrect") {
await interaction.reply({
content: "✅ **Dziękujemy!** Twoje potwierdzenie zostało pomyślnie zapisane.",
flags: [MessageFlags.Ephemeral]
});
console.log(`[POTWIERDZENIE] Użytkownik ${interaction.user.tag} (ID: ${interaction.user.id}) potwierdził poprawną klasyfikację.`);
const originalEmbed = interaction.message.embeds[0];
if (originalEmbed) {
const logEmbed = EmbedBuilder.from(originalEmbed)
.setColor(0x00AAFF)
.setTitle("✅ Potwierdzona poprawność analizy")
.setDescription(`Użytkownik **${interaction.user.tag}** (ID: \`${interaction.user.id}\`) potwierdził poprawność raportu.`);
await sendLogToDiscord(interaction.guild, logEmbed);
}
}
}
});
client.on(Events.MessageCreate, (message) => {
if (message.author.bot) return;
console.log(`Message from ${message.author.tag}: ${message.content}`);
});
client.login(process.env.DISCORD_TOKEN); |