Spracherkennung für: .ts vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]
import type { Client } from "@buape/carbon";
import {
createChannelInboundDebouncer,
shouldDebounceTextInbound,
} from "openclaw/plugin-sdk/channel-inbound";
import { danger } from "openclaw/plugin-sdk/runtime-env";
import { resolveOpenProviderRuntimeGroupPolicy } from "openclaw/plugin-sdk/runtime-group-policy";
import {
buildDiscordInboundReplayKey,
claimDiscordInboundReplay,
commitDiscordInboundReplay,
createDiscordInboundReplayGuard,
DiscordRetryableInboundError,
releaseDiscordInboundReplay,
} from "./inbound-dedupe.js";
import { buildDiscordInboundJob } from "./inbound-job.js";
import {
createDiscordInboundWorker,
type DiscordInboundWorkerTestingHooks,
} from "./inbound-worker.js";
import type { DiscordMessageEvent, DiscordMessageHandler } from "./listeners.js";
import { applyImplicitReplyBatchGate } from "./message-handler.batch-gate.js";
import type { DiscordMessagePreflightParams } from "./message-handler.preflight.types.js";
import {
hasDiscordMessageStickers,
resolveDiscordMessageChannelId,
resolveDiscordMessageText,
} from "./message-utils.js";
import type { DiscordMonitorStatusSink } from "./status.js";
type PreflightDiscordMessage =
typeof import("./message-handler.preflight.js").preflightDiscordMessage;
type DiscordMessageHandlerParams = Omit<
DiscordMessagePreflightParams,
"ackReactionScope" | "groupPolicy" | "data" | "client"
> & {
setStatus?: DiscordMonitorStatusSink;
abortSignal?: AbortSignal;
workerRunTimeoutMs?: number;
__testing?: DiscordMessageHandlerTestingHooks;
};
type DiscordMessageHandlerTestingHooks = DiscordInboundWorkerTestingHooks & {
preflightDiscordMessage?: PreflightDiscordMessage;
};
let messagePreflightRuntimePromise:
| Promise<typeof import("./message-handler.preflight.js")>
| undefined;
async function loadMessagePreflightRuntime() {
messagePreflightRuntimePromise ??= import("./message-handler.preflight.js");
return await messagePreflightRuntimePromise;
}
export type DiscordMessageHandlerWithLifecycle = DiscordMessageHandler & {
deactivate: () => void;
};
function isNonEmptyString(value: string | undefined): value is string {
return typeof value === "string" && value.length > 0;
}
export function createDiscordMessageHandler(
params: DiscordMessageHandlerParams,
): DiscordMessageHandlerWithLifecycle {
const { groupPolicy } = resolveOpenProviderRuntimeGroupPolicy({
providerConfigPresent: params.cfg.channels?.discord !== undefined,
groupPolicy: params.discordConfig?.groupPolicy,
defaultGroupPolicy: params.cfg.channels?.defaults?.groupPolicy,
});
const ackReactionScope =
params.discordConfig?.ackReactionScope ??
params.cfg.messages?.ackReactionScope ??
"group-mentions";
const preflightDiscordMessageImpl = params.__testing?.preflightDiscordMessage;
const replayGuard = createDiscordInboundReplayGuard();
const inboundWorker = createDiscordInboundWorker({
runtime: params.runtime,
setStatus: params.setStatus,
abortSignal: params.abortSignal,
runTimeoutMs: params.workerRunTimeoutMs,
replayGuard,
__testing: params.__testing,
});
const { debouncer } = createChannelInboundDebouncer<{
data: DiscordMessageEvent;
client: Client;
abortSignal?: AbortSignal;
replayKey?: string;
}>({
cfg: params.cfg,
channel: "discord",
buildKey: (entry) => {
const message = entry.data.message;
const authorId = entry.data.author?.id;
if (!message || !authorId) {
return null;
}
const channelId = resolveDiscordMessageChannelId({
message,
eventChannelId: entry.data.channel_id,
});
if (!channelId) {
return null;
}
return `discord:${params.accountId}:${channelId}:${authorId}`;
},
shouldDebounce: (entry) => {
const message = entry.data.message;
if (!message) {
return false;
}
const baseText = resolveDiscordMessageText(message, { includeForwarded: false });
return shouldDebounceTextInbound({
text: baseText,
cfg: params.cfg,
hasMedia: Boolean(
(message.attachments && message.attachments.length > 0) ||
hasDiscordMessageStickers(message),
),
});
},
onFlush: async (entries) => {
const last = entries.at(-1);
if (!last) {
return;
}
const replayKeys = entries.map((entry) => entry.replayKey).filter(isNonEmptyString);
const abortSignal = last.abortSignal;
if (abortSignal?.aborted) {
releaseDiscordInboundReplay({
replayKeys,
error: abortSignal.reason,
replayGuard,
});
return;
}
try {
if (entries.length === 1) {
const preflight =
preflightDiscordMessageImpl ??
(await loadMessagePreflightRuntime()).preflightDiscordMessage;
const ctx = await preflight({
...params,
ackReactionScope,
groupPolicy,
abortSignal,
data: last.data,
client: last.client,
});
if (!ctx) {
await commitDiscordInboundReplay({ replayKeys, replayGuard });
return;
}
applyImplicitReplyBatchGate(ctx, params.replyToMode, false);
inboundWorker.enqueue(buildDiscordInboundJob(ctx, { replayKeys }));
return;
}
const combinedBaseText = entries
.map((entry) =>
resolveDiscordMessageText(entry.data.message, { includeForwarded: false }),
)
.filter(Boolean)
.join("\n");
const syntheticMessage = {
...last.data.message,
content: combinedBaseText,
attachments: [],
message_snapshots: (last.data.message as { message_snapshots?: unknown })
.message_snapshots,
messageSnapshots: (last.data.message as { messageSnapshots?: unknown }).messageSnapshots,
rawData: {
...(last.data.message as { rawData?: Record<string, unknown> }).rawData,
},
};
const syntheticData: DiscordMessageEvent = {
...last.data,
message: syntheticMessage,
};
const preflight =
preflightDiscordMessageImpl ??
(await loadMessagePreflightRuntime()).preflightDiscordMessage;
const ctx = await preflight({
...params,
ackReactionScope,
groupPolicy,
abortSignal,
data: syntheticData,
client: last.client,
});
if (!ctx) {
await commitDiscordInboundReplay({ replayKeys, replayGuard });
return;
}
applyImplicitReplyBatchGate(ctx, params.replyToMode, true);
if (entries.length > 1) {
const ids = entries.map((entry) => entry.data.message?.id).filter(isNonEmptyString);
if (ids.length > 0) {
const ctxBatch = ctx as typeof ctx & {
MessageSids?: string[];
MessageSidFirst?: string;
MessageSidLast?: string;
};
ctxBatch.MessageSids = ids;
ctxBatch.MessageSidFirst = ids[0];
ctxBatch.MessageSidLast = ids[ids.length - 1];
}
}
inboundWorker.enqueue(buildDiscordInboundJob(ctx, { replayKeys }));
} catch (error) {
if (error instanceof DiscordRetryableInboundError) {
releaseDiscordInboundReplay({ replayKeys, error, replayGuard });
} else {
await commitDiscordInboundReplay({ replayKeys, replayGuard });
}
throw error;
}
},
onError: (err) => {
params.runtime.error?.(danger(`discord debounce flush failed: ${String(err)}`));
},
});
const handler: DiscordMessageHandlerWithLifecycle = async (data, client, options) => {
try {
if (options?.abortSignal?.aborted) {
return;
}
// Filter bot-own messages before they enter the debounce queue.
// The same check exists in preflightDiscordMessage(), but by that point
// the message has already consumed debounce capacity and blocked
// legitimate user messages. On active servers this causes cumulative
// slowdown (see #15874).
const msgAuthorId = data.message?.author?.id ?? data.author?.id;
if (params.botUserId && msgAuthorId === params.botUserId) {
return;
}
const replayKey = buildDiscordInboundReplayKey({
accountId: params.accountId,
data,
});
if (
!(await claimDiscordInboundReplay({
replayKey,
replayGuard,
}))
) {
return;
}
await debouncer.enqueue({
data,
client,
abortSignal: options?.abortSignal,
replayKey: replayKey ?? undefined,
});
} catch (err) {
params.runtime.error?.(danger(`handler failed: ${String(err)}`));
}
};
handler.deactivate = inboundWorker.deactivate;
return handler;
}
¤ Dauer der Verarbeitung: 0.24 Sekunden
(vorverarbeitet am 2026-04-27)
¤
*© Formatika GbR, Deutschland
|
|