2019-07-01 06:07:58 +08:00
|
|
|
// Copyright 2015 Matthew Holt and The Caddy Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2019-05-21 00:59:20 +08:00
|
|
|
package caddyhttp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2019-07-03 02:37:06 +08:00
|
|
|
"github.com/caddyserver/caddy/v2"
|
2019-05-21 00:59:20 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-06-15 01:58:28 +08:00
|
|
|
caddy.RegisterModule(caddy.Module{
|
2019-05-21 00:59:20 +08:00
|
|
|
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
|
|
|
})
|
|
|
|
|
2019-06-15 01:58:28 +08:00
|
|
|
caddy.RegisterModule(caddy.Module{
|
2019-05-21 00:59:20 +08:00
|
|
|
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)
|