PeerTube/server/initializers/database.ts

163 lines
5.2 KiB
TypeScript
Raw Normal View History

2017-05-15 22:22:03 +02:00
import { join } from 'path'
import { flattenDepth } from 'lodash'
2017-09-04 20:07:54 +02:00
require('pg').defaults.parseInt8 = true // Avoid BIGINT to be converted to string
2017-06-05 21:53:49 +02:00
import * as Sequelize from 'sequelize'
2015-06-09 17:41:40 +02:00
2017-05-15 22:22:03 +02:00
import { CONFIG } from './constants'
// Do not use barrel, we need to load database first
import { logger } from '../helpers/logger'
import { isTestInstance, readdirPromise } from '../helpers/core-utils'
2017-09-07 15:27:35 +02:00
import { VideoModel } from './../models/video/video-interface'
import { VideoTagModel } from './../models/video/video-tag-interface'
import { BlacklistedVideoModel } from './../models/video/video-blacklist-interface'
import { VideoFileModel } from './../models/video/video-file-interface'
import { VideoAbuseModel } from './../models/video/video-abuse-interface'
2017-10-24 19:41:09 +02:00
import { VideoChannelModel } from './../models/video/video-channel-interface'
2017-11-09 17:51:58 +01:00
import { UserModel } from '../models/account/user-interface'
import { AccountVideoRateModel } from '../models/account/account-video-rate-interface'
import { AccountFollowModel } from '../models/account/account-follow-interface'
2017-09-07 15:27:35 +02:00
import { TagModel } from './../models/video/tag-interface'
2017-11-15 11:00:25 +01:00
import { ServerModel } from '../models/server/server-interface'
2017-09-07 15:27:35 +02:00
import { OAuthTokenModel } from './../models/oauth/oauth-token-interface'
import { OAuthClientModel } from './../models/oauth/oauth-client-interface'
import { JobModel } from './../models/job/job-interface'
2017-11-09 17:51:58 +01:00
import { AccountModel } from './../models/account/account-interface'
2017-09-07 15:27:35 +02:00
import { ApplicationModel } from './../models/application/application-interface'
2017-11-15 17:56:21 +01:00
import { VideoChannelShareModel } from '../models/video/video-channel-share-interface'
import { VideoShareModel } from '../models/video/video-share-interface'
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
2015-06-09 17:41:40 +02:00
2017-11-27 09:47:21 +01:00
export type PeerTubeDatabase = {
2017-05-22 20:58:25 +02:00
sequelize?: Sequelize.Sequelize,
init?: (silent: boolean) => Promise<void>,
2017-05-22 20:58:25 +02:00
Application?: ApplicationModel,
2017-11-09 17:51:58 +01:00
Account?: AccountModel,
2017-05-22 20:58:25 +02:00
Job?: JobModel,
OAuthClient?: OAuthClientModel,
OAuthToken?: OAuthTokenModel,
2017-11-15 11:00:25 +01:00
Server?: ServerModel,
2017-05-22 20:58:25 +02:00
Tag?: TagModel,
2017-11-09 17:51:58 +01:00
AccountVideoRate?: AccountVideoRateModel,
AccountFollow?: AccountFollowModel,
2017-05-22 20:58:25 +02:00
User?: UserModel,
VideoAbuse?: VideoAbuseModel,
2017-10-24 19:41:09 +02:00
VideoChannel?: VideoChannelModel,
2017-11-15 17:56:21 +01:00
VideoChannelShare?: VideoChannelShareModel,
VideoShare?: VideoShareModel,
VideoFile?: VideoFileModel,
2017-05-22 20:58:25 +02:00
BlacklistedVideo?: BlacklistedVideoModel,
VideoTag?: VideoTagModel,
Video?: VideoModel
2017-11-27 09:47:21 +01:00
}
const database: PeerTubeDatabase = {}
2016-12-25 09:44:57 +01:00
const sequelize = new Sequelize(dbname, username, password, {
2016-12-11 21:50:51 +01:00
dialect: 'postgres',
2017-05-15 22:22:03 +02:00
host: CONFIG.DATABASE.HOSTNAME,
port: CONFIG.DATABASE.PORT,
benchmark: isTestInstance(),
2017-10-25 11:55:06 +02:00
isolationLevel: Sequelize.Transaction.ISOLATION_LEVELS.SERIALIZABLE,
2017-10-26 16:59:02 +02:00
operatorsAliases: false,
2016-12-24 16:59:17 +01:00
2017-07-11 17:04:57 +02:00
logging: (message: string, benchmark: number) => {
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
})
2016-12-25 09:44:57 +01:00
database.sequelize = sequelize
2016-12-11 21:50:51 +01:00
database.init = async (silent: boolean) => {
2017-05-15 22:22:03 +02:00
const modelDirectory = join(__dirname, '..', 'models')
2016-01-31 11:23:52 +01:00
const filePaths = await getModelFiles(modelDirectory)
2016-12-25 09:44:57 +01:00
for (const filePath of filePaths) {
2017-10-30 10:16:27 +01:00
try {
const model = sequelize.import(filePath)
2016-12-25 09:44:57 +01:00
2017-10-30 10:16:27 +01:00
database[model['name']] = model
} catch (err) {
logger.error('Cannot import database model %s.', filePath, err)
process.exit(0)
}
}
2016-12-25 09:44:57 +01:00
for (const modelName of Object.keys(database)) {
if ('associate' in database[modelName]) {
try {
database[modelName].associate(database)
} catch (err) {
logger.error('Cannot associate model %s.', modelName, err)
process.exit(0)
}
}
}
2016-12-25 09:44:57 +01:00
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 {
database
}
2017-06-16 09:45:46 +02:00
// ---------------------------------------------------------------------------
async function getModelFiles (modelDirectory: string) {
const files = await readdirPromise(modelDirectory)
const directories = files.filter(directory => {
// Find directories
if (
directory.endsWith('.js.map') ||
directory === 'index.js' || directory === 'index.ts' ||
directory === 'utils.js' || directory === 'utils.ts'
) return false
return true
})
2017-06-16 09:45:46 +02:00
2017-11-09 17:51:58 +01:00
const tasks: Promise<any>[] = []
// For each directory we read it and append model in the modelFilePaths array
for (const directory of directories) {
const modelDirectoryPath = join(modelDirectory, directory)
const promise = readdirPromise(modelDirectoryPath)
.then(files => {
const filteredFiles = files
.filter(file => {
if (
file === 'index.js' || file === 'index.ts' ||
file === 'utils.js' || file === 'utils.ts' ||
file.endsWith('-interface.js') || file.endsWith('-interface.ts') ||
file.endsWith('.js.map')
) return false
return true
})
.map(file => join(modelDirectoryPath, file))
2017-06-16 09:45:46 +02:00
return filteredFiles
2017-06-16 09:45:46 +02:00
})
tasks.push(promise)
}
const filteredFilesArray: string[][] = await Promise.all(tasks)
return flattenDepth<string>(filteredFilesArray, 1)
2017-06-16 09:45:46 +02:00
}