1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-26 00:54:14 +00:00
Beego/context/param/options.go

38 lines
966 B
Go
Raw Normal View History

2017-04-21 12:26:41 +00:00
package param
2017-04-22 22:33:50 +00:00
import (
"fmt"
)
2017-04-30 16:28:26 +00:00
// MethodParamOption defines a func which apply options on a MethodParam
type MethodParamOption func(*MethodParam)
2017-04-30 16:28:26 +00:00
// IsRequired indicates that this param is required and can not be ommited from the http request
2017-04-22 22:33:50 +00:00
var IsRequired MethodParamOption = func(p *MethodParam) {
p.required = true
}
2017-04-30 16:28:26 +00:00
// InHeader indicates that this param is passed via an http header
2017-04-21 12:26:41 +00:00
var InHeader MethodParamOption = func(p *MethodParam) {
p.location = header
}
2017-04-30 16:28:26 +00:00
// InPath indicates that this param is part of the URL path
var InPath MethodParamOption = func(p *MethodParam) {
p.location = path
}
2017-04-30 16:28:26 +00:00
// InBody indicates that this param is passed as an http request body
2017-04-22 22:33:50 +00:00
var InBody MethodParamOption = func(p *MethodParam) {
p.location = body
2017-04-21 12:26:41 +00:00
}
2017-04-30 16:28:26 +00:00
// Default provides a default value for the http param
2017-04-21 12:26:41 +00:00
func Default(defValue interface{}) MethodParamOption {
return func(p *MethodParam) {
2017-04-22 22:33:50 +00:00
if defValue != nil {
2017-04-23 23:35:04 +00:00
p.defValue = fmt.Sprint(defValue)
2017-04-22 22:33:50 +00:00
}
2017-04-21 12:26:41 +00:00
}
}