]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/initializers/database.ts
WIP plugins: add ability to register plugins
[github/Chocobozzz/PeerTube.git] / server / initializers / database.ts
CommitLineData
3fd3ab2d
C
1import { Sequelize as SequelizeTypescript } from 'sequelize-typescript'
2import { isTestInstance } from '../helpers/core-utils'
3import { logger } from '../helpers/logger'
8c308c2b 4
3fd3ab2d 5import { AccountModel } from '../models/account/account'
3fd3ab2d
C
6import { AccountVideoRateModel } from '../models/account/account-video-rate'
7import { UserModel } from '../models/account/user'
50d6de9c
C
8import { ActorModel } from '../models/activitypub/actor'
9import { ActorFollowModel } from '../models/activitypub/actor-follow'
3fd3ab2d
C
10import { ApplicationModel } from '../models/application/application'
11import { AvatarModel } from '../models/avatar/avatar'
3fd3ab2d
C
12import { OAuthClientModel } from '../models/oauth/oauth-client'
13import { OAuthTokenModel } from '../models/oauth/oauth-token'
14import { ServerModel } from '../models/server/server'
15import { TagModel } from '../models/video/tag'
16import { VideoModel } from '../models/video/video'
17import { VideoAbuseModel } from '../models/video/video-abuse'
18import { VideoBlacklistModel } from '../models/video/video-blacklist'
19import { VideoChannelModel } from '../models/video/video-channel'
6d852470 20import { VideoCommentModel } from '../models/video/video-comment'
3fd3ab2d
C
21import { VideoFileModel } from '../models/video/video-file'
22import { VideoShareModel } from '../models/video/video-share'
23import { VideoTagModel } from '../models/video/video-tag'
6dd9de95 24import { CONFIG } from './config'
2baea0c7 25import { ScheduleVideoUpdateModel } from '../models/video/schedule-video-update'
40e87e9e 26import { VideoCaptionModel } from '../models/video/video-caption'
fbad87b0 27import { VideoImportModel } from '../models/video/video-import'
6b616860 28import { VideoViewModel } from '../models/video/video-views'
74d63469 29import { VideoChangeOwnershipModel } from '../models/video/video-change-ownership'
c48e82b5 30import { VideoRedundancyModel } from '../models/redundancy/video-redundancy'
6e46de09 31import { UserVideoHistoryModel } from '../models/account/user-video-history'
7ad9b984
C
32import { AccountBlocklistModel } from '../models/account/account-blocklist'
33import { ServerBlocklistModel } from '../models/server/server-blocklist'
cef534ed
C
34import { UserNotificationModel } from '../models/account/user-notification'
35import { UserNotificationSettingModel } from '../models/account/user-notification-setting'
09209296 36import { VideoStreamingPlaylistModel } from '../models/video/video-streaming-playlist'
418d092a
C
37import { VideoPlaylistModel } from '../models/video/video-playlist'
38import { VideoPlaylistElementModel } from '../models/video/video-playlist-element'
e8bafea3 39import { ThumbnailModel } from '../models/video/thumbnail'
1735c825 40import { QueryTypes, Transaction } from 'sequelize'
fdbda9e3 41
3fd3ab2d 42require('pg').defaults.parseInt8 = true // Avoid BIGINT to be converted to string
8c308c2b 43
65fcc311
C
44const dbname = CONFIG.DATABASE.DBNAME
45const username = CONFIG.DATABASE.USERNAME
46const password = CONFIG.DATABASE.PASSWORD
228077ef
C
47const host = CONFIG.DATABASE.HOSTNAME
48const port = CONFIG.DATABASE.PORT
1c3386e8 49const poolMax = CONFIG.DATABASE.POOL.MAX
8c308c2b 50
3fd3ab2d
C
51const sequelizeTypescript = new SequelizeTypescript({
52 database: dbname,
feb4bdfd 53 dialect: 'postgres',
228077ef
C
54 host,
55 port,
3fd3ab2d
C
56 username,
57 password,
1c3386e8
RK
58 pool: {
59 max: poolMax
60 },
65fcc311 61 benchmark: isTestInstance(),
1735c825 62 isolationLevel: Transaction.ISOLATION_LEVELS.SERIALIZABLE,
075f16ca 63 logging: (message: string, benchmark: number) => {
165cdc75
C
64 if (process.env.NODE_DB_LOG === 'false') return
65
7920c273 66 let newMessage = message
769d3321 67 if (isTestInstance() === true && benchmark !== undefined) {
7920c273
C
68 newMessage += ' | ' + benchmark + 'ms'
69 }
70
71 logger.debug(newMessage)
72 }
feb4bdfd
C
73})
74
91fea9fc 75async function initDatabaseModels (silent: boolean) {
3fd3ab2d
C
76 sequelizeTypescript.addModels([
77 ApplicationModel,
50d6de9c
C
78 ActorModel,
79 ActorFollowModel,
3fd3ab2d
C
80 AvatarModel,
81 AccountModel,
3fd3ab2d
C
82 OAuthClientModel,
83 OAuthTokenModel,
84 ServerModel,
85 TagModel,
86 AccountVideoRateModel,
3fd3ab2d
C
87 UserModel,
88 VideoAbuseModel,
b876eaf1 89 VideoModel,
74d63469 90 VideoChangeOwnershipModel,
3fd3ab2d 91 VideoChannelModel,
3fd3ab2d
C
92 VideoShareModel,
93 VideoFileModel,
40e87e9e 94 VideoCaptionModel,
3fd3ab2d
C
95 VideoBlacklistModel,
96 VideoTagModel,
2baea0c7 97 VideoCommentModel,
fbad87b0 98 ScheduleVideoUpdateModel,
6b616860 99 VideoImportModel,
c48e82b5 100 VideoViewModel,
6e46de09 101 VideoRedundancyModel,
7ad9b984
C
102 UserVideoHistoryModel,
103 AccountBlocklistModel,
cef534ed
C
104 ServerBlocklistModel,
105 UserNotificationModel,
09209296 106 UserNotificationSettingModel,
418d092a
C
107 VideoStreamingPlaylistModel,
108 VideoPlaylistModel,
e8bafea3
C
109 VideoPlaylistElementModel,
110 ThumbnailModel
3fd3ab2d 111 ])
b769007f 112
57c36b27
C
113 // Check extensions exist in the database
114 await checkPostgresExtensions()
115
116 // Create custom PostgreSQL functions
117 await createFunctions()
118
f5028693
C
119 if (!silent) logger.info('Database %s is ready.', dbname)
120
d412e80e 121 return
b769007f 122}
65fcc311
C
123
124// ---------------------------------------------------------------------------
125
e02643f3 126export {
91fea9fc 127 initDatabaseModels,
3fd3ab2d 128 sequelizeTypescript
74889a71 129}
57c36b27
C
130
131// ---------------------------------------------------------------------------
132
133async function checkPostgresExtensions () {
0b2f03d3
C
134 const promises = [
135 checkPostgresExtension('pg_trgm'),
136 checkPostgresExtension('unaccent')
57c36b27
C
137 ]
138
0b2f03d3
C
139 return Promise.all(promises)
140}
141
142async function checkPostgresExtension (extension: string) {
3acc5084 143 const query = `SELECT 1 FROM pg_available_extensions WHERE name = '${extension}' AND installed_version IS NOT NULL;`
1735c825
C
144 const options = {
145 type: QueryTypes.SELECT as QueryTypes.SELECT,
146 raw: true
147 }
148
3acc5084 149 const res = await sequelizeTypescript.query<object>(query, options)
57c36b27 150
3acc5084 151 if (!res || res.length === 0) {
1735c825 152 // Try to create the extension ourselves
0b2f03d3
C
153 try {
154 await sequelizeTypescript.query(`CREATE EXTENSION ${extension};`, { raw: true })
57c36b27 155
0b2f03d3
C
156 } catch {
157 const errorMessage = `You need to enable ${extension} extension in PostgreSQL. ` +
158 `You can do so by running 'CREATE EXTENSION ${extension};' as a PostgreSQL super user in ${CONFIG.DATABASE.DBNAME} database.`
159 throw new Error(errorMessage)
57c36b27
C
160 }
161 }
162}
163
164async function createFunctions () {
2cebd797
C
165 const query = `CREATE OR REPLACE FUNCTION immutable_unaccent(text)
166 RETURNS text AS
167$func$
168SELECT public.unaccent('public.unaccent', $1::text)
169$func$ LANGUAGE sql IMMUTABLE;`
57c36b27
C
170
171 return sequelizeTypescript.query(query, { raw: true })
172}