const { getId } = require('../../utils/index') class Author { constructor(author) { this.id = null this.asin = null this.name = null this.imagePath = null this.relImagePath = null this.addedAt = null this.updatedAt = null if (author) { this.construct(author) } } construct(author) { this.id = author.id this.asin = author.asin this.name = author.name this.imagePath = author.imagePath this.relImagePath = author.relImagePath this.addedAt = author.addedAt this.updatedAt = author.updatedAt } toJSON() { return { id: this.id, asin: this.asin, name: this.name, imagePath: this.imagePath, relImagePath: this.relImagePath, addedAt: this.addedAt, lastUpdate: this.updatedAt } } toJSONMinimal() { return { id: this.id, name: this.name } } setData(data) { this.id = getId('aut') this.name = data.name this.asin = data.asin || null this.imagePath = data.imagePath || null this.relImagePath = data.relImagePath || null this.addedAt = Date.now() this.updatedAt = Date.now() } } module.exports = Author