Created
April 29, 2014 03:11
-
-
Save diatmpravin/11389847 to your computer and use it in GitHub Desktop.
validators
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package revel | |
import ( | |
"fmt" | |
"reflect" | |
"regexp" | |
"time" | |
) | |
type Validator interface { | |
IsSatisfied(interface{}) bool | |
DefaultMessage() string | |
} | |
type Required struct{} | |
func ValidRequired() Required { | |
return Required{} | |
} | |
func (r Required) IsSatisfied(obj interface{}) bool { | |
fmt.Println("<<-----------------HERE IN (required) isSatisfied----------------------->>") | |
fmt.Println("Obj----------->", obj) | |
if obj == nil { | |
fmt.Println("-------In obj == nil ---------") | |
return false | |
} | |
fmt.Println("-------After obj == nil ---------") | |
if str, ok := obj.(string); ok { | |
return len(str) > 0 | |
} | |
if b, ok := obj.(bool); ok { | |
return b | |
} | |
if i, ok := obj.(int); ok { | |
return i != 0 | |
} | |
if t, ok := obj.(time.Time); ok { | |
return !t.IsZero() | |
} | |
v := reflect.ValueOf(obj) | |
if v.Kind() == reflect.Slice { | |
return v.Len() > 0 | |
} | |
return true | |
} | |
func (r Required) DefaultMessage() string { | |
return "Required" | |
} | |
type Min struct { | |
Min int | |
} | |
func ValidMin(min int) Min { | |
return Min{min} | |
} | |
func (m Min) IsSatisfied(obj interface{}) bool { | |
num, ok := obj.(int) | |
if ok { | |
return num >= m.Min | |
} | |
return false | |
} | |
func (m Min) DefaultMessage() string { | |
return fmt.Sprintln("Minimum is", m.Min) | |
} | |
type Max struct { | |
Max int | |
} | |
func ValidMax(max int) Max { | |
return Max{max} | |
} | |
func (m Max) IsSatisfied(obj interface{}) bool { | |
num, ok := obj.(int) | |
if ok { | |
return num <= m.Max | |
} | |
return false | |
} | |
func (m Max) DefaultMessage() string { | |
return fmt.Sprintln("Maximum is", m.Max) | |
} | |
// Requires an integer to be within Min, Max inclusive. | |
type Range struct { | |
Min | |
Max | |
} | |
func ValidRange(min, max int) Range { | |
return Range{Min{min}, Max{max}} | |
} | |
func (r Range) IsSatisfied(obj interface{}) bool { | |
return r.Min.IsSatisfied(obj) && r.Max.IsSatisfied(obj) | |
} | |
func (r Range) DefaultMessage() string { | |
return fmt.Sprintln("Range is", r.Min.Min, "to", r.Max.Max) | |
} | |
// Requires an array or string to be at least a given length. | |
type MinSize struct { | |
Min int | |
} | |
func ValidMinSize(min int) MinSize { | |
return MinSize{min} | |
} | |
func (m MinSize) IsSatisfied(obj interface{}) bool { | |
if str, ok := obj.(string); ok { | |
return len(str) >= m.Min | |
} | |
v := reflect.ValueOf(obj) | |
if v.Kind() == reflect.Slice { | |
return v.Len() >= m.Min | |
} | |
return false | |
} | |
func (m MinSize) DefaultMessage() string { | |
return fmt.Sprintln("Minimum size is", m.Min) | |
} | |
// Requires an array or string to be at most a given length. | |
type MaxSize struct { | |
Max int | |
} | |
func ValidMaxSize(max int) MaxSize { | |
return MaxSize{max} | |
} | |
func (m MaxSize) IsSatisfied(obj interface{}) bool { | |
if str, ok := obj.(string); ok { | |
return len(str) <= m.Max | |
} | |
v := reflect.ValueOf(obj) | |
if v.Kind() == reflect.Slice { | |
return v.Len() <= m.Max | |
} | |
return false | |
} | |
func (m MaxSize) DefaultMessage() string { | |
return fmt.Sprintln("Maximum size is", m.Max) | |
} | |
// Requires an array or string to be exactly a given length. | |
type Length struct { | |
N int | |
} | |
func ValidLength(n int) Length { | |
return Length{n} | |
} | |
func (s Length) IsSatisfied(obj interface{}) bool { | |
if str, ok := obj.(string); ok { | |
return len(str) == s.N | |
} | |
v := reflect.ValueOf(obj) | |
if v.Kind() == reflect.Slice { | |
return v.Len() == s.N | |
} | |
return false | |
} | |
func (s Length) DefaultMessage() string { | |
return fmt.Sprintln("Required length is", s.N) | |
} | |
// Requires a string to match a given regex. | |
type Match struct { | |
Regexp *regexp.Regexp | |
} | |
func ValidMatch(regex *regexp.Regexp) Match { | |
return Match{regex} | |
} | |
func (m Match) IsSatisfied(obj interface{}) bool { | |
str := obj.(string) | |
return m.Regexp.MatchString(str) | |
} | |
func (m Match) DefaultMessage() string { | |
return fmt.Sprintln("Must match", m.Regexp) | |
} | |
var emailPattern = regexp.MustCompile("^[\\w!#$%&'*+/=?^_`{|}~-]+(?:\\.[\\w!#$%&'*+/=?^_`{|}~-]+)*@(?:[\\w](?:[\\w-]*[\\w])?\\.)+[a-zA-Z0-9](?:[\\w-]*[\\w])?$") | |
type Email struct { | |
Match | |
} | |
func ValidEmail() Email { | |
return Email{Match{emailPattern}} | |
} | |
func (e Email) DefaultMessage() string { | |
return fmt.Sprintln("Must be a valid email address") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment