mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
16 lines
320 B
Go
16 lines
320 B
Go
package public
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func (p *Router) handleDownloads(w http.ResponseWriter, r *http.Request) {
|
|
id := r.URL.Query().Get(":id")
|
|
if id == "" {
|
|
http.Error(w, "invalid id", http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
err := p.archiver.ZipShare(r.Context(), id, w)
|
|
checkShareError(r.Context(), w, err, id)
|
|
}
|