Files
openclaw/extensions/discord/src/probe.ts
T
2026-07-25 00:24:31 -07:00

268 lines
8.7 KiB
TypeScript

// Discord plugin module implements probe behavior.
import type { BaseProbeResult } from "openclaw/plugin-sdk/channel-contract";
import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";
import { resolveFetch } from "openclaw/plugin-sdk/fetch-runtime";
import { readResponseWithLimit } from "openclaw/plugin-sdk/response-limit-runtime";
import { fetchWithTimeout, runChannelProbe } from "openclaw/plugin-sdk/text-utility-runtime";
import { DiscordApiError, fetchDiscord } from "./api.js";
import { normalizeDiscordToken } from "./token.js";
const DISCORD_API_BASE = "https://discord.com/api/v10";
const DISCORD_PROBE_GET_ME_LABEL = "discord.probe.getMe";
const DISCORD_PROBE_JSON_MAX_BYTES = 16 * 1024 * 1024;
const DISCORD_PROBE_COMPLETION_RESERVE_MAX_MS = 25;
export type DiscordProbe = BaseProbeResult & {
status?: number | null;
elapsedMs: number;
bot?: { id?: string | null; username?: string | null };
application?: DiscordApplicationSummary;
};
export type DiscordPrivilegedIntentStatus = "enabled" | "limited" | "disabled";
export type DiscordPrivilegedIntentsSummary = {
messageContent: DiscordPrivilegedIntentStatus;
guildMembers: DiscordPrivilegedIntentStatus;
presence: DiscordPrivilegedIntentStatus;
};
export type DiscordApplicationSummary = {
id?: string | null;
flags?: number | null;
intents?: DiscordPrivilegedIntentsSummary;
};
const DISCORD_APP_FLAG_GATEWAY_PRESENCE = 1 << 12;
const DISCORD_APP_FLAG_GATEWAY_PRESENCE_LIMITED = 1 << 13;
const DISCORD_APP_FLAG_GATEWAY_GUILD_MEMBERS = 1 << 14;
const DISCORD_APP_FLAG_GATEWAY_GUILD_MEMBERS_LIMITED = 1 << 15;
const DISCORD_APP_FLAG_GATEWAY_MESSAGE_CONTENT = 1 << 18;
const DISCORD_APP_FLAG_GATEWAY_MESSAGE_CONTENT_LIMITED = 1 << 19;
async function fetchDiscordApplicationMe(
token: string,
timeoutMs: number,
fetcher: typeof fetch,
): Promise<{ id?: string; flags?: number } | undefined> {
try {
const normalized = normalizeDiscordToken(token, "channels.discord.token");
if (!normalized) {
return undefined;
}
return await fetchDiscord<{ id?: string; flags?: number }>(
"/oauth2/applications/@me",
normalized,
fetcher,
{ retry: { attempts: 1 }, timeoutMs },
);
} catch {
return undefined;
}
}
export function resolveDiscordPrivilegedIntentsFromFlags(
flags: number,
): DiscordPrivilegedIntentsSummary {
const resolve = (enabledBit: number, limitedBit: number) => {
if ((flags & enabledBit) !== 0) {
return "enabled";
}
if ((flags & limitedBit) !== 0) {
return "limited";
}
return "disabled";
};
return {
presence: resolve(DISCORD_APP_FLAG_GATEWAY_PRESENCE, DISCORD_APP_FLAG_GATEWAY_PRESENCE_LIMITED),
guildMembers: resolve(
DISCORD_APP_FLAG_GATEWAY_GUILD_MEMBERS,
DISCORD_APP_FLAG_GATEWAY_GUILD_MEMBERS_LIMITED,
),
messageContent: resolve(
DISCORD_APP_FLAG_GATEWAY_MESSAGE_CONTENT,
DISCORD_APP_FLAG_GATEWAY_MESSAGE_CONTENT_LIMITED,
),
};
}
export async function fetchDiscordApplicationSummary(
token: string,
timeoutMs: number,
fetcher: typeof fetch = fetch,
): Promise<DiscordApplicationSummary | undefined> {
const json = await fetchDiscordApplicationMe(token, timeoutMs, fetcher);
if (!json) {
return undefined;
}
const flags =
typeof json.flags === "number" && Number.isFinite(json.flags) ? json.flags : undefined;
return {
id: json.id ?? null,
flags: flags ?? null,
intents:
typeof flags === "number" ? resolveDiscordPrivilegedIntentsFromFlags(flags) : undefined,
};
}
function getResolvedFetch(fetcher: typeof fetch): typeof fetch {
const fetchImpl = resolveFetch(fetcher);
if (!fetchImpl) {
throw new Error("fetch is not available");
}
return fetchImpl;
}
async function readDiscordProbeGetMeJson(
response: Response,
timeoutMs: number,
deadlineMs: number,
): Promise<{ id?: string; username?: string }> {
const bytes = await readResponseWithLimit(response, DISCORD_PROBE_JSON_MAX_BYTES, {
chunkTimeoutMs: timeoutMs,
onIdleTimeout: ({ chunkTimeoutMs }) =>
new Error(`${DISCORD_PROBE_GET_ME_LABEL}: JSON response stalled after ${chunkTimeoutMs}ms`),
timeoutMs: Math.max(1, deadlineMs - Date.now()),
onTimeout: () =>
new Error(`${DISCORD_PROBE_GET_ME_LABEL}: JSON response timed out after ${timeoutMs}ms`),
onOverflow: ({ maxBytes }) =>
new Error(`${DISCORD_PROBE_GET_ME_LABEL}: JSON response exceeds ${maxBytes} bytes`),
});
try {
return JSON.parse(new TextDecoder().decode(bytes)) as { id?: string; username?: string };
} catch (cause) {
throw new Error(`${DISCORD_PROBE_GET_ME_LABEL}: malformed JSON response`, { cause });
}
}
export async function probeDiscord(
token: string,
timeoutMs: number,
opts?: { fetcher?: typeof fetch; includeApplication?: boolean },
): Promise<DiscordProbe> {
return await runChannelProbe(
undefined,
async ({ startedAt }) => {
const fetcher = opts?.fetcher ?? fetch;
const includeApplication = opts?.includeApplication === true;
const normalized = normalizeDiscordToken(token, "channels.discord.token");
const result: Omit<DiscordProbe, "elapsedMs"> = {
ok: false,
status: null,
error: null,
};
if (!normalized) {
return { ...result, error: "missing token" };
}
let res: Response | undefined;
try {
const getMeUrl = `${DISCORD_API_BASE}/users/@me`;
const getMeDeadlineMs = Date.now() + timeoutMs;
res = await fetchWithTimeout(
getMeUrl,
{ headers: { Authorization: `Bot ${normalized}` } },
timeoutMs,
getResolvedFetch(fetcher),
);
if (!res.ok) {
return { ...result, status: res.status, error: `getMe failed (${res.status})` };
}
const json = await readDiscordProbeGetMeJson(res, timeoutMs, getMeDeadlineMs);
result.ok = true;
result.bot = {
id: json.id ?? null,
username: json.username ?? null,
};
if (includeApplication) {
// Application metadata is optional. Keep its deadline inside the outer status budget so a
// stalled secondary response cannot discard the already-resolved bot identity.
const elapsedMs = Math.max(0, Date.now() - startedAt);
const completionReserveMs = Math.min(
DISCORD_PROBE_COMPLETION_RESERVE_MAX_MS,
Math.max(1, Math.floor(timeoutMs / 10)),
);
const applicationTimeoutMs = Math.floor(timeoutMs - elapsedMs - completionReserveMs);
if (applicationTimeoutMs > 0) {
result.application =
(await fetchDiscordApplicationSummary(normalized, applicationTimeoutMs, fetcher)) ??
undefined;
}
}
return result;
} finally {
if (res?.bodyUsed !== true) {
await res?.body?.cancel().catch(() => undefined);
}
}
},
(error) => ({
ok: false,
status: error instanceof Response ? error.status : null,
error: formatErrorMessage(error),
}),
);
}
/**
* Extract the application (bot user) ID from a Discord bot token by
* base64-decoding the first segment. Discord tokens have the format:
* base64(user_id) . timestamp . hmac
* The decoded first segment is the numeric snowflake ID as a plain string,
* so we keep it as a string to avoid precision loss for IDs that exceed
* Number.MAX_SAFE_INTEGER.
*/
export function parseApplicationIdFromToken(token: string): string | undefined {
const normalized = normalizeDiscordToken(token, "channels.discord.token");
if (!normalized) {
return undefined;
}
const firstDot = normalized.indexOf(".");
if (firstDot <= 0) {
return undefined;
}
try {
const decoded = Buffer.from(normalized.slice(0, firstDot), "base64").toString("utf-8");
if (/^\d+$/.test(decoded)) {
return decoded;
}
return undefined;
} catch {
return undefined;
}
}
export async function fetchDiscordApplicationId(
token: string,
timeoutMs: number,
fetcher: typeof fetch = fetch,
): Promise<string | undefined> {
const normalized = normalizeDiscordToken(token, "channels.discord.token");
if (!normalized) {
return undefined;
}
const parsedApplicationId = parseApplicationIdFromToken(token);
if (parsedApplicationId) {
return parsedApplicationId;
}
try {
const json = await fetchDiscord<{ id?: string }>(
"/oauth2/applications/@me",
normalized,
fetcher,
{ timeoutMs },
);
if (json?.id) {
return json.id;
}
return undefined;
} catch (error) {
if (error instanceof DiscordApiError) {
if (error.status === 429) {
throw error;
}
return undefined;
}
return undefined;
}
}