2016-02-07 11:23:23 +01:00
|
|
|
'use strict'
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const config = require('config')
|
|
|
|
const mongoose = require('mongoose')
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const logger = require('../helpers/logger')
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-06-24 17:42:51 +02:00
|
|
|
// Bootstrap models
|
2016-07-01 16:03:53 +02:00
|
|
|
require('../models/user')
|
|
|
|
require('../models/oauth-client')
|
|
|
|
require('../models/oauth-token')
|
2016-06-30 22:39:08 +02:00
|
|
|
require('../models/pods')
|
2016-06-24 17:42:51 +02:00
|
|
|
require('../models/video')
|
2016-06-28 20:10:32 +02:00
|
|
|
// Request model needs Video model
|
|
|
|
require('../models/request')
|
2016-06-24 17:42:51 +02:00
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const dbname = 'peertube' + config.get('database.suffix')
|
|
|
|
const host = config.get('database.host')
|
|
|
|
const port = config.get('database.port')
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const database = {
|
2016-02-07 11:23:23 +01:00
|
|
|
connect: connect
|
|
|
|
}
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
function connect () {
|
|
|
|
mongoose.connect('mongodb://' + host + ':' + port + '/' + dbname)
|
|
|
|
mongoose.connection.on('error', function () {
|
2016-02-07 12:01:40 +01:00
|
|
|
throw new Error('Mongodb connection error.')
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
mongoose.connection.on('open', function () {
|
|
|
|
logger.info('Connected to mongodb.')
|
|
|
|
})
|
|
|
|
}
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
module.exports = database
|