alexcdev1 il y a 6 mois
Parent
commit
a279ac3124
1 fichiers modifiés avec 67 ajouts et 17 suppressions
  1. 67 17
      src/app/lib/dbConnect.js

+ 67 - 17
src/app/lib/dbConnect.js

@@ -1,8 +1,7 @@
-// dbConnect.js
 import mongoose from "mongoose";
 
 const MONGODB_URI = process.env.MONGODB_URI;
-const DB_NAME = process.env.MONGODB_DB_NAME || "mydatabase"; // 添加数据库名称
+const DB_NAME = process.env.MONGODB_DB_NAME || "mydatabase";
 
 if (!MONGODB_URI) {
   throw new Error(
@@ -10,46 +9,97 @@ if (!MONGODB_URI) {
   );
 }
 
-console.log("Database connected, starting query 111");
-
 let cached = global.mongoose;
 
 if (!cached) {
   cached = global.mongoose = { conn: null, promise: null };
 }
 
-console.log("Database connected, starting query 222");
-
 async function dbConnect() {
-  console.log("Database connected, starting query 333");
-
   if (cached.conn) {
+    console.log("Using existing database connection");
     return cached.conn;
   }
 
   if (!cached.promise) {
     const opts = {
       bufferCommands: false,
-      dbName: DB_NAME, // 明确指定数据库名称
-      useNewUrlParser: true,
-      useUnifiedTopology: true,
+      dbName: DB_NAME,
+      // 移除了废弃的选项
     };
 
-    cached.promise = mongoose.connect(MONGODB_URI, opts).then((mongoose) => {
-      console.log(`Connected to MongoDB database: ${DB_NAME}`);
-      return mongoose;
-    });
+    console.log("Creating new database connection");
+    console.log(`Connecting to database: ${DB_NAME}`);
+    console.log(`MongoDB URI: ${MONGODB_URI.replace(/:[^:]*@/, ":****@")}`);
+
+    cached.promise = mongoose
+      .connect(MONGODB_URI, opts)
+      .then((mongoose) => {
+        console.log(`Successfully connected to MongoDB: ${DB_NAME}`);
+        return mongoose;
+      })
+      .catch((error) => {
+        console.error("Error connecting to MongoDB:", error);
+        cached.promise = null;
+        throw error;
+      });
+  } else {
+    console.log("Using existing connection promise");
   }
 
   try {
     cached.conn = await cached.promise;
   } catch (e) {
     cached.promise = null;
-    console.error("Failed to connect to MongoDB:", e);
+    console.error("Error while awaiting connection:", e);
     throw e;
   }
 
   return cached.conn;
 }
 
-export default dbConnect;
+// 添加一个关闭连接的函数,用于测试或需要手动关闭连接的场景
+async function dbDisconnect() {
+  if (cached.conn) {
+    await mongoose.disconnect();
+    cached.conn = null;
+    cached.promise = null;
+    console.log("Disconnected from MongoDB");
+  }
+}
+
+// 添加一个用于调试的函数
+function getConnectionStatus() {
+  return {
+    readyState: mongoose.connection.readyState,
+    dbName: mongoose.connection.name,
+    host: mongoose.connection.host,
+    port: mongoose.connection.port,
+  };
+}
+
+// 设置 Mongoose 调试模式(在生产环境中应该禁用)
+if (process.env.NODE_ENV !== "production") {
+  mongoose.set("debug", true);
+}
+
+// 监听连接事件
+mongoose.connection.on("connected", () => {
+  console.log("Mongoose connected to db");
+});
+
+mongoose.connection.on("error", (err) => {
+  console.error("Mongoose connection error:", err);
+});
+
+mongoose.connection.on("disconnected", () => {
+  console.log("Mongoose disconnected");
+});
+
+// 处理应用程序终止,关闭数据库连接
+process.on("SIGINT", async () => {
+  await dbDisconnect();
+  process.exit(0);
+});
+
+export { dbConnect, dbDisconnect, getConnectionStatus };