filebrowser/browse/browse.go
Henrique Dias 109f27170a fix #26
2015-10-16 20:03:59 +01:00

28 lines
586 B
Go

package browse
import (
"errors"
"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, c)
case "POST":
return POST(w, r, c)
case "GET":
return GET(w, r, c)
default:
return 400, errors.New("Invalid method.")
}
}