mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-09 05:00:30 +08:00
48 lines
1.1 KiB
JavaScript
Executable File
48 lines
1.1 KiB
JavaScript
Executable File
const mongoose = require('mongoose');
|
|
const yapi = require('../yapi.js');
|
|
const autoIncrement = require('mongoose-auto-increment');
|
|
|
|
function model(model, schema) {
|
|
if (schema instanceof mongoose.Schema === false) {
|
|
schema = new mongoose.Schema(schema);
|
|
}
|
|
|
|
schema.set('autoIndex', false);
|
|
|
|
return yapi.connect.model(model, schema, model);
|
|
}
|
|
|
|
function connect(callback) {
|
|
mongoose.Promise = global.Promise;
|
|
|
|
let config = yapi.WEBCONFIG;
|
|
let options = {};
|
|
|
|
if (config.db.user) {
|
|
options.user = config.db.user;
|
|
options.pass = config.db.pass;
|
|
}
|
|
|
|
|
|
let db = mongoose.connect(`mongodb://${config.db.servername}:${config.db.port}/${config.db.DATABASE}`, options);
|
|
|
|
db.then(function () {
|
|
yapi.commons.log('mongodb load success...');
|
|
if(typeof callback === 'function'){
|
|
callback.call(db)
|
|
}
|
|
}, function (err) {
|
|
yapi.commons.log(err, 'Mongo connect error');
|
|
});
|
|
|
|
autoIncrement.initialize(db);
|
|
return db;
|
|
}
|
|
|
|
yapi.db = model;
|
|
|
|
|
|
module.exports = {
|
|
model: model,
|
|
connect: connect
|
|
}; |