mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-04-02 01:16:54 +02:00
Fix:Podcast episode downloads where RSS feed uses the same title #1802
This commit is contained in:
parent
7a0f27e3cc
commit
ea79948122
@ -84,6 +84,13 @@ class PodcastManager {
|
|||||||
SocketAuthority.emitter('episode_download_started', podcastEpisodeDownload.toJSONForClient())
|
SocketAuthority.emitter('episode_download_started', podcastEpisodeDownload.toJSONForClient())
|
||||||
this.currentDownload = podcastEpisodeDownload
|
this.currentDownload = podcastEpisodeDownload
|
||||||
|
|
||||||
|
// If this file already exists then append the episode id to the filename
|
||||||
|
// e.g. "/tagesschau 20 Uhr.mp3" becomes "/tagesschau 20 Uhr (ep_asdfasdf).mp3"
|
||||||
|
// this handles podcasts where every title is the same (ref https://github.com/advplyr/audiobookshelf/issues/1802)
|
||||||
|
if (await fs.pathExists(this.currentDownload.targetPath)) {
|
||||||
|
this.currentDownload.appendEpisodeId = true
|
||||||
|
}
|
||||||
|
|
||||||
// Ignores all added files to this dir
|
// Ignores all added files to this dir
|
||||||
this.watcher.addIgnoreDir(this.currentDownload.libraryItem.path)
|
this.watcher.addIgnoreDir(this.currentDownload.libraryItem.path)
|
||||||
|
|
||||||
|
@ -15,6 +15,8 @@ class PodcastEpisodeDownload {
|
|||||||
this.isFinished = false
|
this.isFinished = false
|
||||||
this.failed = false
|
this.failed = false
|
||||||
|
|
||||||
|
this.appendEpisodeId = false
|
||||||
|
|
||||||
this.startedAt = null
|
this.startedAt = null
|
||||||
this.createdAt = null
|
this.createdAt = null
|
||||||
this.finishedAt = null
|
this.finishedAt = null
|
||||||
@ -29,6 +31,7 @@ class PodcastEpisodeDownload {
|
|||||||
libraryId: this.libraryId || null,
|
libraryId: this.libraryId || null,
|
||||||
isFinished: this.isFinished,
|
isFinished: this.isFinished,
|
||||||
failed: this.failed,
|
failed: this.failed,
|
||||||
|
appendEpisodeId: this.appendEpisodeId,
|
||||||
startedAt: this.startedAt,
|
startedAt: this.startedAt,
|
||||||
createdAt: this.createdAt,
|
createdAt: this.createdAt,
|
||||||
finishedAt: this.finishedAt,
|
finishedAt: this.finishedAt,
|
||||||
@ -52,7 +55,9 @@ class PodcastEpisodeDownload {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get targetFilename() {
|
get targetFilename() {
|
||||||
return sanitizeFilename(`${this.podcastEpisode.title}.${this.fileExtension}`)
|
const appendage = this.appendEpisodeId ? ` (${this.podcastEpisode.id})` : ''
|
||||||
|
const filename = `${this.podcastEpisode.title}${appendage}.${this.fileExtension}`
|
||||||
|
return sanitizeFilename(filename)
|
||||||
}
|
}
|
||||||
get targetPath() {
|
get targetPath() {
|
||||||
return Path.join(this.libraryItem.path, this.targetFilename)
|
return Path.join(this.libraryItem.path, this.targetFilename)
|
||||||
|
@ -109,7 +109,7 @@ class PodcastEpisode {
|
|||||||
}
|
}
|
||||||
get size() { return this.audioFile.metadata.size }
|
get size() { return this.audioFile.metadata.size }
|
||||||
get enclosureUrl() {
|
get enclosureUrl() {
|
||||||
return this.enclosure ? this.enclosure.url : null
|
return this.enclosure?.url || null
|
||||||
}
|
}
|
||||||
get pubYear() {
|
get pubYear() {
|
||||||
if (!this.publishedAt) return null
|
if (!this.publishedAt) return null
|
||||||
|
Loading…
Reference in New Issue
Block a user