1
0
Fork 0
peertube/server/initializers/database.ts

114 lines
2.8 KiB
TypeScript
Raw Normal View History

2017-06-05 19:53:49 +00:00
import * as fs from 'fs'
2017-05-15 20:22:03 +00:00
import { join } from 'path'
2017-06-05 19:53:49 +00:00
import * as Sequelize from 'sequelize'
2015-06-09 15:41:40 +00:00
2017-05-15 20:22:03 +00:00
import { CONFIG } from './constants'
// Do not use barrel, we need to load database first
import { logger } from '../helpers/logger'
2017-06-11 13:19:43 +00:00
import { isTestInstance } from '../helpers/core-utils'
2017-05-22 18:58:25 +00:00
import {
ApplicationModel,
AuthorModel,
JobModel,
OAuthClientModel,
OAuthTokenModel,
PodModel,
RequestModel,
RequestToPodModel,
RequestVideoEventModel,
RequestVideoQaduModel,
TagModel,
UserModel,
UserVideoRateModel,
VideoAbuseModel,
BlacklistedVideoModel,
VideoTagModel,
VideoModel
} from '../models'
2015-06-09 15:41:40 +00:00
2017-05-15 20:22:03 +00:00
const dbname = CONFIG.DATABASE.DBNAME
const username = CONFIG.DATABASE.USERNAME
const password = CONFIG.DATABASE.PASSWORD
2015-06-09 15:41:40 +00:00
2017-05-22 18:58:25 +00: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 08:44:57 +00:00
const sequelize = new Sequelize(dbname, username, password, {
2016-12-11 20:50:51 +00:00
dialect: 'postgres',
2017-05-15 20:22:03 +00:00
host: CONFIG.DATABASE.HOSTNAME,
port: CONFIG.DATABASE.PORT,
benchmark: isTestInstance(),
2016-12-24 15:59:17 +00:00
2017-06-10 20:15:25 +00:00
logging: function (message: string, benchmark: number) {
2016-12-24 15:59:17 +00:00
let newMessage = message
if (benchmark !== undefined) {
newMessage += ' | ' + benchmark + 'ms'
}
logger.debug(newMessage)
}
2016-12-11 20:50:51 +00:00
})
2016-12-25 08:44:57 +00:00
database.sequelize = sequelize
2016-12-11 20:50:51 +00:00
2017-06-10 20:15:25 +00:00
database.init = function (silent: boolean, callback: (err: Error) => void) {
2016-12-11 20:50:51 +00:00
2017-05-15 20:22:03 +00:00
const modelDirectory = join(__dirname, '..', 'models')
2016-12-25 08:44:57 +00:00
fs.readdir(modelDirectory, function (err, files) {
if (err) throw err
2016-01-31 10:23:52 +00:00
2016-12-25 08:44:57 +00:00
files.filter(function (file) {
// For all models but not utils.js
2017-05-22 18:58:25 +00:00
if (
2017-06-11 13:19:43 +00:00
file === 'index.js' || file === 'index.ts' ||
file === 'utils.js' || file === 'utils.ts' ||
file.endsWith('-interface.js') || file.endsWith('-interface.ts') ||
2017-05-22 18:58:25 +00:00
file.endsWith('.js.map')
) return false
2015-06-09 15:41:40 +00:00
2016-12-25 08:44:57 +00:00
return true
})
.forEach(function (file) {
2017-05-15 20:22:03 +00:00
const model = sequelize.import(join(modelDirectory, file))
2016-12-25 08:44:57 +00:00
2017-05-15 20:22:03 +00:00
database[model['name']] = model
2016-12-25 08:44:57 +00: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 08:44:57 +00:00
return callback(null)
})
}
2017-05-15 20:22:03 +00:00
// ---------------------------------------------------------------------------
2017-05-22 18:58:25 +00:00
export {
database
}