惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
F
Fortinet All Blogs
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
B
Blog RSS Feed
I
InfoQ
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
H
Help Net Security
L
LangChain Blog
M
MIT News - Artificial intelligence
Y
Y Combinator Blog
aimingoo的专栏
aimingoo的专栏

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
refactor(discord): drop unused internal wrapper methods ·...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main

File tree

  • extensions/discord/src/internal

Original file line numberDiff line numberDiff line change

@@ -1,5 +1,5 @@

11

// Discord plugin module implements client behavior.

2-

import type { APIApplicationCommand, APIInteraction } from "discord-api-types/v10";

2+

import type { APIInteraction } from "discord-api-types/v10";

33

import { resolveTimerTimeoutMs } from "openclaw/plugin-sdk/number-runtime";

44

import { DiscordCommandDeployer, type DeployCommandOptions } from "./command-deploy.js";

55

import type { BaseCommand } from "./commands.js";

@@ -272,18 +272,10 @@ export class Client {

272272

return await this.entityCache.fetchMember(guildId, userId);

273273

}

274274
275-

async getDiscordCommands(): Promise<APIApplicationCommand[]> {

276-

return await this.commandDeployer.getCommands();

277-

}

278-
279275

async deployCommands(options: DeployCommandOptions = {}) {

280276

return await this.commandDeployer.deploy(options);

281277

}

282278
283-

async reconcileCommands() {

284-

return await this.deployCommands({ mode: "reconcile" });

285-

}

286-
287279

async handleInteraction(rawData: APIInteraction, _ctx?: Context): Promise<void> {

288280

await dispatchInteraction(this, rawData);

289281

}

Original file line numberDiff line numberDiff line change

@@ -144,9 +144,6 @@ export abstract class Command extends BaseCommand {

144144

`The ${(interaction as { rawData?: { data?: { name?: string } } }).rawData?.data?.name ?? this.name} command does not support autocomplete`,

145145

);

146146

}

147-

async preCheck(interaction: unknown): Promise<unknown> {

148-

return Boolean(interaction) || true;

149-

}

150147

serializeOptions() {

151148

return this.options?.map((option) => {

152149

if (typeof option.autocomplete === "function") {

Original file line numberDiff line numberDiff line change

@@ -138,12 +138,6 @@ export class Row<T extends BaseMessageInteractiveComponent> extends BaseComponen

138138

addComponent(component: T): void {

139139

this.components.push(component);

140140

}

141-

removeComponent(component: T): void {

142-

this.components = this.components.filter((entry) => entry !== component);

143-

}

144-

removeAllComponents(): void {

145-

this.components = [];

146-

}

147141

serialize(): APIActionRowComponent<APIComponentInMessageActionRow> {

148142

return {

149143

type: this.type,

Original file line numberDiff line numberDiff line change

@@ -462,18 +462,6 @@ export class GatewayPlugin extends Plugin {

462462

return this.outboundLimiter.getStatus();

463463

}

464464
465-

getIntentsInfo() {

466-

const intents = this.options.intents ?? 0;

467-

return {

468-

intents,

469-

hasGuilds: this.hasIntent(GatewayIntentBits.Guilds),

470-

hasGuildMembers: this.hasIntent(GatewayIntentBits.GuildMembers),

471-

hasGuildPresences: this.hasIntent(GatewayIntentBits.GuildPresences),

472-

hasGuildMessages: this.hasIntent(GatewayIntentBits.GuildMessages),

473-

hasMessageContent: this.hasIntent(GatewayIntentBits.MessageContent),

474-

};

475-

}

476-
477465

hasIntent(intent: number): boolean {

478466

return Boolean((this.options.intents ?? 0) & intent);

479467

}

Original file line numberDiff line numberDiff line change

@@ -16,7 +16,6 @@ import {

1616

import {

1717

createInteractionCallback,

1818

createWebhookMessage,

19-

deleteWebhookMessage,

2019

editWebhookMessage,

2120

getWebhookMessage,

2221

} from "./api.js";

@@ -209,15 +208,6 @@ export class BaseInteraction {

209208

return result;

210209

}

211210
212-

async deleteReply(): Promise<unknown> {

213-

return await deleteWebhookMessage(

214-

this.client.rest,

215-

this.client.options.clientId,

216-

this.token,

217-

"@original",

218-

);

219-

}

220-
221211

async fetchReply(): Promise<unknown> {

222212

return await getWebhookMessage(

223213

this.client.rest,

@@ -293,18 +283,6 @@ export class BaseComponentInteraction extends BaseInteraction {

293283

async showModal(modal: Modal): Promise<unknown> {

294284

return await this.callback(InteractionResponseType.Modal, modal.serialize());

295285

}

296-
297-

async editAndWaitForComponent(

298-

payload: MessagePayload,

299-

message: Message | null = this.message,

300-

timeoutMs = 300_000,

301-

) {

302-

if (!message) {

303-

return null;

304-

}

305-

const editedMessage = await message.edit(payload);

306-

return await this.client.componentHandler.waitForMessageComponent(editedMessage, timeoutMs);

307-

}

308286

}

309287
310288

export class ButtonInteraction extends BaseComponentInteraction {}