|
import type { Migration } from "."; |
|
import { collections } from "$lib/server/database"; |
|
import { ObjectId, type WithId } from "mongodb"; |
|
import type { Conversation } from "$lib/types/Conversation"; |
|
import type { WebSearchSource } from "$lib/types/WebSearch"; |
|
import { |
|
MessageUpdateStatus, |
|
MessageUpdateType, |
|
MessageWebSearchUpdateType, |
|
type MessageUpdate, |
|
type MessageWebSearchFinishedUpdate, |
|
} from "$lib/types/MessageUpdate"; |
|
import type { Message } from "$lib/types/Message"; |
|
import { isMessageWebSearchSourcesUpdate } from "$lib/utils/messageUpdates"; |
|
|
|
|
|
|
|
export type FinalAnswer = { |
|
type: "finalAnswer"; |
|
text: string; |
|
}; |
|
|
|
export type TextStreamUpdate = { |
|
type: "stream"; |
|
token: string; |
|
}; |
|
|
|
type WebSearchUpdate = { |
|
type: "webSearch"; |
|
messageType: "update" | "error" | "sources"; |
|
message: string; |
|
args?: string[]; |
|
sources?: WebSearchSource[]; |
|
}; |
|
|
|
type StatusUpdate = { |
|
type: "status"; |
|
status: "started" | "pending" | "finished" | "error" | "title"; |
|
message?: string; |
|
}; |
|
|
|
type ErrorUpdate = { |
|
type: "error"; |
|
message: string; |
|
name: string; |
|
}; |
|
|
|
type FileUpdate = { |
|
type: "file"; |
|
sha: string; |
|
}; |
|
|
|
type OldMessageUpdate = |
|
| FinalAnswer |
|
| TextStreamUpdate |
|
| WebSearchUpdate |
|
| StatusUpdate |
|
| ErrorUpdate |
|
| FileUpdate; |
|
|
|
|
|
function convertMessageUpdate(message: Message, update: OldMessageUpdate): MessageUpdate | null { |
|
try { |
|
|
|
if (update.type === "finalAnswer") { |
|
return { |
|
type: MessageUpdateType.FinalAnswer, |
|
text: update.text, |
|
interrupted: message.interrupted ?? false, |
|
}; |
|
} else if (update.type === "stream") { |
|
return { |
|
type: MessageUpdateType.Stream, |
|
token: update.token, |
|
}; |
|
} else if (update.type === "file") { |
|
return { |
|
type: MessageUpdateType.File, |
|
name: "Unknown", |
|
sha: update.sha, |
|
|
|
mime: "image/jpeg", |
|
}; |
|
} |
|
|
|
|
|
else if (update.type === "status") { |
|
if (update.status === "title") { |
|
return { |
|
type: MessageUpdateType.Title, |
|
title: update.message ?? "New Chat", |
|
}; |
|
} |
|
if (update.status === "pending") return null; |
|
|
|
const status = |
|
update.status === "started" |
|
? MessageUpdateStatus.Started |
|
: update.status === "finished" |
|
? MessageUpdateStatus.Finished |
|
: MessageUpdateStatus.Error; |
|
return { |
|
type: MessageUpdateType.Status, |
|
status, |
|
message: update.message, |
|
}; |
|
} else if (update.type === "error") { |
|
|
|
return { |
|
type: MessageUpdateType.Status, |
|
status: MessageUpdateStatus.Error, |
|
message: update.message, |
|
}; |
|
} |
|
|
|
|
|
else if (update.type === "webSearch") { |
|
if (update.messageType === "update") { |
|
return { |
|
type: MessageUpdateType.WebSearch, |
|
subtype: MessageWebSearchUpdateType.Update, |
|
message: update.message, |
|
args: update.args, |
|
}; |
|
} else if (update.messageType === "error") { |
|
return { |
|
type: MessageUpdateType.WebSearch, |
|
subtype: MessageWebSearchUpdateType.Error, |
|
message: update.message, |
|
args: update.args, |
|
}; |
|
} else if (update.messageType === "sources") { |
|
return { |
|
type: MessageUpdateType.WebSearch, |
|
subtype: MessageWebSearchUpdateType.Sources, |
|
message: update.message, |
|
sources: update.sources ?? [], |
|
}; |
|
} |
|
} |
|
console.warn("Unknown message update during migration:", update); |
|
return null; |
|
} catch (error) { |
|
console.error("Error converting message update during migration. Skipping it... Error:", error); |
|
return null; |
|
} |
|
} |
|
|
|
const updateMessageUpdates: Migration = { |
|
_id: new ObjectId("5f9f7f7f7f7f7f7f7f7f7f7f"), |
|
name: "Convert message updates to the new schema", |
|
up: async () => { |
|
const allConversations = collections.conversations.find({}); |
|
|
|
let conversation: WithId<Pick<Conversation, "messages">> | null = null; |
|
while ((conversation = await allConversations.tryNext())) { |
|
const messages = conversation.messages.map((message) => { |
|
|
|
const updates = message.updates |
|
?.map((update) => convertMessageUpdate(message, update as OldMessageUpdate)) |
|
.filter((update): update is MessageUpdate => Boolean(update)); |
|
|
|
|
|
const webSearchSourcesUpdateIndex = updates?.findIndex(isMessageWebSearchSourcesUpdate); |
|
if ( |
|
message.webSearch && |
|
updates && |
|
webSearchSourcesUpdateIndex && |
|
webSearchSourcesUpdateIndex !== -1 |
|
) { |
|
const webSearchFinishedUpdate: MessageWebSearchFinishedUpdate = { |
|
type: MessageUpdateType.WebSearch, |
|
subtype: MessageWebSearchUpdateType.Finished, |
|
}; |
|
updates.splice(webSearchSourcesUpdateIndex + 1, 0, webSearchFinishedUpdate); |
|
} |
|
return { ...message, updates }; |
|
}); |
|
|
|
|
|
await collections.conversations.updateOne({ _id: conversation._id }, { $set: { messages } }); |
|
} |
|
|
|
return true; |
|
}, |
|
runEveryTime: false, |
|
}; |
|
|
|
export default updateMessageUpdates; |
|
|