mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-15 03:50:40 +00:00
* refactor: remove channel shim directories, point all imports to extensions
Delete the 6 backward-compat shim directories (src/telegram, src/discord,
src/slack, src/signal, src/imessage, src/web) that were re-exporting from
extensions. Update all 112+ source files to import directly from
extensions/{channel}/src/ instead of through the shims.
Also:
- Move src/channels/telegram/ (allow-from, api) to extensions/telegram/src/
- Fix outbound adapters to use resolveOutboundSendDep (fixes 5 pre-existing TS errors)
- Update cross-extension imports (src/web/media.js → extensions/whatsapp/src/media.js)
- Update vitest, tsdown, knip, labeler, and script configs for new paths
- Update guard test allowlists for extension paths
After this, src/ has zero channel-specific implementation code — only the
generic plugin framework remains.
* fix: update raw-fetch guard allowlist line numbers after shim removal
* refactor: document direct extension channel imports
* test: mock transcript module in delivery helpers
63 lines
1.7 KiB
TypeScript
63 lines
1.7 KiB
TypeScript
import { sendMessageTelegram } from "../../extensions/telegram/src/send.js";
|
|
import { loadConfig } from "../../src/config/config.js";
|
|
import { matchPluginCommand, executePluginCommand } from "../../src/plugins/commands.js";
|
|
import { loadOpenClawPlugins } from "../../src/plugins/loader.js";
|
|
|
|
const args = process.argv.slice(2);
|
|
const getArg = (flag: string, short?: string) => {
|
|
const idx = args.indexOf(flag);
|
|
if (idx !== -1 && idx + 1 < args.length) {
|
|
return args[idx + 1];
|
|
}
|
|
if (short) {
|
|
const sidx = args.indexOf(short);
|
|
if (sidx !== -1 && sidx + 1 < args.length) {
|
|
return args[sidx + 1];
|
|
}
|
|
}
|
|
return undefined;
|
|
};
|
|
|
|
const chatId = getArg("--chat", "-c");
|
|
const accountId = getArg("--account", "-a");
|
|
if (!chatId) {
|
|
// eslint-disable-next-line no-console
|
|
console.error(
|
|
"Usage: bun scripts/dev/test-device-pair-telegram.ts --chat <telegram-chat-id> [--account <accountId>]",
|
|
);
|
|
process.exit(1);
|
|
}
|
|
|
|
const cfg = loadConfig();
|
|
loadOpenClawPlugins({ config: cfg });
|
|
|
|
const match = matchPluginCommand("/pair");
|
|
if (!match) {
|
|
// eslint-disable-next-line no-console
|
|
console.error("/pair plugin command not registered.");
|
|
process.exit(1);
|
|
}
|
|
|
|
const result = await executePluginCommand({
|
|
command: match.command,
|
|
args: match.args,
|
|
senderId: chatId,
|
|
channel: "telegram",
|
|
channelId: "telegram",
|
|
isAuthorizedSender: true,
|
|
commandBody: "/pair",
|
|
config: cfg,
|
|
from: `telegram:${chatId}`,
|
|
to: `telegram:${chatId}`,
|
|
accountId: accountId,
|
|
});
|
|
|
|
if (result.text) {
|
|
await sendMessageTelegram(chatId, result.text, {
|
|
accountId: accountId,
|
|
});
|
|
}
|
|
|
|
// eslint-disable-next-line no-console
|
|
console.log("Sent split /pair messages to", chatId, accountId ? `(${accountId})` : "");
|