trusted-setup-server/server/models/contribution.js

41 lines
978 B
JavaScript
Raw Normal View History

2020-02-06 15:24:04 +01:00
'use strict'
2020-02-08 19:47:21 +01:00
const validate = (contribution, options) => {
const { name, company, socialType } = contribution.dataValues
if (socialType !== 'anonymous' && (name.length < 4 || name.length > 35)) {
throw new Error('Wrong name')
}
if (company && company.length > 35) {
throw new Error('Wrong company')
}
}
2020-02-06 15:24:04 +01:00
module.exports = (sequelize, DataTypes) => {
const Contribution = sequelize.define(
'Contribution',
{
token: DataTypes.STRING,
name: DataTypes.STRING,
company: DataTypes.STRING,
handle: DataTypes.STRING,
socialType: DataTypes.STRING,
hash: DataTypes.STRING
},
{
hooks: {
2020-02-08 19:47:21 +01:00
beforeCreate: validate,
beforeUpdate: validate
2020-02-06 15:24:04 +01:00
}
}
)
Contribution.nextContributionIndex = async function() {
const rowsCount = await this.count()
return rowsCount + 1
}
Contribution.associate = function(models) {
// associations can be defined here
}
return Contribution
}