95 lines
2.4 KiB
Go
95 lines
2.4 KiB
Go
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/sentriz/gonic/db"
|
|
"github.com/sentriz/gonic/subsonic"
|
|
)
|
|
|
|
func (c *Controller) GetIndexes(w http.ResponseWriter, r *http.Request) {
|
|
// we are browsing by folder, but the subsonic docs show sub <artist> elements
|
|
// for this, so we're going to return root directories as "artists"
|
|
var folders []*db.Folder
|
|
c.DB.Where("parent_id = ?", 1).Find(&folders)
|
|
var indexMap = make(map[rune]*subsonic.Index)
|
|
var indexes []*subsonic.Index
|
|
for _, folder := range folders {
|
|
i := indexOf(folder.Name)
|
|
index, ok := indexMap[i]
|
|
if !ok {
|
|
index = &subsonic.Index{
|
|
Name: string(i),
|
|
Artists: []*subsonic.Artist{},
|
|
}
|
|
indexMap[i] = index
|
|
indexes = append(indexes, index)
|
|
}
|
|
index.Artists = append(index.Artists, &subsonic.Artist{
|
|
ID: folder.ID,
|
|
Name: folder.Name,
|
|
})
|
|
}
|
|
sub := subsonic.NewResponse()
|
|
sub.Indexes = &subsonic.Indexes{
|
|
LastModified: 0,
|
|
Index: indexes,
|
|
}
|
|
respond(w, r, sub)
|
|
}
|
|
|
|
func (c *Controller) GetMusicDirectory(w http.ResponseWriter, r *http.Request) {
|
|
id, err := getIntParam(r, "id")
|
|
if err != nil {
|
|
respondError(w, r, 10, "please provide an `id` parameter")
|
|
return
|
|
}
|
|
sub := subsonic.NewResponse()
|
|
var cFolder db.Folder
|
|
c.DB.First(&cFolder, id)
|
|
sub.Directory = &subsonic.Directory{
|
|
ID: cFolder.ID,
|
|
Parent: cFolder.ParentID,
|
|
Name: cFolder.Name,
|
|
}
|
|
var folders []*db.Folder
|
|
c.DB.
|
|
Where("parent_id = ?", id).
|
|
Find(&folders)
|
|
for _, folder := range folders {
|
|
sub.Directory.Children = append(sub.Directory.Children, &subsonic.Child{
|
|
Parent: cFolder.ID,
|
|
ID: folder.ID,
|
|
Title: folder.Name,
|
|
IsDir: true,
|
|
CoverID: folder.CoverID,
|
|
})
|
|
}
|
|
var tracks []*db.Track
|
|
c.DB.
|
|
Where("folder_id = ?", id).
|
|
Preload("Album").
|
|
Find(&tracks)
|
|
for _, track := range tracks {
|
|
sub.Directory.Children = append(sub.Directory.Children, &subsonic.Child{
|
|
Parent: cFolder.ID,
|
|
IsDir: false,
|
|
Title: track.Title,
|
|
Album: track.Album.Title,
|
|
Artist: track.Artist,
|
|
Bitrate: track.Bitrate,
|
|
ContentType: track.ContentType,
|
|
CoverID: cFolder.CoverID,
|
|
Duration: 0,
|
|
Path: track.Path,
|
|
Size: track.Size,
|
|
Track: track.TrackNumber,
|
|
})
|
|
}
|
|
respond(w, r, sub)
|
|
}
|
|
|
|
// changes to this function should be reflected in in _by_tags.go's
|
|
// getAlbumListTwo() function
|
|
func (c *Controller) GetAlbumList(w http.ResponseWriter, r *http.Request) {}
|