mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-11-14 03:55:20 +01:00
135 lines
3.7 KiB
JavaScript
135 lines
3.7 KiB
JavaScript
const Logger = require('../../Logger')
|
|
const { areEquivalent, copyValue, cleanStringForSearch, getTitleIgnorePrefix, getTitlePrefixAtEnd } = require('../../utils/index')
|
|
|
|
class PodcastMetadata {
|
|
constructor(metadata) {
|
|
this.title = null
|
|
this.author = null
|
|
this.description = null
|
|
this.releaseDate = null
|
|
this.genres = []
|
|
this.feedUrl = null
|
|
this.imageUrl = null
|
|
this.itunesPageUrl = null
|
|
this.itunesId = null
|
|
this.itunesArtistId = null
|
|
this.explicit = false
|
|
this.language = null
|
|
|
|
if (metadata) {
|
|
this.construct(metadata)
|
|
}
|
|
}
|
|
|
|
construct(metadata) {
|
|
this.title = metadata.title
|
|
this.author = metadata.author
|
|
this.description = metadata.description
|
|
this.releaseDate = metadata.releaseDate
|
|
this.genres = [...metadata.genres]
|
|
this.feedUrl = metadata.feedUrl
|
|
this.imageUrl = metadata.imageUrl
|
|
this.itunesPageUrl = metadata.itunesPageUrl
|
|
this.itunesId = metadata.itunesId
|
|
this.itunesArtistId = metadata.itunesArtistId
|
|
this.explicit = metadata.explicit
|
|
this.language = metadata.language || null
|
|
}
|
|
|
|
toJSON() {
|
|
return {
|
|
title: this.title,
|
|
author: this.author,
|
|
description: this.description,
|
|
releaseDate: this.releaseDate,
|
|
genres: [...this.genres],
|
|
feedUrl: this.feedUrl,
|
|
imageUrl: this.imageUrl,
|
|
itunesPageUrl: this.itunesPageUrl,
|
|
itunesId: this.itunesId,
|
|
itunesArtistId: this.itunesArtistId,
|
|
explicit: this.explicit,
|
|
language: this.language
|
|
}
|
|
}
|
|
|
|
toJSONMinified() {
|
|
return {
|
|
title: this.title,
|
|
titleIgnorePrefix: this.titlePrefixAtEnd,
|
|
author: this.author,
|
|
description: this.description,
|
|
releaseDate: this.releaseDate,
|
|
genres: [...this.genres],
|
|
feedUrl: this.feedUrl,
|
|
imageUrl: this.imageUrl,
|
|
itunesPageUrl: this.itunesPageUrl,
|
|
itunesId: this.itunesId,
|
|
itunesArtistId: this.itunesArtistId,
|
|
explicit: this.explicit,
|
|
language: this.language
|
|
}
|
|
}
|
|
|
|
toJSONExpanded() {
|
|
return this.toJSONMinified()
|
|
}
|
|
|
|
clone() {
|
|
return new PodcastMetadata(this.toJSON())
|
|
}
|
|
|
|
get titleIgnorePrefix() {
|
|
return getTitleIgnorePrefix(this.title)
|
|
}
|
|
|
|
get titlePrefixAtEnd() {
|
|
return getTitlePrefixAtEnd(this.title)
|
|
}
|
|
|
|
searchQuery(query) { // Returns key if match is found
|
|
var keysToCheck = ['title', 'author', 'itunesId', 'itunesArtistId']
|
|
for (var key of keysToCheck) {
|
|
if (this[key] && cleanStringForSearch(String(this[key])).includes(query)) {
|
|
return {
|
|
matchKey: key,
|
|
matchText: this[key]
|
|
}
|
|
}
|
|
}
|
|
return null
|
|
}
|
|
|
|
setData(mediaMetadata = {}) {
|
|
this.title = mediaMetadata.title || null
|
|
this.author = mediaMetadata.author || null
|
|
this.description = mediaMetadata.description || null
|
|
this.releaseDate = mediaMetadata.releaseDate || null
|
|
this.feedUrl = mediaMetadata.feedUrl || null
|
|
this.imageUrl = mediaMetadata.imageUrl || null
|
|
this.itunesPageUrl = mediaMetadata.itunesPageUrl || null
|
|
this.itunesId = mediaMetadata.itunesId || null
|
|
this.itunesArtistId = mediaMetadata.itunesArtistId || null
|
|
this.explicit = !!mediaMetadata.explicit
|
|
this.language = mediaMetadata.language || null
|
|
if (mediaMetadata.genres && mediaMetadata.genres.length) {
|
|
this.genres = [...mediaMetadata.genres]
|
|
}
|
|
}
|
|
|
|
update(payload) {
|
|
var json = this.toJSON()
|
|
var hasUpdates = false
|
|
for (const key in json) {
|
|
if (payload[key] !== undefined) {
|
|
if (!areEquivalent(payload[key], json[key])) {
|
|
this[key] = copyValue(payload[key])
|
|
Logger.debug('[PodcastMetadata] Key updated', key, this[key])
|
|
hasUpdates = true
|
|
}
|
|
}
|
|
}
|
|
return hasUpdates
|
|
}
|
|
}
|
|
module.exports = PodcastMetadata |