1
0
mirror of https://github.com/astaxie/beego.git synced 2025-01-11 05:27:13 +00:00
Beego/filter.go

45 lines
1.5 KiB
Go
Raw Normal View History

2014-08-18 16:41:43 +08:00
// Copyright 2014 beego Author. All Rights Reserved.
2014-07-03 23:40:21 +08:00
//
2014-08-18 16:41:43 +08: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 23:40:21 +08:00
//
2014-08-18 16:41:43 +08:00
// http://www.apache.org/licenses/LICENSE-2.0
2014-07-03 23:40:21 +08:00
//
2014-08-18 16:41:43 +08: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-10 00:00:11 +08:00
package beego
import "github.com/astaxie/beego/context"
2015-05-03 23:21:32 +02:00
// FilterFunc defines a filter function which is invoked before the controller handler is executed.
type FilterFunc func(*context.Context)
2015-05-03 23:21:32 +02: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-10 00:00:11 +08:00
type FilterRouter struct {
filterFunc FilterFunc
tree *Tree
pattern string
returnOnOutput bool
2013-09-10 00:00:11 +08:00
}
2015-05-03 23:21:32 +02: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 13:51:01 +08:00
func (f *FilterRouter) ValidRouter(url string, ctx *context.Context) bool {
isok := f.tree.Match(url, ctx)
2014-06-08 20:24:01 +08:00
if isok == nil {
2015-12-11 13:51:01 +08:00
return false
2013-09-10 00:00:11 +08:00
}
2014-06-08 20:24:01 +08:00
if isok, ok := isok.(bool); ok {
2015-12-11 13:51:01 +08:00
return isok
2013-09-10 00:00:11 +08:00
}
2015-12-11 13:51:01 +08:00
return false
2013-11-26 16:47:50 +08:00
}