mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
33 lines
600 B
Go
33 lines
600 B
Go
package editor
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/hacdias/caddy-hugo/config"
|
|
)
|
|
|
|
type editor struct {
|
|
Name string
|
|
Class string
|
|
IsPost bool
|
|
Mode string
|
|
Content string
|
|
FrontMatter interface{}
|
|
Config *config.Config
|
|
}
|
|
|
|
// ServeHTTP serves the editor page
|
|
func ServeHTTP(w http.ResponseWriter, r *http.Request, c *config.Config) (int, error) {
|
|
filename := strings.Replace(r.URL.Path, "/admin/edit/", "", 1)
|
|
|
|
switch r.Method {
|
|
case "POST":
|
|
return POST(w, r, c, filename)
|
|
case "GET":
|
|
return GET(w, r, c, filename)
|
|
default:
|
|
return 400, nil
|
|
}
|
|
}
|