audiobookshelf/server/objects/User.js

119 lines
2.9 KiB
JavaScript
Raw Normal View History

2021-08-18 00:01:11 +02:00
class User {
constructor(user) {
this.id = null
this.username = null
this.pash = null
this.type = null
this.stream = null
this.token = null
2021-08-27 14:01:47 +02:00
this.isActive = true
2021-08-18 00:01:11 +02:00
this.createdAt = null
this.audiobooks = null
this.settings = {}
2021-08-18 00:01:11 +02:00
if (user) {
this.construct(user)
}
}
getDefaultUserSettings() {
return {
orderBy: 'book.title',
orderDesc: false,
filterBy: 'all',
playbackRate: 1,
bookshelfCoverSize: 120
}
}
2021-08-18 00:01:11 +02:00
toJSON() {
return {
id: this.id,
username: this.username,
pash: this.pash,
type: this.type,
stream: this.stream,
token: this.token,
audiobooks: this.audiobooks,
2021-08-27 14:01:47 +02:00
isActive: this.isActive,
createdAt: this.createdAt,
settings: this.settings
2021-08-18 00:01:11 +02:00
}
}
toJSONForBrowser() {
return {
id: this.id,
username: this.username,
type: this.type,
stream: this.stream,
token: this.token,
audiobooks: this.audiobooks,
2021-08-27 14:01:47 +02:00
isActive: this.isActive,
createdAt: this.createdAt,
settings: this.settings
2021-08-18 00:01:11 +02:00
}
}
construct(user) {
this.id = user.id
this.username = user.username
this.pash = user.pash
this.type = user.type
2021-08-27 14:01:47 +02:00
this.stream = user.stream || null
2021-08-18 00:01:11 +02:00
this.token = user.token
this.audiobooks = user.audiobooks || null
2021-08-27 14:01:47 +02:00
this.isActive = (user.isActive === undefined || user.id === 'root') ? true : !!user.isActive
this.createdAt = user.createdAt || Date.now()
this.settings = user.settings || this.getDefaultUserSettings()
2021-08-18 00:01:11 +02:00
}
updateAudiobookProgress(stream) {
if (!this.audiobooks) this.audiobooks = {}
if (!this.audiobooks[stream.audiobookId]) {
this.audiobooks[stream.audiobookId] = {
audiobookId: stream.audiobookId,
totalDuration: stream.totalDuration,
startedAt: Date.now()
}
}
this.audiobooks[stream.audiobookId].lastUpdate = Date.now()
this.audiobooks[stream.audiobookId].progress = stream.clientProgress
this.audiobooks[stream.audiobookId].currentTime = stream.clientCurrentTime
}
// Returns Boolean If update was made
updateSettings(settings) {
if (!this.settings) {
this.settings = { ...settings }
return true
}
var madeUpdates = false
for (const key in this.settings) {
if (settings[key] !== undefined && this.settings[key] !== settings[key]) {
this.settings[key] = settings[key]
madeUpdates = true
}
}
// Check if new settings update has keys not currently in user settings
for (const key in settings) {
if (settings[key] !== undefined && this.settings[key] === undefined) {
this.settings[key] = settings[key]
madeUpdates = true
}
}
return madeUpdates
}
2021-08-18 00:01:11 +02:00
resetAudiobookProgress(audiobookId) {
if (!this.audiobooks || !this.audiobooks[audiobookId]) {
return false
}
delete this.audiobooks[audiobookId]
return true
}
}
module.exports = User