audiobookshelf/server/objects/metadata/PodcastMetadata.js

74 lines
1.8 KiB
JavaScript
Raw Normal View History

2022-03-09 02:31:44 +01:00
class PodcastMetadata {
constructor(metadata) {
this.title = null
2022-03-19 01:16:54 +01:00
this.author = null
2022-03-09 02:31:44 +01:00
this.description = null
this.releaseDate = null
this.genres = []
this.feedUrl = null
this.imageUrl = null
2022-03-09 02:31:44 +01:00
this.itunesPageUrl = null
this.itunesId = null
this.itunesArtistId = null
this.explicit = false
this.language = null
2022-03-09 02:31:44 +01:00
if (metadata) {
this.construct(metadata)
}
}
construct(metadata) {
this.title = metadata.title
2022-03-19 01:16:54 +01:00
this.author = metadata.author
2022-03-09 02:31:44 +01:00
this.description = metadata.description
this.releaseDate = metadata.releaseDate
this.genres = [...metadata.genres]
this.feedUrl = metadata.feedUrl
this.imageUrl = metadata.imageUrl
2022-03-09 02:31:44 +01:00
this.itunesPageUrl = metadata.itunesPageUrl
this.itunesId = metadata.itunesId
this.itunesArtistId = metadata.itunesArtistId
this.explicit = metadata.explicit
this.language = metadata.language || null
2022-03-09 02:31:44 +01:00
}
toJSON() {
return {
title: this.title,
2022-03-19 01:16:54 +01:00
author: this.author,
2022-03-09 02:31:44 +01:00
description: this.description,
releaseDate: this.releaseDate,
genres: [...this.genres],
feedUrl: this.feedUrl,
imageUrl: this.imageUrl,
2022-03-09 02:31:44 +01:00
itunesPageUrl: this.itunesPageUrl,
itunesId: this.itunesId,
itunesArtistId: this.itunesArtistId,
explicit: this.explicit,
language: this.language
2022-03-09 02:31:44 +01:00
}
}
toJSONExpanded() {
return this.toJSON()
}
clone() {
return new PodcastMetadata(this.toJSON())
}
searchQuery(query) { // Returns key if match is found
2022-03-19 01:16:54 +01:00
var keysToCheck = ['title', 'author', 'itunesId', 'itunesArtistId']
for (var key of keysToCheck) {
if (this[key] && String(this[key]).toLowerCase().includes(query)) {
return {
matchKey: key,
matchText: this[key]
}
}
}
return null
}
2022-03-09 02:31:44 +01:00
}
module.exports = PodcastMetadata