getAlbumList2.view done

This commit is contained in:
Deluan 2016-03-27 23:04:05 -04:00
parent 4b38f9238c
commit 82576223dc
4 changed files with 28 additions and 0 deletions

View file

@ -53,6 +53,29 @@ func (c *AlbumListController) GetAlbumList() {
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() {
albums, mediaFiles, err := c.listGen.GetAllStarred()
if err != nil {

View file

@ -154,6 +154,9 @@ func (c *BaseAPIController) ToAlbum(entry engine.Entry) responses.Child {
album := c.ToChild(entry)
album.Name = album.Title
album.Title = ""
album.Parent = ""
album.Album = ""
album.AlbumId = ""
return album
}

View file

@ -16,6 +16,7 @@ type Subsonic struct {
Directory *Directory `xml:"directory,omitempty" json:"directory,omitempty"`
User *User `xml:"user,omitempty" json:"user,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"`
Playlist *PlaylistWithSongs `xml:"playlist,omitempty" json:"playlist,omitempty"`
SearchResult2 *SearchResult2 `xml:"searchResult2,omitempty" json:"searchResult2,omitempty"`

View file

@ -40,6 +40,7 @@ func mapEndpoints() {
beego.NSRouter("/setRating.view", &api.MediaAnnotationController{}, "*:SetRating"),
beego.NSRouter("/getAlbumList.view", &api.AlbumListController{}, "*:GetAlbumList"),
beego.NSRouter("/getAlbumList2.view", &api.AlbumListController{}, "*:GetAlbumList2"),
beego.NSRouter("/getStarred.view", &api.AlbumListController{}, "*:GetStarred"),
beego.NSRouter("/getNowPlaying.view", &api.AlbumListController{}, "*:GetNowPlaying"),