Properly form a download URL.
This commit is contained in:
parent
c884fe8225
commit
4a5f54ee70
@ -14,6 +14,7 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"io/fs"
|
"io/fs"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
"strings"
|
"strings"
|
||||||
@ -174,16 +175,18 @@ func (h *UploadHandlers) Upload(w http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
downloadURL := path.Join("/f", fSaltedHash, fHandler.Filename)
|
downloadURL := path.Join("/f", fSaltedHash, fHandler.Filename)
|
||||||
|
downloadURLParsed, _ := url.Parse(downloadURL)
|
||||||
|
|
||||||
if strings.Contains(r.UserAgent(), "curl") {
|
if strings.Contains(r.UserAgent(), "curl") {
|
||||||
_, scheme := utils.NetworkType(r.Host)
|
_, scheme := utils.NetworkType(r.Host)
|
||||||
w.Write([]byte(path.Join(scheme, "://", r.Host, downloadURL) + "\r\n"))
|
downloadURL = fmt.Sprint(scheme, "://", r.Host, downloadURLParsed, "\r\n")
|
||||||
|
w.Write([]byte(downloadURL))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := compiledTemplates["uploaded"].Execute(w, &UploadedData{
|
if err := compiledTemplates["uploaded"].Execute(w, &UploadedData{
|
||||||
MainSite: utils.MainSite(r.Host),
|
MainSite: utils.MainSite(r.Host),
|
||||||
DownloadURL: downloadURL,
|
DownloadURL: downloadURLParsed.String(),
|
||||||
KeepForHours: h.conf.Uploads.Limits.KeepForHours,
|
KeepForHours: h.conf.Uploads.Limits.KeepForHours,
|
||||||
}); err != nil {
|
}); err != nil {
|
||||||
w.WriteHeader(http.StatusInternalServerError)
|
w.WriteHeader(http.StatusInternalServerError)
|
||||||
|
Loading…
Reference in New Issue
Block a user