@@ -14,7 +14,7 @@ import type { MigrationResult } from "$lib/types/MigrationResult";
14
14
import type { Semaphore } from "$lib/types/Semaphore" ;
15
15
import type { AssistantStats } from "$lib/types/AssistantStats" ;
16
16
import type { CommunityToolDB } from "$lib/types/Tool" ;
17
-
17
+ import { MongoMemoryServer } from "mongodb-memory-server" ;
18
18
import { logger } from "$lib/server/logger" ;
19
19
import { building } from "$app/environment" ;
20
20
import type { TokenCache } from "$lib/types/TokenCache" ;
@@ -23,21 +23,24 @@ import { onExit } from "./exitHandler";
23
23
export const CONVERSATION_STATS_COLLECTION = "conversations.stats" ;
24
24
25
25
export class Database {
26
- private client : MongoClient ;
26
+ private client ?: MongoClient ;
27
+ private mongoServer ?: MongoMemoryServer ;
27
28
28
29
private static instance : Database ;
29
30
30
- private constructor ( ) {
31
+ private async init ( ) {
31
32
if ( ! env . MONGODB_URL ) {
32
- throw new Error (
33
- "Please specify the MONGODB_URL environment variable inside .env.local. Set it to mongodb://localhost:27017 if you are running MongoDB locally, or to a MongoDB Atlas free instance for example."
34
- ) ;
33
+ logger . warn ( "No MongoDB URL found, using in-memory server" ) ;
34
+ this . mongoServer = await MongoMemoryServer . create ( ) ;
35
+ this . client = new MongoClient ( this . mongoServer . getUri ( ) , {
36
+ directConnection : env . MONGODB_DIRECT_CONNECTION === "true" ,
37
+ } ) ;
38
+ } else {
39
+ this . client = new MongoClient ( env . MONGODB_URL , {
40
+ directConnection : env . MONGODB_DIRECT_CONNECTION === "true" ,
41
+ } ) ;
35
42
}
36
43
37
- this . client = new MongoClient ( env . MONGODB_URL , {
38
- directConnection : env . MONGODB_DIRECT_CONNECTION === "true" ,
39
- } ) ;
40
-
41
44
this . client . connect ( ) . catch ( ( err ) => {
42
45
logger . error ( err , "Connection error" ) ;
43
46
process . exit ( 1 ) ;
@@ -46,12 +49,13 @@ export class Database {
46
49
this . client . on ( "open" , ( ) => this . initDatabase ( ) ) ;
47
50
48
51
// Disconnect DB on exit
49
- onExit ( ( ) => this . client . close ( true ) ) ;
52
+ onExit ( ( ) => this . client ? .close ( true ) ) ;
50
53
}
51
54
52
- public static getInstance ( ) : Database {
55
+ public static async getInstance ( ) : Promise < Database > {
53
56
if ( ! Database . instance ) {
54
57
Database . instance = new Database ( ) ;
58
+ await Database . instance . init ( ) ;
55
59
}
56
60
57
61
return Database . instance ;
@@ -61,13 +65,21 @@ export class Database {
61
65
* Return mongoClient
62
66
*/
63
67
public getClient ( ) : MongoClient {
68
+ if ( ! this . client ) {
69
+ throw new Error ( "Database not initialized" ) ;
70
+ }
71
+
64
72
return this . client ;
65
73
}
66
74
67
75
/**
68
76
* Return map of database's collections
69
77
*/
70
78
public getCollections ( ) {
79
+ if ( ! this . client ) {
80
+ throw new Error ( "Database not initialized" ) ;
81
+ }
82
+
71
83
const db = this . client . db (
72
84
env . MONGODB_DB_NAME + ( import . meta. env . MODE === "test" ? "-test" : "" )
73
85
) ;
@@ -247,4 +259,4 @@ export class Database {
247
259
248
260
export const collections = building
249
261
? ( { } as unknown as ReturnType < typeof Database . prototype . getCollections > )
250
- : Database . getInstance ( ) . getCollections ( ) ;
262
+ : await Database . getInstance ( ) . then ( ( db ) => db . getCollections ( ) ) ;
0 commit comments