Files
clawdbot/src/auto-reply/templating.ts
2025-11-25 02:16:54 +01:00

21 lines
517 B
TypeScript

export type MsgContext = {
Body?: string;
From?: string;
To?: string;
MessageSid?: string;
};
export type TemplateContext = MsgContext & {
BodyStripped?: string;
SessionId?: string;
IsNewSession?: string;
};
export function applyTemplate(str: string, ctx: TemplateContext) {
// Simple {{Placeholder}} interpolation using inbound message context.
return str.replace(/{{\s*(\w+)\s*}}/g, (_, key) => {
const value = (ctx as Record<string, unknown>)[key];
return value == null ? "" : String(value);
});
}