mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-17 04:01:05 +00:00
64 lines
1.9 KiB
TypeScript
64 lines
1.9 KiB
TypeScript
import { createLazyRuntimeNamedExport } from "openclaw/plugin-sdk/lazy-runtime";
|
|
import type { ChannelAccountSnapshot } from "openclaw/plugin-sdk/status-helpers";
|
|
import {
|
|
createAccountStatusSink,
|
|
runPassiveAccountLifecycle,
|
|
type OpenClawConfig,
|
|
type ResolvedGoogleChatAccount,
|
|
} from "./channel.deps.runtime.js";
|
|
import type { GoogleChatRuntimeEnv } from "./monitor-types.js";
|
|
|
|
const loadGoogleChatChannelRuntime = createLazyRuntimeNamedExport(
|
|
() => import("./channel.runtime.js"),
|
|
"googleChatChannelRuntime",
|
|
);
|
|
|
|
export async function startGoogleChatGatewayAccount(ctx: {
|
|
account: ResolvedGoogleChatAccount;
|
|
cfg: OpenClawConfig;
|
|
runtime: GoogleChatRuntimeEnv;
|
|
abortSignal: AbortSignal;
|
|
setStatus: (next: ChannelAccountSnapshot) => void;
|
|
log?: {
|
|
info?: (message: string) => void;
|
|
};
|
|
}): Promise<void> {
|
|
const account = ctx.account;
|
|
const statusSink = createAccountStatusSink({
|
|
accountId: account.accountId,
|
|
setStatus: ctx.setStatus,
|
|
});
|
|
ctx.log?.info?.(`[${account.accountId}] starting Google Chat webhook`);
|
|
const { resolveGoogleChatWebhookPath, startGoogleChatMonitor } =
|
|
await loadGoogleChatChannelRuntime();
|
|
statusSink({
|
|
running: true,
|
|
lastStartAt: Date.now(),
|
|
webhookPath: resolveGoogleChatWebhookPath({ account }),
|
|
audienceType: account.config.audienceType,
|
|
audience: account.config.audience,
|
|
});
|
|
await runPassiveAccountLifecycle({
|
|
abortSignal: ctx.abortSignal,
|
|
start: async () =>
|
|
await startGoogleChatMonitor({
|
|
account,
|
|
config: ctx.cfg,
|
|
runtime: ctx.runtime,
|
|
abortSignal: ctx.abortSignal,
|
|
webhookPath: account.config.webhookPath,
|
|
webhookUrl: account.config.webhookUrl,
|
|
statusSink,
|
|
}),
|
|
stop: async (unregister) => {
|
|
unregister?.();
|
|
},
|
|
onStop: async () => {
|
|
statusSink({
|
|
running: false,
|
|
lastStopAt: Date.now(),
|
|
});
|
|
},
|
|
});
|
|
}
|