1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-23 02:44:13 +00:00
Beego/filter.go

45 lines
1.5 KiB
Go
Raw Normal View History

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
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.
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 {
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.
func (f *FilterRouter) ValidRouter(url string) (bool, map[string]string) {
isok, params := f.tree.Match(url)
2014-06-08 12:24:01 +00:00
if isok == nil {
return false, nil
2013-09-09 16:00:11 +00:00
}
2014-06-08 12:24:01 +00:00
if isok, ok := isok.(bool); ok {
return isok, params
2013-09-09 16:00:11 +00:00
}
2015-09-08 13:41:38 +00:00
return false, nil
2013-11-26 08:47:50 +00:00
}