Closes #1154 <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Added authentication functionality for user sessions in chat API. - Introduced chat-related API endpoints for starting, previewing, and continuing chat sessions, and streaming messages. - Implemented WhatsApp API webhook handling for receiving and processing messages. - Added environment variable `NEXT_PUBLIC_CHAT_API_URL` for chat API URL configuration. - **Bug Fixes** - Adjusted file upload logic to correctly determine the API host. - Fixed message streaming URL in chat integration with OpenAI. - **Documentation** - Updated guides for creating blocks, local installation, self-hosting, and deployment to use `bun` instead of `pnpm`. - **Refactor** - Refactored chat API functionalities to use modular architecture. - Simplified client log saving and session update functionalities by using external functions. - Transitioned package management and workflow commands to use `bun`. - **Chores** - Switched to `bun` for package management in Dockerfiles and GitHub workflows. - Added new Dockerfile for chat API service setup with Bun framework. - Updated `.prettierignore` and documentation with new commands. - **Style** - No visible changes to end-users. - **Tests** - No visible changes to end-users. - **Revert** - No reverts in this release. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
98 lines
2.2 KiB
TypeScript
98 lines
2.2 KiB
TypeScript
import { StartFrom, StartTypebot } from '@typebot.io/schemas'
|
|
import { restartSession } from '../queries/restartSession'
|
|
import { saveStateToDatabase } from '../saveStateToDatabase'
|
|
import { startSession } from '../startSession'
|
|
import { computeCurrentProgress } from '../computeCurrentProgress'
|
|
|
|
type Props = {
|
|
message?: string
|
|
isOnlyRegistering: boolean
|
|
isStreamEnabled: boolean
|
|
startFrom?: StartFrom
|
|
typebotId: string
|
|
typebot?: StartTypebot
|
|
userId?: string
|
|
prefilledVariables?: Record<string, unknown>
|
|
}
|
|
|
|
export const startChatPreview = async ({
|
|
message,
|
|
isOnlyRegistering,
|
|
isStreamEnabled,
|
|
startFrom,
|
|
typebotId,
|
|
typebot: startTypebot,
|
|
userId,
|
|
prefilledVariables,
|
|
}: Props) => {
|
|
const {
|
|
typebot,
|
|
messages,
|
|
input,
|
|
dynamicTheme,
|
|
logs,
|
|
clientSideActions,
|
|
newSessionState,
|
|
visitedEdges,
|
|
} = await startSession({
|
|
version: 2,
|
|
startParams: {
|
|
type: 'preview',
|
|
isOnlyRegistering,
|
|
isStreamEnabled,
|
|
startFrom,
|
|
typebotId,
|
|
typebot: startTypebot,
|
|
userId,
|
|
prefilledVariables,
|
|
},
|
|
message,
|
|
})
|
|
|
|
const session = isOnlyRegistering
|
|
? await restartSession({
|
|
state: newSessionState,
|
|
})
|
|
: await saveStateToDatabase({
|
|
session: {
|
|
state: newSessionState,
|
|
},
|
|
input,
|
|
logs,
|
|
clientSideActions,
|
|
visitedEdges,
|
|
hasCustomEmbedBubble: messages.some(
|
|
(message) => message.type === 'custom-embed'
|
|
),
|
|
})
|
|
|
|
const isEnded =
|
|
newSessionState.progressMetadata &&
|
|
!input?.id &&
|
|
(clientSideActions?.filter((c) => c.expectsDedicatedReply).length ?? 0) ===
|
|
0
|
|
|
|
return {
|
|
sessionId: session.id,
|
|
typebot: {
|
|
id: typebot.id,
|
|
theme: typebot.theme,
|
|
settings: typebot.settings,
|
|
},
|
|
messages,
|
|
input,
|
|
dynamicTheme,
|
|
logs,
|
|
clientSideActions,
|
|
progress: newSessionState.progressMetadata
|
|
? isEnded
|
|
? 100
|
|
: computeCurrentProgress({
|
|
typebotsQueue: newSessionState.typebotsQueue,
|
|
progressMetadata: newSessionState.progressMetadata,
|
|
currentInputBlockId: input?.id,
|
|
})
|
|
: undefined,
|
|
}
|
|
}
|