Update:Cache feed xml

This commit is contained in:
advplyr 2022-06-07 18:37:37 -05:00
parent fbbceaa642
commit 46fc89e247

View File

@ -20,6 +20,9 @@ class Feed {
this.createdAt = null this.createdAt = null
this.updatedAt = null this.updatedAt = null
// Cached xml
this.xml = null
if (feed) { if (feed) {
this.construct(feed) this.construct(feed)
} }
@ -108,11 +111,14 @@ class Feed {
} }
buildXml() { buildXml() {
if (this.xml) return this.xml
const pod = new Podcast(this.meta.getPodcastMeta()) const pod = new Podcast(this.meta.getPodcastMeta())
this.episodes.forEach((ep) => { this.episodes.forEach((ep) => {
pod.addItem(ep.getPodcastEpisode()) pod.addItem(ep.getPodcastEpisode())
}) })
return pod.buildXml() this.xml = pod.buildXml()
return this.xml
} }
} }
module.exports = Feed module.exports = Feed