mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
27 lines
544 B
Go
27 lines
544 B
Go
package browse
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/hacdias/caddy-cms/config"
|
|
)
|
|
|
|
// ServeHTTP is used to serve the content of Browse page
|
|
// using Browse middleware from Caddy
|
|
func ServeHTTP(w http.ResponseWriter, r *http.Request, c *config.Config) (int, error) {
|
|
// Removes the page main path from the URL
|
|
r.URL.Path = strings.Replace(r.URL.Path, "/admin/browse", "", 1)
|
|
|
|
switch r.Method {
|
|
case "DELETE":
|
|
return DELETE(w, r)
|
|
case "POST":
|
|
return POST(w, r)
|
|
case "GET":
|
|
return GET(w, r, c)
|
|
default:
|
|
return 400, nil
|
|
}
|
|
}
|