1
0
Fork 0
peertube/server/initializers/database.ts

154 lines
4.0 KiB
TypeScript
Raw Normal View History

2017-05-15 20:22:03 +00:00
import { join } from 'path'
import { flattenDepth } from 'lodash'
2017-06-05 19:53:49 +00:00
import * as Sequelize from 'sequelize'
import * as Promise from 'bluebird'
2015-06-09 15:41:40 +00:00
2017-05-15 20:22:03 +00: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 18:58:25 +00:00
import {
ApplicationModel,
AuthorModel,
JobModel,
OAuthClientModel,
OAuthTokenModel,
PodModel,
RequestModel,
RequestToPodModel,
RequestVideoEventModel,
RequestVideoQaduModel,
TagModel,
UserModel,
UserVideoRateModel,
VideoAbuseModel,
BlacklistedVideoModel,
VideoFileModel,
2017-05-22 18:58:25 +00:00
VideoTagModel,
VideoModel
} from '../models'
2015-06-09 15:41:40 +00:00
2017-05-15 20:22:03 +00:00
const dbname = CONFIG.DATABASE.DBNAME
const username = CONFIG.DATABASE.USERNAME
const password = CONFIG.DATABASE.PASSWORD
2015-06-09 15:41:40 +00:00
2017-05-22 18:58:25 +00:00
const database: {
sequelize?: Sequelize.Sequelize,
init?: (silent: boolean) => Promise<void>,
2017-05-22 18:58:25 +00: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,
VideoFile?: VideoFileModel,
2017-05-22 18:58:25 +00:00
BlacklistedVideo?: BlacklistedVideoModel,
VideoTag?: VideoTagModel,
Video?: VideoModel
} = {}
2016-12-25 08:44:57 +00:00
const sequelize = new Sequelize(dbname, username, password, {
2016-12-11 20:50:51 +00:00
dialect: 'postgres',
2017-05-15 20:22:03 +00:00
host: CONFIG.DATABASE.HOSTNAME,
port: CONFIG.DATABASE.PORT,
benchmark: isTestInstance(),
2016-12-24 15:59:17 +00:00
2017-07-11 15:04:57 +00:00
logging: (message: string, benchmark: number) => {
2016-12-24 15:59:17 +00:00
let newMessage = message
if (benchmark !== undefined) {
newMessage += ' | ' + benchmark + 'ms'
}
logger.debug(newMessage)
}
2016-12-11 20:50:51 +00:00
})
2016-12-25 08:44:57 +00:00
database.sequelize = sequelize
2016-12-11 20:50:51 +00:00
2017-07-11 15:04:57 +00:00
database.init = (silent: boolean) => {
2017-05-15 20:22:03 +00:00
const modelDirectory = join(__dirname, '..', 'models')
2016-01-31 10:23:52 +00:00
return getModelFiles(modelDirectory).then(filePaths => {
filePaths.forEach(filePath => {
2017-06-16 07:45:46 +00:00
const model = sequelize.import(filePath)
2016-12-25 08:44:57 +00:00
2017-05-15 20:22:03 +00:00
database[model['name']] = model
2016-12-25 08:44:57 +00:00
})
Object.keys(database).forEach(modelName => {
2016-12-25 08:44:57 +00:00
if ('associate' in database[modelName]) {
database[modelName].associate(database)
}
})
if (!silent) logger.info('Database %s is ready.', dbname)
2016-12-25 08:44:57 +00:00
return undefined
2016-12-25 08:44:57 +00:00
})
}
2017-05-15 20:22:03 +00:00
// ---------------------------------------------------------------------------
2017-05-22 18:58:25 +00:00
export {
database
}
2017-06-16 07:45:46 +00:00
// ---------------------------------------------------------------------------
function getModelFiles (modelDirectory: string) {
return readdirPromise(modelDirectory)
.then(files => {
2017-07-11 15:04:57 +00:00
const directories: string[] = 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 07:45:46 +00:00
return directories
2017-06-16 07:45:46 +00: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 07:45:46 +00:00
})
tasks.push(promise)
2017-06-16 07:45:46 +00:00
})
return Promise.all(tasks)
})
.then((filteredFiles: string[][]) => {
return flattenDepth<string>(filteredFiles, 1)
2017-06-16 07:45:46 +00:00
})
}