forked from misskey-dev/misskey
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import { nativeDbConn } from '../db/mongodb'; | ||
import { Config } from '../config/types'; | ||
import Logger from '../services/logger'; | ||
import { lessThan } from '../prelude/array'; | ||
|
||
const requiredMongoDBVersion = [3, 6]; | ||
|
||
export function checkMongoDB(config: Config, logger: Logger) { | ||
return new Promise((res, rej) => { | ||
const mongoDBLogger = logger.createSubLogger('db'); | ||
const u = config.mongodb.user ? encodeURIComponent(config.mongodb.user) : null; | ||
const p = config.mongodb.pass ? encodeURIComponent(config.mongodb.pass) : null; | ||
const path = config.mongodb.path ? encodeURIComponent(config.mongodb.path) : null; | ||
const peer = path || `${config.mongodb.host}:${config.mongodb.port}`; | ||
|
||
const uri = `mongodb://${u && p ? `${u}:${p}@` : ''}${peer}/${config.mongodb.db}`; | ||
|
||
mongoDBLogger.info(`Connecting to ${uri} ...`); | ||
|
||
nativeDbConn().then(db => { | ||
mongoDBLogger.succ('Connectivity confirmed'); | ||
|
||
db.admin().serverInfo().then(x => { | ||
const version = x.version as string; | ||
mongoDBLogger.info(`Version: ${version}`); | ||
if (lessThan(version.split('.').map(x => parseInt(x, 10)), requiredMongoDBVersion)) { | ||
mongoDBLogger.error(`MongoDB version is less than ${requiredMongoDBVersion.join('.')}. Please upgrade it.`); | ||
rej('outdated version'); | ||
} else { | ||
res(); | ||
} | ||
}).catch(err => { | ||
mongoDBLogger.error(`Failed to fetch server info: ${err.message}`); | ||
rej(err); | ||
}); | ||
}).catch(err => { | ||
mongoDBLogger.error(err.message); | ||
rej(err); | ||
}); | ||
}); | ||
} |