import { values } from 'lodash' import * as Sequelize from 'sequelize' import { JOB_STATES } from '../initializers' import { addMethodsToModel } from './utils' import { JobClass, JobInstance, JobAttributes, JobMethods } from './job-interface' let Job: Sequelize.Model let listWithLimit: JobMethods.ListWithLimit export default function defineJob (sequelize: Sequelize.Sequelize, DataTypes) { Job = sequelize.define('Job', { state: { type: DataTypes.ENUM(values(JOB_STATES)), allowNull: false }, handlerName: { type: DataTypes.STRING, allowNull: false }, handlerInputData: { type: DataTypes.JSON, allowNull: true } }, { indexes: [ { fields: [ 'state' ] } ] } ) const classMethods = [ listWithLimit ] addMethodsToModel(Job, classMethods) return Job } // --------------------------------------------------------------------------- listWithLimit = function (limit, state, callback) { const query = { order: [ [ 'id', 'ASC' ] ], limit: limit, where: { state } } return Job.findAll(query).asCallback(callback) }