audiobookshelf/server/objects/entities/Series.js

46 lines
798 B
JavaScript
Raw Normal View History

const { getId } = require('../../utils/index')
2022-03-09 02:31:44 +01:00
class Series {
constructor(series) {
this.id = null
this.name = null
this.addedAt = null
this.updatedAt = null
if (series) {
this.construct(series)
}
}
construct(series) {
this.id = series.id
this.name = series.name
this.addedAt = series.addedAt
this.updatedAt = series.updatedAt
}
toJSON() {
return {
id: this.id,
name: this.name,
addedAt: this.addedAt,
updatedAt: this.updatedAt
}
}
toJSONMinimal(sequence) {
2022-03-09 02:31:44 +01:00
return {
id: this.id,
name: this.name,
sequence
2022-03-09 02:31:44 +01:00
}
}
setData(data) {
this.id = getId('ser')
this.name = data.name
this.addedAt = Date.now()
this.updatedAt = Date.now()
}
2022-03-09 02:31:44 +01:00
}
module.exports = Series