PeerTube/server/initializers/database.ts

152 lines
3.9 KiB
TypeScript
Raw Normal View History

2017-05-15 22:22:03 +02:00
import { join } from 'path'
import { flattenDepth } from 'lodash'
2017-06-05 21:53:49 +02:00
import * as Sequelize from 'sequelize'
import * as Promise from 'bluebird'
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-05-22 20:58:25 +02:00
import {
ApplicationModel,
AuthorModel,
JobModel,
OAuthClientModel,
OAuthTokenModel,
PodModel,
RequestModel,
RequestToPodModel,
RequestVideoEventModel,
RequestVideoQaduModel,
TagModel,
UserModel,
UserVideoRateModel,
VideoAbuseModel,
BlacklistedVideoModel,
VideoTagModel,
VideoModel
} from '../models'
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-05-22 20:58:25 +02:00
const database: {
sequelize?: Sequelize.Sequelize,
init?: (silent: boolean) => Promise<void>,
2017-05-22 20:58:25 +02:00
Application?: ApplicationModel,
Author?: AuthorModel,
Job?: JobModel,
OAuthClient?: OAuthClientModel,
OAuthToken?: OAuthTokenModel,
Pod?: PodModel,
RequestToPod?: RequestToPodModel,
RequestVideoEvent?: RequestVideoEventModel,
RequestVideoQadu?: RequestVideoQaduModel,
Request?: RequestModel,
Tag?: TagModel,
UserVideoRate?: UserVideoRateModel,
User?: UserModel,
VideoAbuse?: VideoAbuseModel,
BlacklistedVideo?: BlacklistedVideoModel,
VideoTag?: VideoTagModel,
Video?: VideoModel
} = {}
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(),
2016-12-24 16:59:17 +01:00
2017-06-10 22:15:25 +02:00
logging: function (message: string, benchmark: number) {
2016-12-24 16:59:17 +01:00
let newMessage = message
if (benchmark !== undefined) {
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 = function (silent: boolean) {
2017-05-15 22:22:03 +02:00
const modelDirectory = join(__dirname, '..', 'models')
2016-01-31 11:23:52 +01:00
return getModelFiles(modelDirectory).then(filePaths => {
filePaths.forEach(filePath => {
2017-06-16 09:45:46 +02:00
const model = sequelize.import(filePath)
2016-12-25 09:44:57 +01:00
2017-05-15 22:22:03 +02:00
database[model['name']] = model
2016-12-25 09:44:57 +01:00
})
Object.keys(database).forEach(modelName => {
2016-12-25 09:44:57 +01:00
if ('associate' in database[modelName]) {
database[modelName].associate(database)
}
})
if (!silent) logger.info('Database %s is ready.', dbname)
2016-12-25 09:44:57 +01:00
return undefined
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
// ---------------------------------------------------------------------------
function getModelFiles (modelDirectory: string) {
return readdirPromise(modelDirectory)
.then(files => {
const directories: string[] = files.filter(function (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
return directories
2017-06-16 09:45:46 +02:00
})
.then(directories => {
const tasks = []
// For each directory we read it and append model in the modelFilePaths array
directories.forEach(directory => {
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))
return filteredFiles
2017-06-16 09:45:46 +02:00
})
tasks.push(promise)
2017-06-16 09:45:46 +02:00
})
return Promise.all(tasks)
})
.then((filteredFiles: string[][]) => {
return flattenDepth<string>(filteredFiles, 1)
2017-06-16 09:45:46 +02:00
})
}