mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-27 02:09:33 +00:00
33 lines
1.2 KiB
TypeScript
33 lines
1.2 KiB
TypeScript
// Shares SQLite row mapping helpers between task registry persistence modules.
|
|
import { isRecord } from "../utils.js";
|
|
import { normalizeDeliveryContext } from "../utils/delivery-context.shared.js";
|
|
import type { DeliveryContext } from "../utils/delivery-context.types.js";
|
|
|
|
// oxlint-disable-next-line typescript/no-unnecessary-type-parameters -- Persisted JSON columns are typed by the receiving field.
|
|
function parseSqliteJsonValue<T>(raw: string | null): T | undefined {
|
|
if (!raw?.trim()) {
|
|
return undefined;
|
|
}
|
|
try {
|
|
return JSON.parse(raw) as T;
|
|
} catch {
|
|
return undefined;
|
|
}
|
|
}
|
|
|
|
export function parseDeliveryContextJson(raw: string | null): DeliveryContext | undefined {
|
|
const parsed = parseSqliteJsonValue<unknown>(raw);
|
|
if (!isRecord(parsed)) {
|
|
return undefined;
|
|
}
|
|
return normalizeDeliveryContext({
|
|
channel: typeof parsed.channel === "string" ? parsed.channel : undefined,
|
|
to: typeof parsed.to === "string" ? parsed.to : undefined,
|
|
accountId: typeof parsed.accountId === "string" ? parsed.accountId : undefined,
|
|
threadId:
|
|
typeof parsed.threadId === "string" || typeof parsed.threadId === "number"
|
|
? parsed.threadId
|
|
: undefined,
|
|
});
|
|
}
|