Spaces:
Build error
Build error
File size: 8,283 Bytes
93c19dc | 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 | import { eq, desc, and } from "drizzle-orm";
import { drizzle } from "drizzle-orm/mysql2";
import {
InsertUser,
users,
conversations,
messages,
images,
feedback,
} from "../drizzle/schema";
import { ENV } from "./_core/env";
let _db: ReturnType<typeof drizzle> | null = null;
/**
* Lazily create the drizzle instance so local tooling can run without a DB.
*/
export async function getDb() {
if (!_db && process.env.DATABASE_URL) {
try {
_db = drizzle(process.env.DATABASE_URL);
} catch (error) {
console.warn("[Database] Failed to connect:", error);
_db = null;
}
}
return _db;
}
/**
* Section 2: User Management
*/
export async function upsertUser(user: InsertUser): Promise<void> {
if (!user.openId) {
throw new Error("User openId is required for upsert");
}
const db = await getDb();
if (!db) {
console.warn("[Database] Cannot upsert user: database not available");
return;
}
try {
const values: InsertUser = {
openId: user.openId,
};
const updateSet: Record<string, unknown> = {};
const textFields = ["name", "email", "loginMethod"] as const;
type TextField = (typeof textFields)[number];
const assignNullable = (field: TextField) => {
const value = user[field];
if (value === undefined) return;
const normalized = value ?? null;
values[field] = normalized;
updateSet[field] = normalized;
};
textFields.forEach(assignNullable);
if (user.lastSignedIn !== undefined) {
values.lastSignedIn = user.lastSignedIn;
updateSet.lastSignedIn = user.lastSignedIn;
}
if (user.role !== undefined) {
values.role = user.role;
updateSet.role = user.role;
} else if (user.openId === ENV.ownerOpenId) {
values.role = "admin";
updateSet.role = "admin";
}
// Set user tier
if (user.tier !== undefined) {
values.tier = user.tier;
updateSet.tier = user.tier;
}
if (!values.lastSignedIn) {
values.lastSignedIn = new Date();
}
if (Object.keys(updateSet).length === 0) {
updateSet.lastSignedIn = new Date();
}
await db.insert(users).values(values).onDuplicateKeyUpdate({
set: updateSet,
});
} catch (error) {
console.error("[Database] Failed to upsert user:", error);
throw error;
}
}
export async function getUserByOpenId(openId: string) {
const db = await getDb();
if (!db) {
console.warn("[Database] Cannot get user: database not available");
return undefined;
}
const result = await db
.select()
.from(users)
.where(eq(users.openId, openId))
.limit(1);
return result.length > 0 ? result[0] : undefined;
}
/**
* Section 2: Conversation Management
*/
export async function createConversation(
userId: number,
title?: string,
mode: "ask" | "imagine" = "ask"
) {
const db = await getDb();
if (!db) throw new Error("Database not available");
const result = await db.insert(conversations).values({
userId,
title: title || `Conversation ${new Date().toLocaleDateString()}`,
mode,
});
return result;
}
export async function getUserConversations(userId: number) {
const db = await getDb();
if (!db) return [];
return await db
.select()
.from(conversations)
.where(eq(conversations.userId, userId))
.orderBy(desc(conversations.updatedAt));
}
export async function getConversationById(conversationId: number) {
const db = await getDb();
if (!db) return null;
const result = await db
.select()
.from(conversations)
.where(eq(conversations.id, conversationId))
.limit(1);
return result.length > 0 ? result[0] : null;
}
/**
* Section 2: Message Management
*/
export async function saveMessage(
conversationId: number,
role: "user" | "assistant",
content: string,
reasoning?: string,
metadata?: Record<string, unknown>
) {
const db = await getDb();
if (!db) throw new Error("Database not available");
return await db.insert(messages).values({
conversationId,
role,
content,
reasoning,
metadata: metadata ? JSON.stringify(metadata) : null,
});
}
export async function getConversationMessages(conversationId: number) {
const db = await getDb();
if (!db) return [];
return await db
.select()
.from(messages)
.where(eq(messages.conversationId, conversationId))
.orderBy(messages.createdAt);
}
export async function getLastMessage(conversationId: number) {
const db = await getDb();
if (!db) return null;
const result = await db
.select()
.from(messages)
.where(eq(messages.conversationId, conversationId))
.orderBy(desc(messages.createdAt))
.limit(1);
return result.length > 0 ? result[0] : null;
}
/**
* Section 8: Image Management
*/
export async function saveImage(
userId: number,
prompt: string,
url: string,
conversationId?: number,
metadata?: Record<string, unknown>
) {
const db = await getDb();
if (!db) throw new Error("Database not available");
return await db.insert(images).values({
userId,
conversationId,
prompt,
url,
metadata: metadata ? JSON.stringify(metadata) : null,
});
}
export async function getUserImages(userId: number, limit = 20) {
const db = await getDb();
if (!db) return [];
return await db
.select()
.from(images)
.where(eq(images.userId, userId))
.orderBy(desc(images.createdAt))
.limit(limit);
}
export async function getConversationImages(conversationId: number) {
const db = await getDb();
if (!db) return [];
return await db
.select()
.from(images)
.where(eq(images.conversationId, conversationId))
.orderBy(desc(images.createdAt));
}
/**
* Section 2: Feedback Management (for Google Sheets logging)
*/
export async function saveFeedback(
userId: number,
rating: "like" | "dislike",
messageId?: number,
imageId?: number,
comment?: string
) {
const db = await getDb();
if (!db) throw new Error("Database not available");
return await db.insert(feedback).values({
userId,
messageId,
imageId,
rating,
comment,
});
}
export async function getUserFeedback(userId: number, limit = 100) {
const db = await getDb();
if (!db) return [];
return await db
.select()
.from(feedback)
.where(eq(feedback.userId, userId))
.orderBy(desc(feedback.createdAt))
.limit(limit);
}
export async function getRecentFeedback(limit = 50) {
const db = await getDb();
if (!db) return [];
return await db
.select()
.from(feedback)
.orderBy(desc(feedback.createdAt))
.limit(limit);
}
/**
* Industrial Standard: Analytics and Monitoring
*/
export async function getUserStats(userId: number) {
const db = await getDb();
if (!db) return null;
const userConversations = await db
.select()
.from(conversations)
.where(eq(conversations.userId, userId));
const userMessages = await db
.select()
.from(messages)
.where(
eq(
messages.conversationId,
userConversations.length > 0 ? userConversations[0].id : -1
)
);
const userImages = await db
.select()
.from(images)
.where(eq(images.userId, userId));
const userFeedback = await db
.select()
.from(feedback)
.where(eq(feedback.userId, userId));
return {
totalConversations: userConversations.length,
totalMessages: userMessages.length,
totalImages: userImages.length,
totalFeedback: userFeedback.length,
likes: userFeedback.filter((f) => f.rating === "like").length,
dislikes: userFeedback.filter((f) => f.rating === "dislike").length,
};
}
export async function getSystemStats() {
const db = await getDb();
if (!db) return null;
const totalUsers = await db.select().from(users);
const totalConversations = await db.select().from(conversations);
const totalMessages = await db.select().from(messages);
const totalImages = await db.select().from(images);
const totalFeedback = await db.select().from(feedback);
return {
totalUsers: totalUsers.length,
totalConversations: totalConversations.length,
totalMessages: totalMessages.length,
totalImages: totalImages.length,
totalFeedback: totalFeedback.length,
};
}
|