mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
* refactor: replace custom map functions with slice.Map * refactor: extract StringerValue function * refactor: removed unnecessary if * chore: removed invalid comment * refactor: replace more map functions * chore: fix FFmpeg typo
125 lines
3 KiB
Go
125 lines
3 KiB
Go
package subsonic
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/deluan/rest"
|
|
"github.com/navidrome/navidrome/model"
|
|
"github.com/navidrome/navidrome/server/public"
|
|
"github.com/navidrome/navidrome/server/subsonic/responses"
|
|
. "github.com/navidrome/navidrome/utils/gg"
|
|
"github.com/navidrome/navidrome/utils/req"
|
|
"github.com/navidrome/navidrome/utils/slice"
|
|
)
|
|
|
|
func (api *Router) GetShares(r *http.Request) (*responses.Subsonic, error) {
|
|
repo := api.share.NewRepository(r.Context()).(model.ShareRepository)
|
|
shares, err := repo.GetAll(model.QueryOptions{Sort: "created_at desc"})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
response := newResponse()
|
|
response.Shares = &responses.Shares{}
|
|
for _, share := range shares {
|
|
response.Shares.Share = append(response.Shares.Share, api.buildShare(r, share))
|
|
}
|
|
return response, nil
|
|
}
|
|
|
|
func (api *Router) buildShare(r *http.Request, share model.Share) responses.Share {
|
|
resp := responses.Share{
|
|
ID: share.ID,
|
|
Url: public.ShareURL(r, share.ID),
|
|
Description: share.Description,
|
|
Username: share.Username,
|
|
Created: share.CreatedAt,
|
|
Expires: share.ExpiresAt,
|
|
LastVisited: V(share.LastVisitedAt),
|
|
VisitCount: int32(share.VisitCount),
|
|
}
|
|
if resp.Description == "" {
|
|
resp.Description = share.Contents
|
|
}
|
|
if len(share.Albums) > 0 {
|
|
resp.Entry = slice.MapWithArg(share.Albums, r.Context(), childFromAlbum)
|
|
} else {
|
|
resp.Entry = slice.MapWithArg(share.Tracks, r.Context(), childFromMediaFile)
|
|
}
|
|
return resp
|
|
}
|
|
|
|
func (api *Router) CreateShare(r *http.Request) (*responses.Subsonic, error) {
|
|
p := req.Params(r)
|
|
ids, err := p.Strings("id")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
description, _ := p.String("description")
|
|
expires := p.TimeOr("expires", time.Time{})
|
|
|
|
repo := api.share.NewRepository(r.Context())
|
|
share := &model.Share{
|
|
Description: description,
|
|
ExpiresAt: &expires,
|
|
ResourceIDs: strings.Join(ids, ","),
|
|
}
|
|
|
|
id, err := repo.(rest.Persistable).Save(share)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
share, err = repo.(model.ShareRepository).Get(id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
response := newResponse()
|
|
response.Shares = &responses.Shares{Share: []responses.Share{api.buildShare(r, *share)}}
|
|
return response, nil
|
|
}
|
|
|
|
func (api *Router) UpdateShare(r *http.Request) (*responses.Subsonic, error) {
|
|
p := req.Params(r)
|
|
id, err := p.String("id")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
description, _ := p.String("description")
|
|
expires := p.TimeOr("expires", time.Time{})
|
|
|
|
repo := api.share.NewRepository(r.Context())
|
|
share := &model.Share{
|
|
ID: id,
|
|
Description: description,
|
|
ExpiresAt: &expires,
|
|
}
|
|
|
|
err = repo.(rest.Persistable).Update(id, share)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return newResponse(), nil
|
|
}
|
|
|
|
func (api *Router) DeleteShare(r *http.Request) (*responses.Subsonic, error) {
|
|
p := req.Params(r)
|
|
id, err := p.String("id")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
repo := api.share.NewRepository(r.Context())
|
|
err = repo.(rest.Persistable).Delete(id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return newResponse(), nil
|
|
}
|