PeerTube/server/initializers/database.ts

135 lines
4.3 KiB
TypeScript
Raw Normal View History

2017-12-12 17:53:50 +01:00
import { Sequelize as SequelizeTypescript } from 'sequelize-typescript'
import { isTestInstance } from '../helpers/core-utils'
import { logger } from '../helpers/logger'
2015-06-09 17:41:40 +02:00
2017-12-12 17:53:50 +01:00
import { AccountModel } from '../models/account/account'
import { AccountVideoRateModel } from '../models/account/account-video-rate'
import { UserModel } from '../models/account/user'
2017-12-14 17:38:41 +01:00
import { ActorModel } from '../models/activitypub/actor'
import { ActorFollowModel } from '../models/activitypub/actor-follow'
2017-12-12 17:53:50 +01: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 17:53:50 +01: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 22:22:03 +02:00
import { CONFIG } from './constants'
import { ScheduleVideoUpdateModel } from '../models/video/schedule-video-update'
2018-07-12 19:02:00 +02:00
import { VideoCaptionModel } from '../models/video/video-caption'
2017-09-07 15:27:35 +02:00
2017-12-12 17:53:50 +01:00
require('pg').defaults.parseInt8 = true // Avoid BIGINT to be converted to string
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
2017-12-15 08:21:00 +01:00
const host = CONFIG.DATABASE.HOSTNAME
const port = CONFIG.DATABASE.PORT
2015-06-09 17:41:40 +02:00
2017-12-12 17:53:50 +01:00
const sequelizeTypescript = new SequelizeTypescript({
database: dbname,
2016-12-11 21:50:51 +01:00
dialect: 'postgres',
2017-12-15 08:21:00 +01:00
host,
port,
2017-12-12 17:53:50 +01:00
username,
password,
2017-05-15 22:22:03 +02:00
benchmark: isTestInstance(),
2017-12-12 17:53:50 +01:00
isolationLevel: SequelizeTypescript.Transaction.ISOLATION_LEVELS.SERIALIZABLE,
2017-10-26 16:59:02 +02:00
operatorsAliases: false,
2017-07-11 17:04:57 +02:00
logging: (message: string, benchmark: number) => {
if (process.env.NODE_DB_LOG === 'false') return
2016-12-24 16:59:17 +01:00
let newMessage = message
2017-10-10 09:00:50 +02:00
if (isTestInstance() === true && benchmark !== undefined) {
2016-12-24 16:59:17 +01:00
newMessage += ' | ' + benchmark + 'ms'
}
logger.debug(newMessage)
}
2016-12-11 21:50:51 +01:00
})
2017-12-13 17:46:23 +01:00
async function initDatabaseModels (silent: boolean) {
2017-12-12 17:53:50 +01:00
sequelizeTypescript.addModels([
ApplicationModel,
2017-12-14 17:38:41 +01:00
ActorModel,
ActorFollowModel,
2017-12-12 17:53:50 +01:00
AvatarModel,
AccountModel,
OAuthClientModel,
OAuthTokenModel,
ServerModel,
TagModel,
AccountVideoRateModel,
UserModel,
VideoAbuseModel,
VideoChannelModel,
VideoShareModel,
VideoFileModel,
2018-07-12 19:02:00 +02:00
VideoCaptionModel,
2017-12-12 17:53:50 +01:00
VideoBlacklistModel,
VideoTagModel,
VideoModel,
VideoCommentModel,
ScheduleVideoUpdateModel
2017-12-12 17:53:50 +01:00
])
2016-12-25 09:44:57 +01:00
2018-07-19 16:17:54 +02:00
// Check extensions exist in the database
await checkPostgresExtensions()
// Create custom PostgreSQL functions
await createFunctions()
if (!silent) logger.info('Database %s is ready.', dbname)
2017-10-25 16:52:01 +02:00
return
2016-12-25 09:44:57 +01:00
}
2017-05-15 22:22:03 +02:00
// ---------------------------------------------------------------------------
2017-05-22 20:58:25 +02:00
export {
2017-12-13 17:46:23 +01:00
initDatabaseModels,
2017-12-12 17:53:50 +01:00
sequelizeTypescript
2017-06-16 09:45:46 +02:00
}
2018-07-19 16:17:54 +02:00
// ---------------------------------------------------------------------------
async function checkPostgresExtensions () {
const extensions = [
'pg_trgm',
'unaccent'
]
for (const extension of extensions) {
const query = `SELECT true AS enabled FROM pg_available_extensions WHERE name = '${extension}' AND installed_version IS NOT NULL;`
const [ res ] = await sequelizeTypescript.query(query, { raw: true })
if (!res || res.length === 0 || res[ 0 ][ 'enabled' ] !== true) {
// Try to create the extension ourself
try {
await sequelizeTypescript.query(`CREATE EXTENSION ${extension};`, { raw: true })
} catch {
const errorMessage = `You need to enable ${extension} extension in PostgreSQL. ` +
`You can do so by running 'CREATE EXTENSION ${extension};' as a PostgreSQL super user in ${CONFIG.DATABASE.DBNAME} database.`
throw new Error(errorMessage)
}
}
}
}
async function createFunctions () {
const query = `CREATE OR REPLACE FUNCTION immutable_unaccent(varchar)
RETURNS text AS $$
SELECT unaccent($1)
$$ LANGUAGE sql IMMUTABLE;`
return sequelizeTypescript.query(query, { raw: true })
}