mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-20 19:06:06 +01:00
132 lines
2.7 KiB
JavaScript
132 lines
2.7 KiB
JavaScript
const { DataTypes, Model } = require('sequelize')
|
|
|
|
const oldAuthor = require('../objects/entities/Author')
|
|
|
|
class Author extends Model {
|
|
constructor(values, options) {
|
|
super(values, options)
|
|
|
|
/** @type {UUIDV4} */
|
|
this.id
|
|
/** @type {string} */
|
|
this.name
|
|
/** @type {string} */
|
|
this.lastFirst
|
|
/** @type {string} */
|
|
this.asin
|
|
/** @type {string} */
|
|
this.description
|
|
/** @type {string} */
|
|
this.imagePath
|
|
/** @type {UUIDV4} */
|
|
this.libraryId
|
|
/** @type {Date} */
|
|
this.updatedAt
|
|
/** @type {Date} */
|
|
this.createdAt
|
|
}
|
|
|
|
static async getOldAuthors() {
|
|
const authors = await this.findAll()
|
|
return authors.map(au => au.getOldAuthor())
|
|
}
|
|
|
|
getOldAuthor() {
|
|
return new oldAuthor({
|
|
id: this.id,
|
|
asin: this.asin,
|
|
name: this.name,
|
|
description: this.description,
|
|
imagePath: this.imagePath,
|
|
libraryId: this.libraryId,
|
|
addedAt: this.createdAt.valueOf(),
|
|
updatedAt: this.updatedAt.valueOf()
|
|
})
|
|
}
|
|
|
|
static updateFromOld(oldAuthor) {
|
|
const author = this.getFromOld(oldAuthor)
|
|
return this.update(author, {
|
|
where: {
|
|
id: author.id
|
|
}
|
|
})
|
|
}
|
|
|
|
static createFromOld(oldAuthor) {
|
|
const author = this.getFromOld(oldAuthor)
|
|
return this.create(author)
|
|
}
|
|
|
|
static createBulkFromOld(oldAuthors) {
|
|
const authors = oldAuthors.map(this.getFromOld)
|
|
return this.bulkCreate(authors)
|
|
}
|
|
|
|
static getFromOld(oldAuthor) {
|
|
return {
|
|
id: oldAuthor.id,
|
|
name: oldAuthor.name,
|
|
lastFirst: oldAuthor.lastFirst,
|
|
asin: oldAuthor.asin,
|
|
description: oldAuthor.description,
|
|
imagePath: oldAuthor.imagePath,
|
|
libraryId: oldAuthor.libraryId
|
|
}
|
|
}
|
|
|
|
static removeById(authorId) {
|
|
return this.destroy({
|
|
where: {
|
|
id: authorId
|
|
}
|
|
})
|
|
}
|
|
|
|
/**
|
|
* Initialize model
|
|
* @param {import('../Database').sequelize} sequelize
|
|
*/
|
|
static init(sequelize) {
|
|
super.init({
|
|
id: {
|
|
type: DataTypes.UUID,
|
|
defaultValue: DataTypes.UUIDV4,
|
|
primaryKey: true
|
|
},
|
|
name: DataTypes.STRING,
|
|
lastFirst: DataTypes.STRING,
|
|
asin: DataTypes.STRING,
|
|
description: DataTypes.TEXT,
|
|
imagePath: DataTypes.STRING
|
|
}, {
|
|
sequelize,
|
|
modelName: 'author',
|
|
indexes: [
|
|
{
|
|
fields: [{
|
|
name: 'name',
|
|
collate: 'NOCASE'
|
|
}]
|
|
},
|
|
{
|
|
fields: [{
|
|
name: 'lastFirst',
|
|
collate: 'NOCASE'
|
|
}]
|
|
},
|
|
{
|
|
fields: ['libraryId']
|
|
}
|
|
]
|
|
})
|
|
|
|
const { library } = sequelize.models
|
|
library.hasMany(Author, {
|
|
onDelete: 'CASCADE'
|
|
})
|
|
Author.belongsTo(library)
|
|
}
|
|
}
|
|
module.exports = Author
|