60 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
package http
 | 
						|
 | 
						|
import (
 | 
						|
	"encoding/json"
 | 
						|
	"net/http"
 | 
						|
	"net/url"
 | 
						|
	"os"
 | 
						|
	"strings"
 | 
						|
 | 
						|
	"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
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// 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)
 | 
						|
	})
 | 
						|
}
 |