Spaces:
Sleeping
Sleeping
File size: 4,876 Bytes
d530f14 | 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 | import { NextRequest, NextResponse } from 'next/server';
import type { ConversationState } from '@/types/conversation';
declare global {
var conversationState: ConversationState | null;
}
// GET: Retrieve current conversation state
export async function GET() {
try {
if (!global.conversationState) {
return NextResponse.json({
success: true,
state: null,
message: 'No active conversation'
});
}
return NextResponse.json({
success: true,
state: global.conversationState
});
} catch (error) {
console.error('[conversation-state] Error getting state:', error);
return NextResponse.json({
success: false,
error: (error as Error).message
}, { status: 500 });
}
}
// POST: Reset or update conversation state
export async function POST(request: NextRequest) {
try {
const { action, data } = await request.json();
switch (action) {
case 'reset':
global.conversationState = {
conversationId: `conv-${Date.now()}`,
startedAt: Date.now(),
lastUpdated: Date.now(),
context: {
messages: [],
edits: [],
projectEvolution: { majorChanges: [] },
userPreferences: {}
}
};
console.log('[conversation-state] Reset conversation state');
return NextResponse.json({
success: true,
message: 'Conversation state reset',
state: global.conversationState
});
case 'clear-old':
// Clear old conversation data but keep recent context
if (!global.conversationState) {
// Initialize conversation state if it doesn't exist
global.conversationState = {
conversationId: `conv-${Date.now()}`,
startedAt: Date.now(),
lastUpdated: Date.now(),
context: {
messages: [],
edits: [],
projectEvolution: { majorChanges: [] },
userPreferences: {}
}
};
console.log('[conversation-state] Initialized new conversation state for clear-old');
return NextResponse.json({
success: true,
message: 'New conversation state initialized',
state: global.conversationState
});
}
// Keep only recent data
global.conversationState.context.messages = global.conversationState.context.messages.slice(-5);
global.conversationState.context.edits = global.conversationState.context.edits.slice(-3);
global.conversationState.context.projectEvolution.majorChanges =
global.conversationState.context.projectEvolution.majorChanges.slice(-2);
console.log('[conversation-state] Cleared old conversation data');
return NextResponse.json({
success: true,
message: 'Old conversation data cleared',
state: global.conversationState
});
case 'update':
if (!global.conversationState) {
return NextResponse.json({
success: false,
error: 'No active conversation to update'
}, { status: 400 });
}
// Update specific fields if provided
if (data) {
if (data.currentTopic) {
global.conversationState.context.currentTopic = data.currentTopic;
}
if (data.userPreferences) {
global.conversationState.context.userPreferences = {
...global.conversationState.context.userPreferences,
...data.userPreferences
};
}
global.conversationState.lastUpdated = Date.now();
}
return NextResponse.json({
success: true,
message: 'Conversation state updated',
state: global.conversationState
});
default:
return NextResponse.json({
success: false,
error: 'Invalid action. Use "reset" or "update"'
}, { status: 400 });
}
} catch (error) {
console.error('[conversation-state] Error:', error);
return NextResponse.json({
success: false,
error: (error as Error).message
}, { status: 500 });
}
}
// DELETE: Clear conversation state
export async function DELETE() {
try {
global.conversationState = null;
console.log('[conversation-state] Cleared conversation state');
return NextResponse.json({
success: true,
message: 'Conversation state cleared'
});
} catch (error) {
console.error('[conversation-state] Error clearing state:', error);
return NextResponse.json({
success: false,
error: (error as Error).message
}, { status: 500 });
}
} |