mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 22:17:37 +03:00
Started implementing getIndex, now with TDD (brought to you by DI)!
This commit is contained in:
parent
b2cdf8cadb
commit
2bb4c74ba6
7 changed files with 129 additions and 21 deletions
|
@ -5,6 +5,7 @@ import (
|
|||
"github.com/deluan/gosonic/repositories"
|
||||
"github.com/deluan/gosonic/utils"
|
||||
"github.com/karlkfi/inject"
|
||||
"github.com/deluan/gosonic/api/responses"
|
||||
)
|
||||
|
||||
type GetIndexesController struct {
|
||||
|
@ -17,7 +18,16 @@ func (c *GetIndexesController) Prepare() {
|
|||
}
|
||||
|
||||
func (c *GetIndexesController) Get() {
|
||||
if c.repo == nil {
|
||||
c.CustomAbort(500, "INJECTION NOT WORKING")
|
||||
indexes, err := c.repo.GetAll()
|
||||
if err != nil {
|
||||
beego.Error("Error retrieving Indexes:", err)
|
||||
c.CustomAbort(200, string(responses.NewError(responses.ERROR_GENERIC, "Internal Error")))
|
||||
}
|
||||
res := &responses.ArtistIndex{}
|
||||
res.Index = make([]responses.Index, len(indexes))
|
||||
for i, idx := range indexes {
|
||||
res.Index[i].Name = idx.Id
|
||||
}
|
||||
|
||||
c.Ctx.Output.Body(responses.NewXML(res))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue