PeerTube/server/initializers/database.ts

114 lines
2.7 KiB
TypeScript
Raw Normal View History

2017-06-05 21:53:49 +02:00
import * as fs from 'fs'
2017-05-15 22:22:03 +02:00
import { join } from 'path'
2017-06-05 21:53:49 +02:00
import * as Sequelize from 'sequelize'
2015-06-09 17:41:40 +02:00
2017-05-15 22:22:03 +02:00
import { CONFIG } from './constants'
// Do not use barrel, we need to load database first
import { logger } from '../helpers/logger'
import { isTestInstance } from '../helpers/utils'
2017-05-22 20:58:25 +02:00
import {
ApplicationModel,
AuthorModel,
JobModel,
OAuthClientModel,
OAuthTokenModel,
PodModel,
RequestModel,
RequestToPodModel,
RequestVideoEventModel,
RequestVideoQaduModel,
TagModel,
UserModel,
UserVideoRateModel,
VideoAbuseModel,
BlacklistedVideoModel,
VideoTagModel,
VideoModel
} from '../models'
2015-06-09 17:41:40 +02:00
2017-05-15 22:22:03 +02:00
const dbname = CONFIG.DATABASE.DBNAME
const username = CONFIG.DATABASE.USERNAME
const password = CONFIG.DATABASE.PASSWORD
2015-06-09 17:41:40 +02:00
2017-05-22 20:58:25 +02:00
const database: {
sequelize?: Sequelize.Sequelize,
init?: (silent: any, callback: any) => void,
Application?: ApplicationModel,
Author?: AuthorModel,
Job?: JobModel,
OAuthClient?: OAuthClientModel,
OAuthToken?: OAuthTokenModel,
Pod?: PodModel,
RequestToPod?: RequestToPodModel,
RequestVideoEvent?: RequestVideoEventModel,
RequestVideoQadu?: RequestVideoQaduModel,
Request?: RequestModel,
Tag?: TagModel,
UserVideoRate?: UserVideoRateModel,
User?: UserModel,
VideoAbuse?: VideoAbuseModel,
BlacklistedVideo?: BlacklistedVideoModel,
VideoTag?: VideoTagModel,
Video?: VideoModel
} = {}
2016-12-25 09:44:57 +01:00
const sequelize = new Sequelize(dbname, username, password, {
2016-12-11 21:50:51 +01:00
dialect: 'postgres',
2017-05-15 22:22:03 +02:00
host: CONFIG.DATABASE.HOSTNAME,
port: CONFIG.DATABASE.PORT,
benchmark: isTestInstance(),
2016-12-24 16:59:17 +01:00
logging: function (message, benchmark) {
let newMessage = message
if (benchmark !== undefined) {
newMessage += ' | ' + benchmark + 'ms'
}
logger.debug(newMessage)
}
2016-12-11 21:50:51 +01:00
})
2016-12-25 09:44:57 +01:00
database.sequelize = sequelize
2016-12-11 21:50:51 +01:00
2017-05-15 22:22:03 +02:00
database.init = function (silent, callback) {
2016-12-11 21:50:51 +01:00
2017-05-15 22:22:03 +02:00
const modelDirectory = join(__dirname, '..', 'models')
2016-12-25 09:44:57 +01:00
fs.readdir(modelDirectory, function (err, files) {
if (err) throw err
2016-01-31 11:23:52 +01:00
2016-12-25 09:44:57 +01:00
files.filter(function (file) {
// For all models but not utils.js
2017-05-22 20:58:25 +02:00
if (
file === 'index.js' ||
file === 'utils.js' ||
file.endsWith('-interface.js') ||
file.endsWith('.js.map')
) return false
2015-06-09 17:41:40 +02:00
2016-12-25 09:44:57 +01:00
return true
})
.forEach(function (file) {
2017-05-15 22:22:03 +02:00
const model = sequelize.import(join(modelDirectory, file))
2016-12-25 09:44:57 +01:00
2017-05-15 22:22:03 +02:00
database[model['name']] = model
2016-12-25 09:44:57 +01:00
})
Object.keys(database).forEach(function (modelName) {
if ('associate' in database[modelName]) {
database[modelName].associate(database)
}
})
if (!silent) logger.info('Database %s is ready.', dbname)
2016-12-25 09:44:57 +01:00
return callback(null)
})
}
2017-05-15 22:22:03 +02:00
// ---------------------------------------------------------------------------
2017-05-22 20:58:25 +02:00
export {
database
}