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