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

136 lines
4.4 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 { 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'
import { ScheduleVideoUpdateModel } from '../models/video/schedule-video-update'
2018-07-12 17:02:00 +00:00
import { VideoCaptionModel } from '../models/video/video-caption'
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,
OAuthClientModel,
OAuthTokenModel,
ServerModel,
TagModel,
AccountVideoRateModel,
UserModel,
VideoAbuseModel,
VideoChannelModel,
VideoShareModel,
VideoFileModel,
2018-07-12 17:02:00 +00:00
VideoCaptionModel,
2017-12-12 16:53:50 +00:00
VideoBlacklistModel,
VideoTagModel,
VideoModel,
VideoCommentModel,
ScheduleVideoUpdateModel
2017-12-12 16:53:50 +00:00
])
2016-12-25 08:44:57 +00:00
2018-07-19 14:17:54 +00: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 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
}
2018-07-19 14:17:54 +00: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 () {
2018-07-26 08:45:10 +00:00
const query = `CREATE OR REPLACE FUNCTION immutable_unaccent(text)
RETURNS text AS
$func$
SELECT public.unaccent('public.unaccent', $1::text)
$func$ LANGUAGE sql IMMUTABLE;`
2018-07-19 14:17:54 +00:00
return sequelizeTypescript.query(query, { raw: true })
}