2017-06-05 15:53:49 -04:00
|
|
|
import * as fs from 'fs'
|
2017-05-15 16:22:03 -04:00
|
|
|
import { join } from 'path'
|
2017-06-05 15:53:49 -04:00
|
|
|
import * as Sequelize from 'sequelize'
|
2017-06-16 03:45:46 -04:00
|
|
|
import { each } from 'async'
|
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-06-11 09:19:43 -04:00
|
|
|
import { isTestInstance } 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,
|
|
|
|
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,
|
|
|
|
init?: (silent: any, callback: any) => void,
|
|
|
|
|
|
|
|
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 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-06-10 16:15:25 -04:00
|
|
|
logging: function (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-06-10 16:15:25 -04:00
|
|
|
database.init = function (silent: boolean, callback: (err: Error) => void) {
|
2017-05-15 16:22:03 -04:00
|
|
|
const modelDirectory = join(__dirname, '..', 'models')
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2017-06-16 03:45:46 -04:00
|
|
|
getModelFiles(modelDirectory, function (err, filePaths) {
|
|
|
|
if (err) throw err
|
2015-06-09 11:41:40 -04:00
|
|
|
|
2017-06-16 03:45:46 -04:00
|
|
|
filePaths.forEach(function (filePath) {
|
|
|
|
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
|
|
|
})
|
|
|
|
|
|
|
|
Object.keys(database).forEach(function (modelName) {
|
|
|
|
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
|
|
|
|
|
|
|
return callback(null)
|
|
|
|
})
|
|
|
|
}
|
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
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function getModelFiles (modelDirectory: string, callback: (err: Error, filePaths: string[]) => void) {
|
|
|
|
fs.readdir(modelDirectory, function (err, files) {
|
|
|
|
if (err) throw err
|
|
|
|
|
|
|
|
const directories = files.filter(function (directory) {
|
2017-06-24 04:30:23 -04:00
|
|
|
// Find directories
|
2017-06-16 03:45:46 -04:00
|
|
|
if (
|
2017-06-24 04:30:23 -04:00
|
|
|
directory.endsWith('.js.map') ||
|
2017-06-16 03:45:46 -04:00
|
|
|
directory === 'index.js' || directory === 'index.ts' ||
|
|
|
|
directory === 'utils.js' || directory === 'utils.ts'
|
|
|
|
) return false
|
|
|
|
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
|
|
|
|
let modelFilePaths: string[] = []
|
|
|
|
|
|
|
|
// For each directory we read it and append model in the modelFilePaths array
|
|
|
|
each(directories, function (directory: string, eachCallback: ErrorCallback<Error>) {
|
|
|
|
const modelDirectoryPath = join(modelDirectory, directory)
|
|
|
|
|
|
|
|
fs.readdir(modelDirectoryPath, function (err, files) {
|
|
|
|
if (err) return eachCallback(err)
|
|
|
|
|
|
|
|
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 => {
|
|
|
|
return join(modelDirectoryPath, file)
|
|
|
|
})
|
|
|
|
|
|
|
|
modelFilePaths = modelFilePaths.concat(filteredFiles)
|
|
|
|
|
|
|
|
return eachCallback(null)
|
|
|
|
})
|
2017-06-16 08:32:15 -04:00
|
|
|
}, function (err: Error) {
|
2017-06-16 03:45:46 -04:00
|
|
|
return callback(err, modelFilePaths)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|