2019-01-05 22:44:33 +00:00
|
|
|
package http
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
2019-05-12 08:04:09 +00:00
|
|
|
"net/url"
|
2019-01-05 22:44:33 +00:00
|
|
|
"os"
|
2019-05-12 08:04:09 +00:00
|
|
|
"strings"
|
2019-01-05 22:44:33 +00:00
|
|
|
|
|
|
|
"github.com/filebrowser/filebrowser/v2/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
func renderJSON(w http.ResponseWriter, r *http.Request, data interface{}) (int, error) {
|
|
|
|
marsh, err := json.Marshal(data)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return http.StatusInternalServerError, err
|
|
|
|
}
|
|
|
|
|
|
|
|
w.Header().Set("Content-Type", "application/json; charset=utf-8")
|
|
|
|
if _, err := w.Write(marsh); err != nil {
|
|
|
|
return http.StatusInternalServerError, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func errToStatus(err error) int {
|
|
|
|
switch {
|
|
|
|
case err == nil:
|
|
|
|
return http.StatusOK
|
|
|
|
case os.IsPermission(err):
|
|
|
|
return http.StatusForbidden
|
|
|
|
case os.IsNotExist(err), err == errors.ErrNotExist:
|
|
|
|
return http.StatusNotFound
|
|
|
|
case os.IsExist(err), err == errors.ErrExist:
|
|
|
|
return http.StatusConflict
|
|
|
|
default:
|
|
|
|
return http.StatusInternalServerError
|
|
|
|
}
|
|
|
|
}
|
2019-05-12 08:04:09 +00:00
|
|
|
|
|
|
|
// This is an addaptation if http.StripPrefix in which we don't
|
|
|
|
// return 404 if the page doesn't have the needed prefix.
|
|
|
|
func stripPrefix(prefix string, h http.Handler) http.Handler {
|
|
|
|
if prefix == "" {
|
|
|
|
return h
|
|
|
|
}
|
|
|
|
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
p := strings.TrimPrefix(r.URL.Path, prefix)
|
|
|
|
r2 := new(http.Request)
|
|
|
|
*r2 = *r
|
|
|
|
r2.URL = new(url.URL)
|
|
|
|
*r2.URL = *r.URL
|
|
|
|
r2.URL.Path = p
|
|
|
|
h.ServeHTTP(w, r2)
|
|
|
|
})
|
|
|
|
}
|