1
0
Fork 0
peertube/server/models/job/job.ts

69 lines
1.5 KiB
TypeScript
Raw Normal View History

2017-05-15 20:22:03 +00:00
import { values } from 'lodash'
2017-05-22 18:58:25 +00:00
import * as Sequelize from 'sequelize'
2017-11-09 16:51:58 +00:00
import { JOB_STATES, JOB_CATEGORIES } from '../../initializers'
2017-06-16 07:45:46 +00:00
import { addMethodsToModel } from '../utils'
2017-05-22 18:58:25 +00:00
import {
JobInstance,
JobAttributes,
JobMethods
} from './job-interface'
2017-11-14 16:31:26 +00:00
import { JobCategory, JobState } from '../../../shared/models/job.model'
2017-05-22 18:58:25 +00:00
let Job: Sequelize.Model<JobInstance, JobAttributes>
2017-11-09 16:51:58 +00:00
let listWithLimitByCategory: JobMethods.ListWithLimitByCategory
2017-06-11 15:35:32 +00:00
export default function defineJob (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.DataTypes) {
2017-05-22 18:58:25 +00:00
Job = sequelize.define<JobInstance, JobAttributes>('Job',
{
state: {
2017-05-15 20:22:03 +00:00
type: DataTypes.ENUM(values(JOB_STATES)),
allowNull: false
},
2017-11-09 16:51:58 +00:00
category: {
type: DataTypes.ENUM(values(JOB_CATEGORIES)),
allowNull: false
},
handlerName: {
type: DataTypes.STRING,
allowNull: false
},
handlerInputData: {
type: DataTypes.JSON,
allowNull: true
}
},
{
indexes: [
{
2017-11-14 16:31:26 +00:00
fields: [ 'state', 'category' ]
}
2017-05-22 18:58:25 +00:00
]
}
)
2017-11-09 16:51:58 +00:00
const classMethods = [ listWithLimitByCategory ]
2017-05-22 18:58:25 +00:00
addMethodsToModel(Job, classMethods)
return Job
}
// ---------------------------------------------------------------------------
2017-11-14 16:31:26 +00:00
listWithLimitByCategory = function (limit: number, state: JobState, jobCategory: JobCategory) {
const query = {
order: [
[ 'id', 'ASC' ]
],
limit: limit,
where: {
2017-11-14 16:31:26 +00:00
state,
category: jobCategory
}
}
return Job.findAll(query)
}