mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-20 19:06:06 +01:00
145 lines
4.0 KiB
JavaScript
145 lines
4.0 KiB
JavaScript
const date = require('date-and-time')
|
|
const { getId } = require('../utils/index')
|
|
const { PlayMethod } = require('../utils/constants')
|
|
const BookMetadata = require('./metadata/BookMetadata')
|
|
const PodcastMetadata = require('./metadata/PodcastMetadata')
|
|
|
|
class PlaybackSession {
|
|
constructor(session) {
|
|
this.id = null
|
|
this.userId = null
|
|
this.libraryItemId = null
|
|
this.mediaEntityId = null
|
|
|
|
this.mediaType = null
|
|
this.mediaMetadata = null
|
|
this.duration = null
|
|
|
|
this.playMethod = null
|
|
|
|
this.date = null
|
|
this.dayOfWeek = null
|
|
|
|
this.timeListening = null
|
|
this.startedAt = null
|
|
this.updatedAt = null
|
|
|
|
// Not saved in DB
|
|
this.lastSave = 0
|
|
this.audioTracks = []
|
|
this.currentTime = 0
|
|
this.stream = null
|
|
|
|
if (session) {
|
|
this.construct(session)
|
|
}
|
|
}
|
|
|
|
toJSON() {
|
|
return {
|
|
id: this.id,
|
|
sessionType: this.sessionType,
|
|
userId: this.userId,
|
|
libraryItemId: this.libraryItemId,
|
|
mediaEntityId: this.mediaEntityId,
|
|
mediaType: this.mediaType,
|
|
mediaMetadata: this.mediaMetadata ? this.mediaMetadata.toJSON() : null,
|
|
duration: this.duration,
|
|
playMethod: this.playMethod,
|
|
date: this.date,
|
|
dayOfWeek: this.dayOfWeek,
|
|
timeListening: this.timeListening,
|
|
lastUpdate: this.lastUpdate,
|
|
updatedAt: this.updatedAt
|
|
}
|
|
}
|
|
|
|
toJSONForClient() {
|
|
return {
|
|
id: this.id,
|
|
sessionType: this.sessionType,
|
|
userId: this.userId,
|
|
libraryItemId: this.libraryItemId,
|
|
mediaEntityId: this.mediaEntityId,
|
|
mediaType: this.mediaType,
|
|
mediaMetadata: this.mediaMetadata ? this.mediaMetadata.toJSON() : null,
|
|
duration: this.duration,
|
|
playMethod: this.playMethod,
|
|
date: this.date,
|
|
dayOfWeek: this.dayOfWeek,
|
|
timeListening: this.timeListening,
|
|
lastUpdate: this.lastUpdate,
|
|
updatedAt: this.updatedAt,
|
|
audioTracks: this.audioTracks.map(at => at.toJSON()),
|
|
currentTime: this.currentTime
|
|
}
|
|
}
|
|
|
|
construct(session) {
|
|
this.id = session.id
|
|
this.sessionType = session.sessionType
|
|
this.userId = session.userId
|
|
this.libraryItemId = session.libraryItemId
|
|
this.mediaEntityId = session.mediaEntityId
|
|
this.mediaType = session.mediaType
|
|
this.duration = session.duration
|
|
this.playMethod = session.playMethod
|
|
|
|
this.mediaMetadata = null
|
|
if (session.mediaMetadata) {
|
|
if (this.mediaType === 'book') {
|
|
this.mediaMetadata = new BookMetadata(session.mediaMetadata)
|
|
} else if (this.mediaType === 'podcast') {
|
|
this.mediaMetadata = new PodcastMetadata(session.mediaMetadata)
|
|
}
|
|
}
|
|
|
|
this.date = session.date
|
|
this.dayOfWeek = session.dayOfWeek
|
|
|
|
this.timeListening = session.timeListening || null
|
|
this.startedAt = session.startedAt
|
|
this.updatedAt = session.updatedAt || null
|
|
}
|
|
|
|
get progress() { // Value between 0 and 1
|
|
if (!this.duration) return 0
|
|
return Math.max(0, Math.min(this.currentTime / this.duration, 1))
|
|
}
|
|
|
|
setData(libraryItem, mediaEntity, user) {
|
|
this.id = getId('play')
|
|
this.userId = user.id
|
|
this.libraryItemId = libraryItem.id
|
|
this.mediaEntityId = mediaEntity.id
|
|
this.mediaType = libraryItem.mediaType
|
|
this.mediaMetadata = libraryItem.media.metadata.clone()
|
|
this.duration = mediaEntity.duration
|
|
|
|
this.timeListening = 0
|
|
this.date = date.format(new Date(), 'YYYY-MM-DD')
|
|
this.dayOfWeek = date.format(new Date(), 'dddd')
|
|
this.startedAt = Date.now()
|
|
this.updatedAt = Date.now()
|
|
}
|
|
|
|
addListeningTime(timeListened) {
|
|
if (!timeListened || isNaN(timeListened)) return
|
|
|
|
if (!this.date) {
|
|
// Set date info on first listening update
|
|
this.date = date.format(new Date(), 'YYYY-MM-DD')
|
|
this.dayOfWeek = date.format(new Date(), 'dddd')
|
|
}
|
|
|
|
this.timeListening += timeListened
|
|
this.updatedAt = Date.now()
|
|
}
|
|
|
|
// New date since start of listening session
|
|
checkDateRollover() {
|
|
if (!this.date) return false
|
|
return date.format(new Date(), 'YYYY-MM-DD') !== this.date
|
|
}
|
|
}
|
|
module.exports = PlaybackSession |