aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/database.js
blob: cc6f59b63b8c1843e5a6ecc2cc4be06c83d025f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
'use strict'

const fs = require('fs')
const path = require('path')
const Sequelize = require('sequelize')

const constants = require('../initializers/constants')
const logger = require('../helpers/logger')

const database = {}

const sequelize = new Sequelize(constants.CONFIG.DATABASE.DBNAME, 'peertube', 'peertube', {
  dialect: 'postgres',
  host: constants.CONFIG.DATABASE.HOSTNAME,
  port: constants.CONFIG.DATABASE.PORT
})

const modelDirectory = path.join(__dirname, '..', 'models')
fs.readdir(modelDirectory, function (err, files) {
  if (err) throw err

  files.filter(function (file) {
    if (file === 'utils.js') return false

    return true
  })
  .forEach(function (file) {
    const model = sequelize.import(path.join(modelDirectory, file))

    database[model.name] = model
  })

  Object.keys(database).forEach(function (modelName) {
    if ('associate' in database[modelName]) {
      database[modelName].associate(database)
    }
  })

  logger.info('Database is ready.')
})

database.sequelize = sequelize
database.Sequelize = Sequelize

// ---------------------------------------------------------------------------

module.exports = database