File size: 12,907 Bytes
5d65746 dca71c4 5d65746 e071e7b 5d65746 e071e7b 5d65746 e071e7b 5d65746 e071e7b 5d65746 e071e7b 5d65746 e071e7b 5d65746 e071e7b 5d65746 e071e7b 5d65746 e071e7b 5d65746 | 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 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 | package proxy
import (
"crypto/sha256"
"encoding/hex"
"fmt"
"log"
"strings"
"sync"
"time"
)
// Session represents an active multi-turn conversation mapped to a Notion thread.
// A thread is bound to the account that created it — subsequent turns must use the same account.
type Session struct {
ThreadID string // Notion threadId (generated on first turn, reused)
TurnCount int // completed conversation turns (user+assistant pairs)
AccountEmail string // bound account (thread is tied to the creating account)
CreatedAt time.Time
LastUsedAt time.Time
// Reused transcript entry IDs (generated on first turn, reused on subsequent turns)
ConfigID string
ContextID string
// ContextPageID is generated independently from the transcript IDs and reused across turns.
ContextPageID string
// Each completed turn produces one updated-config placeholder ID
UpdatedConfigIDs []string
// First turn's context.currentDatetime (reused on subsequent turns — NOT updated!)
OriginalDatetime string
// Model resolved on first turn (added to config on subsequent turns)
ModelUsed string
// Total non-system messages in the Anthropic request at this turn.
// Used to distinguish chain continuation (count increased) from retry (count unchanged).
RawMessageCount int
}
// SessionManager manages the mapping from Anthropic API conversation fingerprints to Notion threads.
type SessionManager struct {
mu sync.RWMutex
sessions map[string]*Session
ttl time.Duration
}
// globalSessionManager is the package-level session manager instance
var globalSessionManager *SessionManager
func init() {
globalSessionManager = NewSessionManager(30 * time.Minute)
}
// NewSessionManager creates a new SessionManager with the given TTL and starts cleanup.
func NewSessionManager(ttl time.Duration) *SessionManager {
sm := &SessionManager{
sessions: make(map[string]*Session),
ttl: ttl,
}
go sm.cleanupLoop()
return sm
}
// Get retrieves a session by fingerprint, optionally filtering by account email.
// Returns nil if no matching session exists or if the session has expired.
func (sm *SessionManager) Get(fingerprint string) *Session {
sm.mu.RLock()
defer sm.mu.RUnlock()
s, ok := sm.sessions[fingerprint]
if !ok {
return nil
}
if time.Since(s.LastUsedAt) > sm.ttl {
return nil
}
return s
}
// Set stores a session for the given fingerprint.
func (sm *SessionManager) Set(fingerprint string, session *Session) {
sm.mu.Lock()
defer sm.mu.Unlock()
sm.sessions[fingerprint] = session
}
// Delete removes a session by fingerprint.
func (sm *SessionManager) Delete(fingerprint string) {
sm.mu.Lock()
defer sm.mu.Unlock()
delete(sm.sessions, fingerprint)
}
// DeleteByAccount removes all sessions bound to a specific account email.
func (sm *SessionManager) DeleteByAccount(email string) {
sm.mu.Lock()
defer sm.mu.Unlock()
for fp, s := range sm.sessions {
if s.AccountEmail == email {
delete(sm.sessions, fp)
}
}
}
// Count returns the number of active sessions.
func (sm *SessionManager) Count() int {
sm.mu.RLock()
defer sm.mu.RUnlock()
return len(sm.sessions)
}
// cleanupLoop periodically removes expired sessions.
func (sm *SessionManager) cleanupLoop() {
ticker := time.NewTicker(5 * time.Minute)
defer ticker.Stop()
for range ticker.C {
sm.mu.Lock()
now := time.Now()
removed := 0
for fp, s := range sm.sessions {
if now.Sub(s.LastUsedAt) > sm.ttl {
delete(sm.sessions, fp)
removed++
}
}
sm.mu.Unlock()
if removed > 0 {
log.Printf("[session] cleaned up %d expired sessions, %d remaining", removed, sm.Count())
}
}
}
func normalizeSessionSystemContent(content string) string {
if content == "" {
return ""
}
lines := strings.Split(content, "\n")
filtered := make([]string, 0, len(lines))
for _, line := range lines {
trimmed := strings.TrimSpace(line)
if strings.HasPrefix(trimmed, "x-anthropic-billing-header:") {
continue
}
filtered = append(filtered, line)
}
return strings.TrimSpace(strings.Join(filtered, "\n"))
}
func normalizeSessionUserContent(content string) string {
if content == "" {
return ""
}
return strings.TrimSpace(stripSystemReminders(content))
}
func isMeaningfulUserMessage(msg ChatMessage) bool {
return msg.Role == "user" && msg.ToolCallID == "" && normalizeSessionUserContent(msg.Content) != ""
}
func shouldCountNonSystemMessage(msg ChatMessage) bool {
switch msg.Role {
case "system":
return false
case "user":
return isMeaningfulUserMessage(msg)
case "assistant":
return strings.TrimSpace(msg.Content) != "" || len(msg.ToolCalls) > 0
case "tool":
return strings.TrimSpace(msg.Content) != "" || msg.ToolCallID != "" || msg.Name != ""
default:
return strings.TrimSpace(msg.Content) != ""
}
}
// cloneChatMessages returns a deep copy of the message slice so callers can
// mutate the copy (e.g. tool injection rewriting Content in place) without
// affecting the original. Tool call slices are also copied because the
// underlying ToolCall structs are read-only after construction.
func cloneChatMessages(src []ChatMessage) []ChatMessage {
if src == nil {
return nil
}
out := make([]ChatMessage, len(src))
for i, m := range src {
out[i] = m
if len(m.ToolCalls) > 0 {
out[i].ToolCalls = append([]ToolCall(nil), m.ToolCalls...)
}
}
return out
}
// computeSessionFingerprintWithSalt generates a fingerprint from the message history
// to identify the same conversation across Anthropic API requests.
// Strategy: hash(optional stable salt + normalized system prompt prefix + first user message prefix).
func computeSessionFingerprintWithSalt(messages []ChatMessage, stableSalt string) string {
h := sha256.New()
if stableSalt != "" {
h.Write([]byte("salt:"))
h.Write([]byte(stableSalt))
h.Write([]byte{'\n'})
}
// Include system prompt
for _, m := range messages {
if m.Role == "system" {
content := normalizeSessionSystemContent(m.Content)
if len(content) > 200 {
content = content[:200]
}
h.Write([]byte(content))
break
}
}
// Include first user message
for _, m := range messages {
if isMeaningfulUserMessage(m) {
content := normalizeSessionUserContent(m.Content)
if len(content) > 200 {
content = content[:200]
}
h.Write([]byte(content))
break
}
}
return hex.EncodeToString(h.Sum(nil))[:32]
}
func computeSessionFingerprintForRequest(messages []ChatMessage, sessionSalt string, resolvedModel string) string {
sessionSalt = strings.TrimSpace(sessionSalt)
resolvedModel = strings.TrimSpace(resolvedModel)
modelSalt := fmt.Sprintf("model:%d:%s", len(resolvedModel), resolvedModel)
if sessionSalt == "" {
return computeSessionFingerprintWithSalt(messages, modelSalt)
}
stableSalt := fmt.Sprintf("session:%d:%s\n%s", len(sessionSalt), sessionSalt, modelSalt)
return computeSessionFingerprintWithSalt(nil, stableSalt)
}
// computeSessionFingerprint keeps the legacy signature for tests/callers that
// do not have an explicit stable salt available.
func computeSessionFingerprint(messages []ChatMessage) string {
return computeSessionFingerprintWithSalt(messages, "")
}
// countUserMessages counts the number of user-role messages in the list.
func countUserMessages(messages []ChatMessage) int {
count := 0
for _, m := range messages {
if isMeaningfulUserMessage(m) {
count++
}
}
return count
}
// countNonSystemMessages counts all messages except system-role messages.
// Used for session continuation detection: tool chains add assistant+tool messages
// each turn, while user message count stays constant.
func countNonSystemMessages(messages []ChatMessage) int {
count := 0
for _, m := range messages {
if shouldCountNonSystemMessage(m) {
count++
}
}
return count
}
// extractLastUserMessage returns the content of the last user message.
func extractLastUserMessage(messages []ChatMessage) string {
for i := len(messages) - 1; i >= 0; i-- {
if isMeaningfulUserMessage(messages[i]) {
return normalizeSessionUserContent(messages[i].Content)
}
}
return ""
}
// needsFreshThreadRecovery returns true when the incoming message list carries
// prior conversation state that should be collapsed before starting a new
// Notion thread. Replaying assistant history as a fresh transcript is brittle
// and can lead to empty responses from Notion.
func needsFreshThreadRecovery(messages []ChatMessage) bool {
hasMeaningfulUser := false
hasAssistantOrToolHistory := false
for _, message := range messages {
if isMeaningfulUserMessage(message) {
hasMeaningfulUser = true
}
if (message.Role == "assistant" || message.Role == "tool") && shouldCountNonSystemMessage(message) {
hasAssistantOrToolHistory = true
}
}
return hasMeaningfulUser && hasAssistantOrToolHistory
}
// buildFreshThreadRecoveryMessages collapses prior conversation state into a
// single self-contained user prompt for use when we must recover onto a brand
// new Notion thread (for example after session loss or account failover).
func buildRecoveryMessages(messages []ChatMessage, skipEntry func(ChatMessage, string) bool) []ChatMessage {
if !needsFreshThreadRecovery(messages) {
return messages
}
const (
maxHistoryChars = 4000
maxEntryChars = 900
)
lastUserIdx := -1
for i := len(messages) - 1; i >= 0; i-- {
if isMeaningfulUserMessage(messages[i]) {
lastUserIdx = i
break
}
}
if lastUserIdx < 0 {
return messages
}
clip := func(s string, limit int) string {
if limit <= 0 || len(s) <= limit {
return s
}
return s[:limit] + "..."
}
var systemParts []string
for _, m := range messages {
if m.Role == "system" && strings.TrimSpace(m.Content) != "" {
systemParts = append(systemParts, strings.TrimSpace(m.Content))
}
}
type historyEntry struct {
label string
content string
}
var reversed []historyEntry
usedChars := 0
hasPostUserHistory := false
for i := lastUserIdx + 1; i < len(messages); i++ {
if (messages[i].Role == "assistant" || messages[i].Role == "tool") && shouldCountNonSystemMessage(messages[i]) {
hasPostUserHistory = true
break
}
}
for i := len(messages) - 1; i >= 0; i-- {
if i == lastUserIdx && !hasPostUserHistory {
continue
}
m := messages[i]
if m.Role == "system" {
continue
}
content := strings.TrimSpace(m.Content)
if m.Role == "user" {
content = normalizeSessionUserContent(m.Content)
}
if skipEntry != nil && skipEntry(m, content) {
continue
}
label := ""
switch m.Role {
case "user":
label = "User"
case "assistant":
label = "Assistant"
for _, toolCall := range m.ToolCalls {
name := strings.TrimSpace(toolCall.Function.Name)
if name == "" {
name = "tool"
}
toolCallText := "Tool call " + name
if args := strings.TrimSpace(toolCall.Function.Arguments); args != "" {
toolCallText += ": " + args
}
if content != "" {
content += "\n"
}
content += toolCallText
}
case "tool":
name := m.Name
if name == "" {
name = "tool"
}
label = fmt.Sprintf("Tool (%s)", name)
if content == "" && m.ToolCallID != "" {
content = "Tool result for " + m.ToolCallID
}
default:
continue
}
if content == "" {
continue
}
content = clip(content, maxEntryChars)
entryCost := len(label) + len(content) + 4
if usedChars > 0 && usedChars+entryCost > maxHistoryChars {
break
}
usedChars += entryCost
reversed = append(reversed, historyEntry{label: label, content: content})
}
var history strings.Builder
for i := len(reversed) - 1; i >= 0; i-- {
if history.Len() > 0 {
history.WriteString("\n\n")
}
history.WriteString(reversed[i].label)
history.WriteString(": ")
history.WriteString(reversed[i].content)
}
latest := normalizeSessionUserContent(messages[lastUserIdx].Content)
var prompt strings.Builder
prompt.WriteString("Continue this conversation on a fresh thread.\n")
prompt.WriteString("Use the context below and answer the latest user message directly.\n")
prompt.WriteString("Do not mention missing context, prior thread state, or recovery.\n")
if len(systemParts) > 0 {
prompt.WriteString("\n\nSystem instructions:\n")
prompt.WriteString(strings.Join(systemParts, "\n\n"))
}
if history.Len() > 0 {
prompt.WriteString("\n\nConversation context:\n")
prompt.WriteString(history.String())
}
prompt.WriteString("\n\nLatest user message:\n")
prompt.WriteString(latest)
return []ChatMessage{{
Role: "user",
Content: prompt.String(),
}}
}
func buildFreshThreadRecoveryMessages(messages []ChatMessage) []ChatMessage {
return buildRecoveryMessages(messages, nil)
}
func buildToolBridgeRecoveryMessages(messages []ChatMessage) []ChatMessage {
return buildRecoveryMessages(messages, func(msg ChatMessage, content string) bool {
return msg.Role == "assistant" && detectToolBridgeNoToolResponse(content)
})
}
|