navidrome/server/public/handle_downloads.go
2023-12-21 17:41:09 -05:00

18 lines
377 B
Go

package public
import (
"net/http"
"github.com/navidrome/navidrome/utils/req"
)
func (pub *Router) handleDownloads(w http.ResponseWriter, r *http.Request) {
id, err := req.Params(r).String(":id")
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
err = pub.archiver.ZipShare(r.Context(), id, w)
checkShareError(r.Context(), w, err, id)
}