1
0
Fork 0
peertube/server/models/video/author.ts

91 lines
2.0 KiB
TypeScript
Raw Normal View History

2017-05-22 18:58:25 +00:00
import * as Sequelize from 'sequelize'
2017-06-16 07:45:46 +00:00
import { isUserUsernameValid } from '../../helpers'
2016-12-28 14:49:23 +00:00
2017-06-16 07:45:46 +00:00
import { addMethodsToModel } from '../utils'
2017-05-22 18:58:25 +00:00
import {
AuthorInstance,
AuthorAttributes,
AuthorMethods
} from './author-interface'
let Author: Sequelize.Model<AuthorInstance, AuthorAttributes>
let findOrCreateAuthor: AuthorMethods.FindOrCreateAuthor
2017-06-11 15:35:32 +00:00
export default function defineAuthor (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.DataTypes) {
2017-05-22 18:58:25 +00:00
Author = sequelize.define<AuthorInstance, AuthorAttributes>('Author',
2016-12-11 20:50:51 +00:00
{
name: {
2016-12-28 14:49:23 +00:00
type: DataTypes.STRING,
allowNull: false,
validate: {
2017-07-11 15:04:57 +00:00
usernameValid: value => {
2017-05-15 20:22:03 +00:00
const res = isUserUsernameValid(value)
2016-12-28 14:49:23 +00:00
if (res === false) throw new Error('Username is not valid.')
}
}
2016-12-11 20:50:51 +00:00
}
},
{
2016-12-29 08:33:28 +00:00
indexes: [
{
fields: [ 'name' ]
},
{
fields: [ 'podId' ]
},
{
2017-02-16 18:24:34 +00:00
fields: [ 'userId' ],
unique: true
},
{
fields: [ 'name', 'podId' ],
unique: true
2016-12-29 08:33:28 +00:00
}
2017-05-22 18:58:25 +00:00
]
2016-12-11 20:50:51 +00:00
}
)
2017-05-22 18:58:25 +00:00
const classMethods = [ associate, findOrCreateAuthor ]
addMethodsToModel(Author, classMethods)
2016-12-11 20:50:51 +00:00
return Author
}
// ---------------------------------------------------------------------------
function associate (models) {
2017-05-22 18:58:25 +00:00
Author.belongsTo(models.Pod, {
2016-12-11 20:50:51 +00:00
foreignKey: {
name: 'podId',
allowNull: true
},
onDelete: 'cascade'
})
2017-05-22 18:58:25 +00:00
Author.belongsTo(models.User, {
foreignKey: {
name: 'userId',
allowNull: true
},
onDelete: 'cascade'
})
2016-12-11 20:50:51 +00:00
}
2016-12-29 17:02:03 +00:00
findOrCreateAuthor = function (name: string, podId: number, userId: number, transaction: Sequelize.Transaction) {
2016-12-29 17:02:03 +00:00
const author = {
name,
podId,
userId
}
const query: Sequelize.FindOrInitializeOptions<AuthorAttributes> = {
2016-12-29 17:02:03 +00:00
where: author,
defaults: author,
transaction
2016-12-29 17:02:03 +00:00
}
return Author.findOrCreate(query).then(([ authorInstance ]) => authorInstance)
2016-12-29 17:02:03 +00:00
}