UNPKG

openclaw

Version:

Multi-channel AI gateway with extensible messaging integrations

141 lines (140 loc) 7.8 kB
import { u as asPositiveFiniteNumber } from "./number-coercion-CLj0HTDM.js"; import { m as readNonBlankString } from "./string-coerce-CIXf7egm.js"; //#region src/auto-reply/reply-payload.ts function readAskUserQuestionId(payload) { const askUser = payload.channelData?.askUser; if (!askUser || typeof askUser !== "object" || Array.isArray(askUser)) return; const questionId = askUser.questionId; return typeof questionId === "string" && questionId ? questionId : void 0; } const PAIRING_QR_REPLY_CHANNEL_DATA_KEY = "openclawPairingQr"; function readPairingQrReplyChannelData(payload) { const raw = payload.channelData?.[PAIRING_QR_REPLY_CHANNEL_DATA_KEY]; if (!raw || typeof raw !== "object" || Array.isArray(raw)) return; const record = raw; const setupCode = readNonBlankString(record.setupCode); const expiresAtMs = asPositiveFiniteNumber(record.expiresAtMs); return setupCode && expiresAtMs ? { setupCode, expiresAtMs } : void 0; } /** Metadata for fast-auto progress notices. */ const FAST_MODE_AUTO_PROGRESS_KIND = "fast-mode-auto"; function isFastModeAutoProgressPayload(payload) { return payload.channelData?.openclawProgressKind === FAST_MODE_AUTO_PROGRESS_KIND; } const REPLY_MEDIA_FAILURE_MESSAGES = { "file-not-found": "File not found. Check the path and try again.", "unsupported-format": "Rejected by the local attachment allowlist. Send a supported file type.", "delivery-failed": "Delivery failed. Try sending this file again." }; function formatReplyMediaFailures(failures) { return failures.map((failure) => `⚠️ ${failure.label}: ${REPLY_MEDIA_FAILURE_MESSAGES[failure.code]}`).join("\n"); } /** Appends one named, actionable fallback receipt per failed attachment. */ function appendReplyMediaFailures(text, failures) { if (failures.length === 0) return text; const receipt = formatReplyMediaFailures(failures); return text?.trim() ? `${text}\n${receipt}` : receipt; } /** Removes producer-authored fallback receipts when structured display cards supersede them. */ function stripReplyMediaFailureFallback(text, failures) { if (!text || failures.length === 0) return text; const receipt = formatReplyMediaFailures(failures); if (text === receipt) return; const suffix = `\n${receipt}`; return text.endsWith(suffix) ? text.slice(0, -suffix.length) : text; } function hasReplyPayloadMedia(payload) { return Boolean(readNonBlankString(payload.mediaUrl) || Array.isArray(payload.mediaUrls) && payload.mediaUrls.some(readNonBlankString)); } /** Returns normalized TTS supplement metadata only when the payload has media to carry it. */ function getReplyPayloadTtsSupplement(payload) { const spokenText = readNonBlankString(payload.ttsSupplement?.spokenText); if (!spokenText || !hasReplyPayloadMedia(payload)) return; return { spokenText, ...payload.ttsSupplement?.visibleTextAlreadyDelivered === true ? { visibleTextAlreadyDelivered: true } : {} }; } /** Returns true when the payload is a valid TTS supplement media payload. */ function isReplyPayloadTtsSupplement(payload) { return Boolean(getReplyPayloadTtsSupplement(payload)); } /** Marks a reply payload as supplemental TTS media while preserving the original shape. */ function markReplyPayloadAsTtsSupplement(payload, spokenText = payload.spokenText ?? payload.text ?? "", options) { const normalizedSpokenText = readNonBlankString(spokenText); if (!normalizedSpokenText) return payload; return { ...payload, spokenText: normalizedSpokenText, ttsSupplement: { spokenText: normalizedSpokenText, ...options?.visibleTextAlreadyDelivered === true ? { visibleTextAlreadyDelivered: true } : {} } }; } /** Removes visible-only fields from a payload that should be delivered as TTS supplement media. */ function buildTtsSupplementMediaPayload(payload) { const supplement = getReplyPayloadTtsSupplement(payload); if (!supplement) return payload; const { text: _text, presentation: _presentation, interactive: _interactive, btw: _btw, ...mediaPayload } = payload; return { ...mediaPayload, spokenText: supplement.spokenText, ttsSupplement: supplement }; } const replyPayloadMetadata = /* @__PURE__ */ new WeakMap(); /** Adds internal metadata to a reply payload object. */ function setReplyPayloadMetadata(payload, metadata) { const previous = replyPayloadMetadata.get(payload); replyPayloadMetadata.set(payload, { ...previous, ...metadata }); return payload; } /** Reads internal metadata attached to a reply payload object. */ function getReplyPayloadMetadata(payload) { return replyPayloadMetadata.get(payload); } /** Revalidates an authority-bearing payload against a freshly loaded session row. */ function isReplyPayloadSessionWriterDeliveryAuthorized(payload, entry) { const authority = getReplyPayloadMetadata(payload)?.sessionWriterDeliveryAuthority; if (!authority) return true; return Boolean(entry && entry.sessionId === authority.expectedSessionId && (authority.expectedLifecycleRevision === void 0 || entry.lifecycleRevision === authority.expectedLifecycleRevision) && (authority.expectedWriterRunId === void 0 || entry.activeWriterRunId === authority.expectedWriterRunId)); } /** Returns true when a payload is the synthesized warning for a non-terminal tool error. */ function isReplyPayloadNonTerminalToolErrorWarning(payload) { return getReplyPayloadMetadata(payload)?.nonTerminalToolErrorWarning === true; } /** Copies internal payload metadata when cloning or transforming payload objects. */ function copyReplyPayloadMetadata(source, payload) { const metadata = getReplyPayloadMetadata(source); return metadata ? setReplyPayloadMetadata(payload, metadata) : payload; } /** Marks a host-owned payload as deliverable even when normal source replies are suppressed. */ function markReplyPayloadForSourceSuppressionDelivery(payload) { return setReplyPayloadMetadata(payload, { deliverDespiteSourceReplySuppression: true }); } function markCommandReplyForDelivery(reply) { const markPayload = (payload) => setReplyPayloadMetadata(markReplyPayloadForSourceSuppressionDelivery(payload), { commandReply: true }); if (!reply) return reply; if (Array.isArray(reply)) return reply.map(markPayload); return markPayload(reply); } /** Returns true only when a command owner produced every payload in a non-empty reply. */ function isCommandReplyForDelivery(reply) { const payloads = Array.isArray(reply) ? reply : reply ? [reply] : []; return payloads.length > 0 && payloads.every((payload) => getReplyPayloadMetadata(payload)?.commandReply === true); } /** Returns true for internal status/notice payloads, not assistant answer content. */ function isReplyPayloadStatusNotice(payload) { return Boolean(payload.isCompactionNotice || payload.isFallbackNotice || payload.isStatusNotice); } /** Returns whether a payload carries terminal assistant content rather than a supplemental lane. */ const isReplyPayloadTerminalContent = (payload) => payload.isReasoning !== true && payload.isCommentary !== true && !isReplyPayloadStatusNotice(payload) && !isReplyPayloadTtsSupplement(payload); //#endregion export { readAskUserQuestionId as _, getReplyPayloadMetadata as a, stripReplyMediaFailureFallback as b, isFastModeAutoProgressPayload as c, isReplyPayloadStatusNotice as d, isReplyPayloadTerminalContent as f, markReplyPayloadForSourceSuppressionDelivery as g, markReplyPayloadAsTtsSupplement as h, copyReplyPayloadMetadata as i, isReplyPayloadNonTerminalToolErrorWarning as l, markCommandReplyForDelivery as m, appendReplyMediaFailures as n, getReplyPayloadTtsSupplement as o, isReplyPayloadTtsSupplement as p, buildTtsSupplementMediaPayload as r, isCommandReplyForDelivery as s, FAST_MODE_AUTO_PROGRESS_KIND as t, isReplyPayloadSessionWriterDeliveryAuthorized as u, readPairingQrReplyChannelData as v, setReplyPayloadMetadata as y };