refactor!: rename chat providers to channels
This commit is contained in:
39
src/channels/plugins/status.ts
Normal file
39
src/channels/plugins/status.ts
Normal file
@@ -0,0 +1,39 @@
|
||||
import type { ClawdbotConfig } from "../../config/config.js";
|
||||
import type { ChannelAccountSnapshot, ChannelPlugin } from "./types.js";
|
||||
|
||||
// Channel docking: status snapshots flow through plugin.status hooks here.
|
||||
export async function buildChannelAccountSnapshot<ResolvedAccount>(params: {
|
||||
plugin: ChannelPlugin<ResolvedAccount>;
|
||||
cfg: ClawdbotConfig;
|
||||
accountId: string;
|
||||
runtime?: ChannelAccountSnapshot;
|
||||
probe?: unknown;
|
||||
audit?: unknown;
|
||||
}): Promise<ChannelAccountSnapshot> {
|
||||
const account = params.plugin.config.resolveAccount(
|
||||
params.cfg,
|
||||
params.accountId,
|
||||
);
|
||||
if (params.plugin.status?.buildAccountSnapshot) {
|
||||
return await params.plugin.status.buildAccountSnapshot({
|
||||
account,
|
||||
cfg: params.cfg,
|
||||
runtime: params.runtime,
|
||||
probe: params.probe,
|
||||
audit: params.audit,
|
||||
});
|
||||
}
|
||||
const enabled = params.plugin.config.isEnabled
|
||||
? params.plugin.config.isEnabled(account, params.cfg)
|
||||
: account && typeof account === "object"
|
||||
? (account as { enabled?: boolean }).enabled
|
||||
: undefined;
|
||||
const configured = params.plugin.config.isConfigured
|
||||
? await params.plugin.config.isConfigured(account, params.cfg)
|
||||
: undefined;
|
||||
return {
|
||||
accountId: params.accountId,
|
||||
enabled,
|
||||
configured,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user