2019-05-21 00:59:20 +08:00
|
|
|
package caddyhttp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"bitbucket.org/lightcodelabs/caddy2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
caddy2.RegisterModule(caddy2.Module{
|
|
|
|
Name: "http.middleware.table",
|
2019-05-22 04:22:21 +08:00
|
|
|
New: func() interface{} { return new(tableMiddleware) },
|
2019-05-21 00:59:20 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
caddy2.RegisterModule(caddy2.Module{
|
|
|
|
Name: "http.matchers.table",
|
2019-05-22 04:22:21 +08:00
|
|
|
New: func() interface{} { return new(tableMatcher) },
|
2019-05-21 00:59:20 +08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
type tableMiddleware struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t tableMiddleware) ServeHTTP(w http.ResponseWriter, r *http.Request, next Handler) error {
|
|
|
|
// tbl := r.Context().Value(TableCtxKey).(map[string]interface{})
|
|
|
|
|
|
|
|
// TODO: implement this...
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type tableMatcher struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m tableMatcher) Match(r *http.Request) bool {
|
|
|
|
return false // TODO: implement
|
|
|
|
}
|
|
|
|
|
|
|
|
// Interface guards
|
|
|
|
var _ MiddlewareHandler = (*tableMiddleware)(nil)
|
|
|
|
var _ RequestMatcher = (*tableMatcher)(nil)
|