feat(subsonic): gracefully handle missing podcast episode paths when returning playlists

fixes #345

* fix return playlist if file not found and do not add to playlist not downloaded podcast

---------

Co-authored-by: sentriz <senan@senan.xyz>
This commit is contained in:
archekb
2023-08-15 16:49:18 +02:00
committed by GitHub
parent 7d2c4fbb5c
commit d5f8e23a89
2 changed files with 8 additions and 2 deletions

View File

@@ -4,6 +4,7 @@ import (
"encoding/base64"
"errors"
"fmt"
"log"
"net/http"
"sort"
"time"
@@ -208,8 +209,10 @@ func playlistRender(c *Controller, params params.Params, playlistID string, play
for _, path := range playlist.Items {
file, err := specidpaths.Lookup(c.DB, PathsOf(c.MusicPaths), c.PodcastsPath, path)
if err != nil {
return nil, fmt.Errorf("lookup path %q: %w", path, err)
log.Printf("error looking up path %q: %s", path, err)
continue
}
var trch *spec.TrackChild
switch id := file.SID(); id.Type {
case specid.Track:
@@ -237,5 +240,8 @@ func playlistRender(c *Controller, params params.Params, playlistID string, play
trch.TranscodedSuffix = transcodeSuffix
resp.List = append(resp.List, trch)
}
resp.SongCount = len(resp.List)
return resp, nil
}

View File

@@ -27,7 +27,7 @@ func Locate(dbc *db.DB, podcastsPath string, id specid.ID) (Result, error) {
}
case specid.PodcastEpisode:
var pe db.PodcastEpisode
if err := dbc.Where("id=?", id.Value).Find(&pe).Error; err == nil {
if err := dbc.Where("id=? AND status=?", id.Value, db.PodcastEpisodeStatusCompleted).Find(&pe).Error; err == nil {
pe.AbsP = filepath.Join(podcastsPath, pe.Path)
return &pe, err
}