d461cb440d9f26cbd816465c412a0108a702e280
[oweals/peertube.git] / server / initializers / database.ts
1 import { join } from 'path'
2 import { flattenDepth } from 'lodash'
3 require('pg').defaults.parseInt8 = true // Avoid BIGINT to be converted to string
4 import * as Sequelize from 'sequelize'
5 import * as Promise from 'bluebird'
6
7 import { CONFIG } from './constants'
8 // Do not use barrel, we need to load database first
9 import { logger } from '../helpers/logger'
10 import { isTestInstance, readdirPromise } from '../helpers/core-utils'
11
12 import { VideoModel } from './../models/video/video-interface'
13 import { VideoTagModel } from './../models/video/video-tag-interface'
14 import { BlacklistedVideoModel } from './../models/video/video-blacklist-interface'
15 import { VideoFileModel } from './../models/video/video-file-interface'
16 import { VideoAbuseModel } from './../models/video/video-abuse-interface'
17 import { VideoChannelModel } from './../models/video/video-channel-interface'
18 import { UserModel } from './../models/user/user-interface'
19 import { UserVideoRateModel } from './../models/user/user-video-rate-interface'
20 import { TagModel } from './../models/video/tag-interface'
21 import { RequestModel } from './../models/request/request-interface'
22 import { RequestVideoQaduModel } from './../models/request/request-video-qadu-interface'
23 import { RequestVideoEventModel } from './../models/request/request-video-event-interface'
24 import { RequestToPodModel } from './../models/request/request-to-pod-interface'
25 import { PodModel } from './../models/pod/pod-interface'
26 import { OAuthTokenModel } from './../models/oauth/oauth-token-interface'
27 import { OAuthClientModel } from './../models/oauth/oauth-client-interface'
28 import { JobModel } from './../models/job/job-interface'
29 import { AuthorModel } from './../models/video/author-interface'
30 import { ApplicationModel } from './../models/application/application-interface'
31
32 const dbname = CONFIG.DATABASE.DBNAME
33 const username = CONFIG.DATABASE.USERNAME
34 const password = CONFIG.DATABASE.PASSWORD
35
36 const database: {
37   sequelize?: Sequelize.Sequelize,
38   init?: (silent: boolean) => Promise<void>,
39
40   Application?: ApplicationModel,
41   Author?: AuthorModel,
42   Job?: JobModel,
43   OAuthClient?: OAuthClientModel,
44   OAuthToken?: OAuthTokenModel,
45   Pod?: PodModel,
46   RequestToPod?: RequestToPodModel,
47   RequestVideoEvent?: RequestVideoEventModel,
48   RequestVideoQadu?: RequestVideoQaduModel,
49   Request?: RequestModel,
50   Tag?: TagModel,
51   UserVideoRate?: UserVideoRateModel,
52   User?: UserModel,
53   VideoAbuse?: VideoAbuseModel,
54   VideoChannel?: VideoChannelModel,
55   VideoFile?: VideoFileModel,
56   BlacklistedVideo?: BlacklistedVideoModel,
57   VideoTag?: VideoTagModel,
58   Video?: VideoModel
59 } = {}
60
61 const sequelize = new Sequelize(dbname, username, password, {
62   dialect: 'postgres',
63   host: CONFIG.DATABASE.HOSTNAME,
64   port: CONFIG.DATABASE.PORT,
65   benchmark: isTestInstance(),
66
67   logging: (message: string, benchmark: number) => {
68     let newMessage = message
69     if (isTestInstance() === true && benchmark !== undefined) {
70       newMessage += ' | ' + benchmark + 'ms'
71     }
72
73     logger.debug(newMessage)
74   }
75 })
76
77 database.sequelize = sequelize
78
79 database.init = (silent: boolean) => {
80   const modelDirectory = join(__dirname, '..', 'models')
81
82   return getModelFiles(modelDirectory).then(filePaths => {
83     filePaths.forEach(filePath => {
84       const model = sequelize.import(filePath)
85
86       database[model['name']] = model
87     })
88
89     Object.keys(database).forEach(modelName => {
90       if ('associate' in database[modelName]) {
91         database[modelName].associate(database)
92       }
93     })
94
95     if (!silent) logger.info('Database %s is ready.', dbname)
96
97     return undefined
98   })
99 }
100
101 // ---------------------------------------------------------------------------
102
103 export {
104   database
105 }
106
107 // ---------------------------------------------------------------------------
108
109 function getModelFiles (modelDirectory: string) {
110   return readdirPromise(modelDirectory)
111     .then(files => {
112       const directories: string[] = files.filter(directory => {
113         // Find directories
114         if (
115           directory.endsWith('.js.map') ||
116           directory === 'index.js' || directory === 'index.ts' ||
117           directory === 'utils.js' || directory === 'utils.ts'
118         ) return false
119
120         return true
121       })
122
123       return directories
124     })
125     .then(directories => {
126       const tasks = []
127
128       // For each directory we read it and append model in the modelFilePaths array
129       directories.forEach(directory => {
130         const modelDirectoryPath = join(modelDirectory, directory)
131
132         const promise = readdirPromise(modelDirectoryPath).then(files => {
133           const filteredFiles = files.filter(file => {
134             if (
135               file === 'index.js' || file === 'index.ts' ||
136               file === 'utils.js' || file === 'utils.ts' ||
137               file.endsWith('-interface.js') || file.endsWith('-interface.ts') ||
138               file.endsWith('.js.map')
139             ) return false
140
141             return true
142           }).map(file => join(modelDirectoryPath, file))
143
144           return filteredFiles
145         })
146
147         tasks.push(promise)
148       })
149
150       return Promise.all(tasks)
151     })
152     .then((filteredFiles: string[][]) => {
153       return flattenDepth<string>(filteredFiles, 1)
154     })
155 }