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

92 lines
2.9 KiB
TypeScript
Raw Normal View History

2017-12-12 16:53:50 +00:00
import { Sequelize as SequelizeTypescript } from 'sequelize-typescript'
import { isTestInstance } from '../helpers/core-utils'
import { logger } from '../helpers/logger'
2015-06-09 15:41:40 +00:00
2017-12-12 16:53:50 +00:00
import { AccountModel } from '../models/account/account'
import { AccountVideoRateModel } from '../models/account/account-video-rate'
import { UserModel } from '../models/account/user'
2017-12-14 16:38:41 +00:00
import { ActorModel } from '../models/activitypub/actor'
import { ActorFollowModel } from '../models/activitypub/actor-follow'
2017-12-12 16:53:50 +00:00
import { ApplicationModel } from '../models/application/application'
import { AvatarModel } from '../models/avatar/avatar'
import { JobModel } from '../models/job/job'
import { OAuthClientModel } from '../models/oauth/oauth-client'
import { OAuthTokenModel } from '../models/oauth/oauth-token'
import { ServerModel } from '../models/server/server'
import { TagModel } from '../models/video/tag'
import { VideoModel } from '../models/video/video'
import { VideoAbuseModel } from '../models/video/video-abuse'
import { VideoBlacklistModel } from '../models/video/video-blacklist'
import { VideoChannelModel } from '../models/video/video-channel'
import { VideoCommentModel } from '../models/video/video-comment'
2017-12-12 16:53:50 +00:00
import { VideoFileModel } from '../models/video/video-file'
import { VideoShareModel } from '../models/video/video-share'
import { VideoTagModel } from '../models/video/video-tag'
2017-05-15 20:22:03 +00:00
import { CONFIG } from './constants'
2017-09-07 13:27:35 +00:00
2017-12-12 16:53:50 +00:00
require('pg').defaults.parseInt8 = true // Avoid BIGINT to be converted to string
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
2017-12-15 07:21:00 +00:00
const host = CONFIG.DATABASE.HOSTNAME
const port = CONFIG.DATABASE.PORT
2015-06-09 15:41:40 +00:00
2017-12-12 16:53:50 +00:00
const sequelizeTypescript = new SequelizeTypescript({
database: dbname,
2016-12-11 20:50:51 +00:00
dialect: 'postgres',
2017-12-15 07:21:00 +00:00
host,
port,
2017-12-12 16:53:50 +00:00
username,
password,
2017-05-15 20:22:03 +00:00
benchmark: isTestInstance(),
2017-12-12 16:53:50 +00:00
isolationLevel: SequelizeTypescript.Transaction.ISOLATION_LEVELS.SERIALIZABLE,
2017-10-26 14:59:02 +00:00
operatorsAliases: false,
2017-07-11 15:04:57 +00:00
logging: (message: string, benchmark: number) => {
if (process.env.NODE_DB_LOG === 'false') return
2016-12-24 15:59:17 +00:00
let newMessage = message
2017-10-10 07:00:50 +00:00
if (isTestInstance() === true && benchmark !== undefined) {
2016-12-24 15:59:17 +00:00
newMessage += ' | ' + benchmark + 'ms'
}
logger.debug(newMessage)
}
2016-12-11 20:50:51 +00:00
})
2017-12-13 16:46:23 +00:00
async function initDatabaseModels (silent: boolean) {
2017-12-12 16:53:50 +00:00
sequelizeTypescript.addModels([
ApplicationModel,
2017-12-14 16:38:41 +00:00
ActorModel,
ActorFollowModel,
2017-12-12 16:53:50 +00:00
AvatarModel,
AccountModel,
JobModel,
OAuthClientModel,
OAuthTokenModel,
ServerModel,
TagModel,
AccountVideoRateModel,
UserModel,
VideoAbuseModel,
VideoChannelModel,
VideoShareModel,
VideoFileModel,
VideoBlacklistModel,
VideoTagModel,
VideoModel,
VideoCommentModel
2017-12-12 16:53:50 +00:00
])
2016-12-25 08:44:57 +00:00
if (!silent) logger.info('Database %s is ready.', dbname)
2017-10-25 14:52:01 +00:00
return
2016-12-25 08:44:57 +00:00
}
2017-05-15 20:22:03 +00:00
// ---------------------------------------------------------------------------
2017-05-22 18:58:25 +00:00
export {
2017-12-13 16:46:23 +00:00
initDatabaseModels,
2017-12-12 16:53:50 +00:00
sequelizeTypescript
2017-06-16 07:45:46 +00:00
}