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

90 lines
2.8 KiB
TypeScript
Raw Normal View History

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