mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
91 lines
2.3 KiB
Go
91 lines
2.3 KiB
Go
package api
|
|
|
|
import (
|
|
"github.com/astaxie/beego"
|
|
"github.com/deluan/gosonic/api/responses"
|
|
"github.com/deluan/gosonic/domain"
|
|
"github.com/deluan/gosonic/engine"
|
|
"github.com/deluan/gosonic/utils"
|
|
)
|
|
|
|
type PlaylistsController struct {
|
|
BaseAPIController
|
|
pls engine.Playlists
|
|
}
|
|
|
|
func (c *PlaylistsController) Prepare() {
|
|
utils.ResolveDependencies(&c.pls)
|
|
}
|
|
|
|
func (c *PlaylistsController) GetAll() {
|
|
allPls, err := c.pls.GetAll()
|
|
if err != nil {
|
|
beego.Error(err)
|
|
c.SendError(responses.ErrorGeneric, "Internal error")
|
|
}
|
|
playlists := make([]responses.Playlist, len(allPls))
|
|
for i, p := range allPls {
|
|
playlists[i].Id = p.Id
|
|
playlists[i].Name = p.Name
|
|
playlists[i].Comment = "Original: " + p.FullPath
|
|
playlists[i].SongCount = len(p.Tracks)
|
|
playlists[i].Duration = p.Duration
|
|
playlists[i].Owner = p.Owner
|
|
playlists[i].Public = p.Public
|
|
}
|
|
response := c.NewEmpty()
|
|
response.Playlists = &responses.Playlists{Playlist: playlists}
|
|
c.SendResponse(response)
|
|
}
|
|
|
|
func (c *PlaylistsController) Get() {
|
|
id := c.RequiredParamString("id", "id parameter required")
|
|
|
|
pinfo, err := c.pls.Get(id)
|
|
switch {
|
|
case err == domain.ErrNotFound:
|
|
beego.Error(err, "Id:", id)
|
|
c.SendError(responses.ErrorDataNotFound, "Directory not found")
|
|
case err != nil:
|
|
beego.Error(err)
|
|
c.SendError(responses.ErrorGeneric, "Internal Error")
|
|
}
|
|
|
|
response := c.NewEmpty()
|
|
response.Playlist = c.buildPlaylist(pinfo)
|
|
c.SendResponse(response)
|
|
}
|
|
|
|
func (c *PlaylistsController) Create() {
|
|
songIds := c.RequiredParamStrings("songId", "Required parameter songId is missing")
|
|
name := c.RequiredParamString("name", "Required parameter name is missing")
|
|
err := c.pls.Create(name, songIds)
|
|
if err != nil {
|
|
beego.Error(err)
|
|
c.SendError(responses.ErrorGeneric, "Internal Error")
|
|
}
|
|
c.SendEmptyResponse()
|
|
}
|
|
|
|
func (c *PlaylistsController) Delete() {
|
|
id := c.RequiredParamString("id", "Required parameter id is missing")
|
|
err := c.pls.Delete(id)
|
|
if err != nil {
|
|
beego.Error(err)
|
|
c.SendError(responses.ErrorGeneric, "Internal Error")
|
|
}
|
|
c.SendEmptyResponse()
|
|
}
|
|
|
|
func (c *PlaylistsController) buildPlaylist(d *engine.PlaylistInfo) *responses.PlaylistWithSongs {
|
|
pls := &responses.PlaylistWithSongs{}
|
|
pls.Id = d.Id
|
|
pls.Name = d.Name
|
|
pls.SongCount = d.SongCount
|
|
pls.Owner = d.Owner
|
|
pls.Duration = d.Duration
|
|
pls.Public = d.Public
|
|
|
|
pls.Entry = c.ToChildren(d.Entries)
|
|
return pls
|
|
}
|