audiobookshelf/server/models/BookAuthor.js

31 lines
927 B
JavaScript
Raw Normal View History

2023-03-12 14:51:45 -05:00
const { DataTypes, Model } = require('sequelize')
module.exports = (sequelize) => {
class BookAuthor extends Model { }
BookAuthor.init({
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true
}
}, {
sequelize,
2023-03-19 15:19:22 -05:00
modelName: 'bookAuthor',
2023-03-12 14:51:45 -05:00
timestamps: false
})
// Super Many-to-Many
// ref: https://sequelize.org/docs/v6/advanced-association-concepts/advanced-many-to-many/#the-best-of-both-worlds-the-super-many-to-many-relationship
2023-03-19 15:19:22 -05:00
const { book, person } = sequelize.models
book.belongsToMany(person, { through: BookAuthor, as: 'authors', otherKey: 'authorId' })
person.belongsToMany(book, { through: BookAuthor, foreignKey: 'authorId' })
2023-03-12 14:51:45 -05:00
2023-03-19 15:19:22 -05:00
book.hasMany(BookAuthor)
BookAuthor.belongsTo(book)
2023-03-12 14:51:45 -05:00
2023-03-19 15:19:22 -05:00
person.hasMany(BookAuthor, { foreignKey: 'authorId' })
BookAuthor.belongsTo(person, { as: 'author', foreignKey: 'authorId' })
2023-03-12 14:51:45 -05:00
return BookAuthor
}