2014-08-18 08:41:43 +00:00
|
|
|
// Copyright 2014 beego Author. All Rights Reserved.
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// 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
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// 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.
|
|
|
|
|
2013-09-09 16:00:11 +00:00
|
|
|
package beego
|
|
|
|
|
2014-11-03 07:06:25 +00:00
|
|
|
import "github.com/astaxie/beego/context"
|
|
|
|
|
2015-05-03 21:21:32 +00:00
|
|
|
// FilterFunc defines a filter function which is invoked before the controller handler is executed.
|
2014-11-03 07:06:25 +00:00
|
|
|
type FilterFunc func(*context.Context)
|
|
|
|
|
2015-05-03 21:21:32 +00:00
|
|
|
// FilterRouter defines a filter operation which is invoked before the controller handler is executed.
|
|
|
|
// It can match the URL against a pattern, and execute a filter function
|
|
|
|
// when a request with a matching URL arrives.
|
2013-09-09 16:00:11 +00:00
|
|
|
type FilterRouter struct {
|
2014-10-07 20:35:30 +00:00
|
|
|
filterFunc FilterFunc
|
|
|
|
tree *Tree
|
|
|
|
pattern string
|
|
|
|
returnOnOutput bool
|
2013-09-09 16:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-05-03 21:21:32 +00:00
|
|
|
// ValidRouter checks if the current request is matched by this filter.
|
|
|
|
// If the request is matched, the values of the URL parameters defined
|
|
|
|
// by the filter pattern are also returned.
|
2015-12-11 05:51:01 +00:00
|
|
|
func (f *FilterRouter) ValidRouter(url string, ctx *context.Context) bool {
|
2015-12-22 02:02:59 +00:00
|
|
|
isOk := f.tree.Match(url, ctx)
|
|
|
|
if isOk != nil {
|
|
|
|
if b, ok := isOk.(bool); ok {
|
|
|
|
return b
|
|
|
|
}
|
2013-09-09 16:00:11 +00:00
|
|
|
}
|
2015-12-11 05:51:01 +00:00
|
|
|
return false
|
2013-11-26 08:47:50 +00:00
|
|
|
}
|