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