Spaces:
Running
Running
File size: 6,765 Bytes
98c9143 780d695 98c9143 780d695 98c9143 780d695 98c9143 780d695 98c9143 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 | import type { Context } from "hono"
import consola from "consola"
import { createHash, randomUUID } from "node:crypto"
import { networkInterfaces } from "node:os"
import type { AnthropicMessagesPayload } from "~/routes/messages/anthropic-types"
import { getModels } from "~/services/copilot/get-models"
import { getVSCodeVersion } from "~/services/get-vscode-version"
import { getVSCodeDeviceId } from "./deviceid"
import { state } from "./state"
export const sleep = (ms: number) =>
new Promise((resolve) => {
setTimeout(resolve, ms)
})
export const isNullish = (value: unknown): value is null | undefined =>
value === null || value === undefined
export async function cacheModels(): Promise<void> {
const models = await getModels()
state.models = {
...models,
data: models.data.filter(
(model) =>
model.model_picker_enabled || model.capabilities.type === "embeddings",
),
}
}
export const cacheVSCodeVersion = async () => {
const response = await getVSCodeVersion()
state.vsCodeVersion = response
consola.info(`Using VSCode version: ${response}`)
}
const invalidMacAddresses = new Set([
"00:00:00:00:00:00",
"ff:ff:ff:ff:ff:ff",
"ac:de:48:00:11:22",
])
function validateMacAddress(candidate: string): boolean {
const tempCandidate = candidate.replaceAll("-", ":").toLowerCase()
return !invalidMacAddresses.has(tempCandidate)
}
export function getMac(): string | null {
const ifaces = networkInterfaces()
// eslint-disable-next-line guard-for-in
for (const name in ifaces) {
const networkInterface = ifaces[name]
if (networkInterface) {
for (const { mac } of networkInterface) {
if (validateMacAddress(mac)) {
return mac
}
}
}
}
return null
}
export const cacheMacMachineId = () => {
const macAddress = getMac() ?? randomUUID()
state.macMachineId = createHash("sha256")
.update(macAddress, "utf8")
.digest("hex")
consola.debug(`Using machine ID: ${state.macMachineId}`)
}
export const cacheVsCodeDeviceId = async () => {
state.vsCodeDeviceId = await getVSCodeDeviceId()
consola.debug(`Using VSCode device ID: ${state.vsCodeDeviceId}`)
}
const SESSION_REFRESH_BASE_MS = 60 * 60 * 1000
const SESSION_REFRESH_JITTER_MS = 20 * 60 * 1000
let vsCodeSessionRefreshTimer: ReturnType<typeof setTimeout> | null = null
const generateSessionId = () => {
state.vsCodeSessionId = randomUUID() + Date.now().toString()
consola.debug(`Generated VSCode session ID: ${state.vsCodeSessionId}`)
}
export const stopVsCodeSessionRefreshLoop = () => {
if (vsCodeSessionRefreshTimer) {
clearTimeout(vsCodeSessionRefreshTimer)
vsCodeSessionRefreshTimer = null
}
}
const scheduleSessionIdRefresh = () => {
const randomDelay = Math.floor(Math.random() * SESSION_REFRESH_JITTER_MS)
const delay = SESSION_REFRESH_BASE_MS + randomDelay
consola.debug(
`Scheduling next VSCode session ID refresh in ${Math.round(
delay / 1000,
)} seconds`,
)
stopVsCodeSessionRefreshLoop()
vsCodeSessionRefreshTimer = setTimeout(() => {
try {
generateSessionId()
} catch (error) {
consola.error("Failed to refresh session ID, rescheduling...", error)
} finally {
scheduleSessionIdRefresh()
}
}, delay)
}
export const cacheVsCodeSessionId = () => {
stopVsCodeSessionRefreshLoop()
generateSessionId()
scheduleSessionIdRefresh()
}
interface PayloadMessage {
role?: string
content?: string | Array<{ type?: string; text?: string }> | null
type?: string
}
const isRecord = (value: unknown): value is Record<string, unknown> =>
typeof value === "object" && value !== null
const getUserIdJsonField = (
userIdPayload: Record<string, unknown> | null,
field: string,
): string | null => {
const value = userIdPayload?.[field]
return typeof value === "string" && value.length > 0 ? value : null
}
const parseJsonUserId = (userId: string): Record<string, unknown> | null => {
try {
const parsed: unknown = JSON.parse(userId)
return isRecord(parsed) ? parsed : null
} catch {
return null
}
}
export const parseUserIdMetadata = (
userId: string | undefined,
): { safetyIdentifier: string | null; sessionId: string | null } => {
if (!userId || typeof userId !== "string") {
return { safetyIdentifier: null, sessionId: null }
}
const legacySafetyIdentifier =
userId.match(/user_([^_]+)_account/)?.[1] ?? null
const legacySessionId = userId.match(/_session_(.+)$/)?.[1] ?? null
const parsedUserId =
legacySafetyIdentifier && legacySessionId ? null : parseJsonUserId(userId)
const safetyIdentifier =
legacySafetyIdentifier
?? getUserIdJsonField(parsedUserId, "device_id")
?? getUserIdJsonField(parsedUserId, "account_uuid")
const sessionId =
legacySessionId ?? getUserIdJsonField(parsedUserId, "session_id")
return { safetyIdentifier, sessionId }
}
const findLastUserContent = (
messages: Array<PayloadMessage>,
): string | null => {
for (let i = messages.length - 1; i >= 0; i--) {
const msg = messages[i]
if (msg.role === "user" && msg.content) {
if (typeof msg.content === "string") {
return msg.content
} else if (Array.isArray(msg.content)) {
const array = msg.content
.filter((n) => n.type !== "tool_result")
.map((n) => ({ ...n, cache_control: undefined }))
if (array.length > 0) {
return JSON.stringify(array)
}
}
}
}
return null
}
export const generateRequestIdFromPayload = (
payload: {
messages: string | Array<PayloadMessage> | undefined
},
sessionId?: string,
): string => {
const messages = payload.messages
if (messages) {
const lastUserContent =
typeof messages === "string" ? messages : findLastUserContent(messages)
if (lastUserContent) {
return getUUID(
(sessionId ?? "") + (state.macMachineId ?? "") + lastUserContent,
)
}
}
return randomUUID()
}
export const getRootSessionId = (
anthropicPayload: AnthropicMessagesPayload,
c: Context,
): string | undefined => {
const userId = anthropicPayload.metadata?.user_id
const sessionId =
userId ?
parseUserIdMetadata(userId).sessionId || undefined
: c.req.header("x-session-id")
return sessionId ? getUUID(sessionId) : sessionId
}
export const getUUID = (content: string): string => {
const uuidBytes = createHash("sha256")
.update(content)
.digest()
.subarray(0, 16)
uuidBytes[6] = (uuidBytes[6] & 0x0f) | 0x40
uuidBytes[8] = (uuidBytes[8] & 0x3f) | 0x80
const uuidHex = uuidBytes.toString("hex")
return `${uuidHex.slice(0, 8)}-${uuidHex.slice(8, 12)}-${uuidHex.slice(12, 16)}-${uuidHex.slice(16, 20)}-${uuidHex.slice(20)}`
}
|