mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 05:27:37 +03:00
getAlbumList2.view done
This commit is contained in:
parent
4b38f9238c
commit
82576223dc
4 changed files with 28 additions and 0 deletions
|
@ -53,6 +53,29 @@ func (c *AlbumListController) GetAlbumList() {
|
||||||
c.SendResponse(response)
|
c.SendResponse(response)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *AlbumListController) GetAlbumList2() {
|
||||||
|
typ := c.RequiredParamString("type", "Required string parameter 'type' is not present")
|
||||||
|
method, found := c.types[typ]
|
||||||
|
|
||||||
|
if !found {
|
||||||
|
beego.Error("albumList2 type", typ, "not implemented!")
|
||||||
|
c.SendError(responses.ErrorGeneric, "Not implemented!")
|
||||||
|
}
|
||||||
|
|
||||||
|
offset := c.ParamInt("offset", 0)
|
||||||
|
size := utils.MinInt(c.ParamInt("size", 0), 500)
|
||||||
|
|
||||||
|
albums, err := method(offset, size)
|
||||||
|
if err != nil {
|
||||||
|
beego.Error("Error retrieving albums:", err)
|
||||||
|
c.SendError(responses.ErrorGeneric, "Internal Error")
|
||||||
|
}
|
||||||
|
|
||||||
|
response := c.NewEmpty()
|
||||||
|
response.AlbumList2 = &responses.AlbumList{Album: c.ToAlbums(albums)}
|
||||||
|
c.SendResponse(response)
|
||||||
|
}
|
||||||
|
|
||||||
func (c *AlbumListController) GetStarred() {
|
func (c *AlbumListController) GetStarred() {
|
||||||
albums, mediaFiles, err := c.listGen.GetAllStarred()
|
albums, mediaFiles, err := c.listGen.GetAllStarred()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -154,6 +154,9 @@ func (c *BaseAPIController) ToAlbum(entry engine.Entry) responses.Child {
|
||||||
album := c.ToChild(entry)
|
album := c.ToChild(entry)
|
||||||
album.Name = album.Title
|
album.Name = album.Title
|
||||||
album.Title = ""
|
album.Title = ""
|
||||||
|
album.Parent = ""
|
||||||
|
album.Album = ""
|
||||||
|
album.AlbumId = ""
|
||||||
return album
|
return album
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,7 @@ type Subsonic struct {
|
||||||
Directory *Directory `xml:"directory,omitempty" json:"directory,omitempty"`
|
Directory *Directory `xml:"directory,omitempty" json:"directory,omitempty"`
|
||||||
User *User `xml:"user,omitempty" json:"user,omitempty"`
|
User *User `xml:"user,omitempty" json:"user,omitempty"`
|
||||||
AlbumList *AlbumList `xml:"albumList,omitempty" json:"albumList,omitempty"`
|
AlbumList *AlbumList `xml:"albumList,omitempty" json:"albumList,omitempty"`
|
||||||
|
AlbumList2 *AlbumList `xml:"albumList2,omitempty" json:"albumList2,omitempty"`
|
||||||
Playlists *Playlists `xml:"playlists,omitempty" json:"playlists,omitempty"`
|
Playlists *Playlists `xml:"playlists,omitempty" json:"playlists,omitempty"`
|
||||||
Playlist *PlaylistWithSongs `xml:"playlist,omitempty" json:"playlist,omitempty"`
|
Playlist *PlaylistWithSongs `xml:"playlist,omitempty" json:"playlist,omitempty"`
|
||||||
SearchResult2 *SearchResult2 `xml:"searchResult2,omitempty" json:"searchResult2,omitempty"`
|
SearchResult2 *SearchResult2 `xml:"searchResult2,omitempty" json:"searchResult2,omitempty"`
|
||||||
|
|
|
@ -40,6 +40,7 @@ func mapEndpoints() {
|
||||||
beego.NSRouter("/setRating.view", &api.MediaAnnotationController{}, "*:SetRating"),
|
beego.NSRouter("/setRating.view", &api.MediaAnnotationController{}, "*:SetRating"),
|
||||||
|
|
||||||
beego.NSRouter("/getAlbumList.view", &api.AlbumListController{}, "*:GetAlbumList"),
|
beego.NSRouter("/getAlbumList.view", &api.AlbumListController{}, "*:GetAlbumList"),
|
||||||
|
beego.NSRouter("/getAlbumList2.view", &api.AlbumListController{}, "*:GetAlbumList2"),
|
||||||
beego.NSRouter("/getStarred.view", &api.AlbumListController{}, "*:GetStarred"),
|
beego.NSRouter("/getStarred.view", &api.AlbumListController{}, "*:GetStarred"),
|
||||||
beego.NSRouter("/getNowPlaying.view", &api.AlbumListController{}, "*:GetNowPlaying"),
|
beego.NSRouter("/getNowPlaying.view", &api.AlbumListController{}, "*:GetNowPlaying"),
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue