From 544838c782c8671157c579842cd09e600f1ebce7 Mon Sep 17 00:00:00 2001 From: Sergey Glazyrin Date: Thu, 9 Sep 2021 18:45:52 +0200 Subject: [PATCH 1/5] now custom validators return specific error explaining what's wrong with value --- README.md | 8 ++++---- types.go | 2 +- validator.go | 4 ++-- validator_test.go | 32 +++++++++++++++++--------------- 4 files changed, 24 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index 2c3fc35..f194cf4 100644 --- a/README.md +++ b/README.md @@ -84,12 +84,12 @@ This was changed to prevent data races when accessing custom validators. import "github.com/asaskevich/govalidator" // before -govalidator.CustomTypeTagMap["customByteArrayValidator"] = func(i interface{}, o interface{}) bool { +govalidator.CustomTypeTagMap["customByteArrayValidator"] = func(i interface{}, o interface{}) error { // ... } // after -govalidator.CustomTypeTagMap.Set("customByteArrayValidator", func(i interface{}, o interface{}) bool { +govalidator.CustomTypeTagMap.Set("customByteArrayValidator", func(i interface{}, o interface{}) error { // ... }) ``` @@ -493,7 +493,7 @@ type StructWithCustomByteArray struct { CustomMinLength int `valid:"-"` } -govalidator.CustomTypeTagMap.Set("customByteArrayValidator", func(i interface{}, context interface{}) bool { +govalidator.CustomTypeTagMap.Set("customByteArrayValidator", func(i interface{}, context interface{}) error { switch v := context.(type) { // you can type switch on the context interface being validated case StructWithCustomByteArray: // you can check and validate against some other field in the context, @@ -514,7 +514,7 @@ govalidator.CustomTypeTagMap.Set("customByteArrayValidator", func(i interface{}, } return false }) -govalidator.CustomTypeTagMap.Set("customMinLengthValidator", func(i interface{}, context interface{}) bool { +govalidator.CustomTypeTagMap.Set("customMinLengthValidator", func(i interface{}, context interface{}) error { switch v := context.(type) { // this validates a field against the value in another field, i.e. dependent validation case StructWithCustomByteArray: return len(v.ID) >= v.CustomMinLength diff --git a/types.go b/types.go index c573abb..9606f44 100644 --- a/types.go +++ b/types.go @@ -12,7 +12,7 @@ type Validator func(str string) bool // CustomTypeValidator is a wrapper for validator functions that returns bool and accepts any type. // The second parameter should be the context (in the case of validating a struct: the whole object being validated). -type CustomTypeValidator func(i interface{}, o interface{}) bool +type CustomTypeValidator func(i interface{}, o interface{}) error // ParamValidator is a wrapper for validator functions that accept additional parameters. type ParamValidator func(str string, params ...string) bool diff --git a/validator.go b/validator.go index 46ecfc8..db222b0 100644 --- a/validator.go +++ b/validator.go @@ -1477,12 +1477,12 @@ func typeCheck(v reflect.Value, t reflect.StructField, o reflect.Value, options if validatefunc, ok := CustomTypeTagMap.Get(validatorName); ok { delete(options, validatorName) - if result := validatefunc(v.Interface(), o.Interface()); !result { + if result := validatefunc(v.Interface(), o.Interface()); result != nil { if len(validatorStruct.customErrorMessage) > 0 { customTypeErrors = append(customTypeErrors, Error{Name: t.Name, Err: TruncatingErrorf(validatorStruct.customErrorMessage, fmt.Sprint(v), validatorName), CustomErrorMessageExists: true, Validator: stripParams(validatorName)}) continue } - customTypeErrors = append(customTypeErrors, Error{Name: t.Name, Err: fmt.Errorf("%s does not validate as %s", fmt.Sprint(v), validatorName), CustomErrorMessageExists: false, Validator: stripParams(validatorName)}) + customTypeErrors = append(customTypeErrors, Error{Name: t.Name, Err: result, CustomErrorMessageExists: false, Validator: stripParams(validatorName)}) } } } diff --git a/validator_test.go b/validator_test.go index bff8613..0c0857d 100644 --- a/validator_test.go +++ b/validator_test.go @@ -8,11 +8,11 @@ import ( ) func init() { - CustomTypeTagMap.Set("customFalseValidator", CustomTypeValidator(func(i interface{}, o interface{}) bool { - return false + CustomTypeTagMap.Set("customFalseValidator", CustomTypeValidator(func(i interface{}, o interface{}) error { + return fmt.Errorf("invalid") })) - CustomTypeTagMap.Set("customTrueValidator", CustomTypeValidator(func(i interface{}, o interface{}) bool { - return true + CustomTypeTagMap.Set("customTrueValidator", CustomTypeValidator(func(i interface{}, o interface{}) error { + return nil })) } @@ -2715,7 +2715,7 @@ func TestStructWithCustomByteArray(t *testing.T) { t.Parallel() // add our custom byte array validator that fails when the byte array is pristine (all zeroes) - CustomTypeTagMap.Set("customByteArrayValidator", CustomTypeValidator(func(i interface{}, o interface{}) bool { + CustomTypeTagMap.Set("customByteArrayValidator", CustomTypeValidator(func(i interface{}, o interface{}) error { switch v := o.(type) { case StructWithCustomByteArray: if len(v.Email) > 0 { @@ -2731,18 +2731,20 @@ func TestStructWithCustomByteArray(t *testing.T) { case CustomByteArray: for _, e := range v { // checks if v is empty, i.e. all zeroes if e != 0 { - return true + return nil } } } - return false + return fmt.Errorf("all zeros") })) - CustomTypeTagMap.Set("customMinLengthValidator", CustomTypeValidator(func(i interface{}, o interface{}) bool { + CustomTypeTagMap.Set("customMinLengthValidator", CustomTypeValidator(func(i interface{}, o interface{}) error { switch v := o.(type) { case StructWithCustomByteArray: - return len(v.ID) >= v.CustomMinLength + if len(v.ID) >= v.CustomMinLength { + return nil + } } - return false + return fmt.Errorf("byte is too short") })) testCustomByteArray := CustomByteArray{'1', '2', '3', '4', '5', '6'} var tests = []struct { @@ -3361,8 +3363,8 @@ func TestErrorsByField(t *testing.T) { ID string `valid:"falseValidation"` } - CustomTypeTagMap.Set("falseValidation", CustomTypeValidator(func(i interface{}, o interface{}) bool { - return false + CustomTypeTagMap.Set("falseValidation", CustomTypeValidator(func(i interface{}, o interface{}) error { + return fmt.Errorf("validation failed") })) tests = []struct { @@ -3370,7 +3372,7 @@ func TestErrorsByField(t *testing.T) { expected string }{ {"Email", "My123 does not validate as email"}, - {"ID", "duck13126 does not validate as falseValidation"}, + {"ID", "validation failed"}, } s := &StructWithCustomValidation{Email: "My123", ID: "duck13126"} _, err = ValidateStruct(s) @@ -3592,8 +3594,8 @@ func TestIsCIDR(t *testing.T) { func TestOptionalCustomValidators(t *testing.T) { - CustomTypeTagMap.Set("f2", CustomTypeValidator(func(i interface{}, o interface{}) bool { - return false + CustomTypeTagMap.Set("f2", CustomTypeValidator(func(i interface{}, o interface{}) error { + return fmt.Errorf("didn't pass validation") })) var val struct { From 6cc2e5a95b64305ba43c3ce2616f1a7deeae64ed Mon Sep 17 00:00:00 2001 From: Sergey Glazyrin Date: Sun, 17 Oct 2021 21:23:44 +0200 Subject: [PATCH 2/5] updated repo internal links --- .circleci/config.yml | 2 +- .github/ISSUE_TEMPLATE/config.yml | 2 +- CONTRIBUTING.md | 14 ++++----- README.md | 48 +++++++++++++++---------------- go.mod | 2 +- 5 files changed, 34 insertions(+), 34 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 08ab415..b1fe3e9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ jobs: build: docker: - image: circleci/golang:1.13 - working_directory: /go/src/github.com/asaskevich/govalidator + working_directory: /go/src/github.com/sergeyglazyrindev/govalidator steps: - checkout - run: diff -u /dev/null <(gofmt -d .) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 5025b10..ff4d9ef 100755 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,5 +1,5 @@ blank_issues_enabled: false contact_links: - name: ❓ Support & Discussion - url: https://gitter.im/asaskevich/govalidator + url: https://gitter.im/sergeyglazyrindev/govalidator about: 'You can leave comments and participate in the discussion via Gitter:' diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7ed268a..0d87d79 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,13 +5,13 @@ If you do have a contribution to the package, feel free to create a Pull Request If you don't know what to do, there are some features and functions that need to be done - [ ] Refactor code -- [ ] Edit docs and [README](https://github.com/asaskevich/govalidator/README.md): spellcheck, grammar and typo check +- [ ] Edit docs and [README](https://github.com/sergeyglazyrindev/govalidator/README.md): spellcheck, grammar and typo check - [ ] Create actual list of contributors and projects that currently using this package -- [ ] Resolve [issues and bugs](https://github.com/asaskevich/govalidator/issues) -- [ ] Update actual [list of functions](https://github.com/asaskevich/govalidator#list-of-functions) -- [ ] Update [list of validators](https://github.com/asaskevich/govalidator#validatestruct-2) that available for `ValidateStruct` and add new +- [ ] Resolve [issues and bugs](https://github.com/sergeyglazyrindev/govalidator/issues) +- [ ] Update actual [list of functions](https://github.com/sergeyglazyrindev/govalidator#list-of-functions) +- [ ] Update [list of validators](https://github.com/sergeyglazyrindev/govalidator#validatestruct-2) that available for `ValidateStruct` and add new - [ ] Implement new validators: `IsFQDN`, `IsIMEI`, `IsPostalCode`, `IsISIN`, `IsISRC` etc -- [x] Implement [validation by maps](https://github.com/asaskevich/govalidator/issues/224) +- [x] Implement [validation by maps](https://github.com/sergeyglazyrindev/govalidator/issues/224) - [ ] Implement fuzzing testing - [ ] Implement some struct/map/array utilities - [ ] Implement map/array validation @@ -37,7 +37,7 @@ Anyone can file an expense. If the expense makes sense for the development of th ### Contributors Thank you to all the people who have already contributed to govalidator! - + ### Backers @@ -60,4 +60,4 @@ Thank you to all our sponsors! (please ask your company to also support this ope - \ No newline at end of file + diff --git a/README.md b/README.md index f194cf4..2e858d0 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ govalidator =========== -[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/asaskevich/govalidator?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![GoDoc](https://godoc.org/github.com/asaskevich/govalidator?status.png)](https://godoc.org/github.com/asaskevich/govalidator) -[![Build Status](https://travis-ci.org/asaskevich/govalidator.svg?branch=master)](https://travis-ci.org/asaskevich/govalidator) -[![Coverage](https://codecov.io/gh/asaskevich/govalidator/branch/master/graph/badge.svg)](https://codecov.io/gh/asaskevich/govalidator) [![Go Report Card](https://goreportcard.com/badge/github.com/asaskevich/govalidator)](https://goreportcard.com/report/github.com/asaskevich/govalidator) [![GoSearch](http://go-search.org/badge?id=github.com%2Fasaskevich%2Fgovalidator)](http://go-search.org/view?id=github.com%2Fasaskevich%2Fgovalidator) [![Backers on Open Collective](https://opencollective.com/govalidator/backers/badge.svg)](#backers) [![Sponsors on Open Collective](https://opencollective.com/govalidator/sponsors/badge.svg)](#sponsors) [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fasaskevich%2Fgovalidator.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fasaskevich%2Fgovalidator?ref=badge_shield) +[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/sergeyglazyrindev/govalidator?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![GoDoc](https://godoc.org/github.com/sergeyglazyrindev/govalidator?status.png)](https://godoc.org/github.com/sergeyglazyrindev/govalidator) +[![Build Status](https://travis-ci.org/sergeyglazyrindev/govalidator.svg?branch=master)](https://travis-ci.org/sergeyglazyrindev/govalidator) +[![Coverage](https://codecov.io/gh/sergeyglazyrindev/govalidator/branch/master/graph/badge.svg)](https://codecov.io/gh/sergeyglazyrindev/govalidator) [![Go Report Card](https://goreportcard.com/badge/github.com/sergeyglazyrindev/govalidator)](https://goreportcard.com/report/github.com/sergeyglazyrindev/govalidator) [![GoSearch](http://go-search.org/badge?id=github.com%sergeyglazyrindev%2Fgovalidator)](http://go-search.org/view?id=github.com%sergeyglazyrindev%2Fgovalidator) [![Backers on Open Collective](https://opencollective.com/govalidator/backers/badge.svg)](#backers) [![Sponsors on Open Collective](https://opencollective.com/govalidator/sponsors/badge.svg)](#sponsors) [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%sergeyglazyrindev%2Fgovalidator.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%sergeyglazyrindev%2Fgovalidator?ref=badge_shield) A package of validators and sanitizers for strings, structs and collections. Based on [validator.js](https://github.com/chriso/validator.js). @@ -10,11 +10,11 @@ A package of validators and sanitizers for strings, structs and collections. Bas Make sure that Go is installed on your computer. Type the following command in your terminal: - go get github.com/asaskevich/govalidator + go get github.com/sergeyglazyrindev/govalidator or you can get specified release of the package with `gopkg.in`: - go get gopkg.in/asaskevich/govalidator.v10 + go get gopkg.in/sergeyglazyrindev/govalidator.v10 After it the package is ready to use. @@ -22,12 +22,12 @@ After it the package is ready to use. #### Import package in your project Add following line in your `*.go` file: ```go -import "github.com/asaskevich/govalidator" +import "github.com/sergeyglazyrindev/govalidator" ``` If you are unhappy to use long `govalidator`, you can do something like this: ```go import ( - valid "github.com/asaskevich/govalidator" + valid "github.com/sergeyglazyrindev/govalidator" ) ``` @@ -37,7 +37,7 @@ import ( `SetNilPtrAllowedByRequired` causes validation to pass when struct fields marked by `required` are set to nil. This is disabled by default for consistency, but some packages that need to be able to determine between `nil` and `zero value` state can use this. If disabled, both `nil` and `zero` values cause validation errors. ```go -import "github.com/asaskevich/govalidator" +import "github.com/sergeyglazyrindev/govalidator" func init() { govalidator.SetFieldsRequiredByDefault(true) @@ -65,11 +65,11 @@ type exampleStruct2 struct { } ``` -#### Recent breaking changes (see [#123](https://github.com/asaskevich/govalidator/pull/123)) +#### Recent breaking changes (see [#123](https://github.com/sergeyglazyrindev/govalidator/pull/123)) ##### Custom validator function signature A context was added as the second parameter, for structs this is the object being validated – this makes dependent validation possible. ```go -import "github.com/asaskevich/govalidator" +import "github.com/sergeyglazyrindev/govalidator" // old signature func(i interface{}) bool @@ -81,7 +81,7 @@ func(i interface{}, o interface{}) bool ##### Adding a custom validator This was changed to prevent data races when accessing custom validators. ```go -import "github.com/asaskevich/govalidator" +import "github.com/sergeyglazyrindev/govalidator" // before govalidator.CustomTypeTagMap["customByteArrayValidator"] = func(i interface{}, o interface{}) error { @@ -322,7 +322,7 @@ var fn govalidator.ConditionIterator = func(value interface{}, index int) bool { _ = govalidator.Filter(data, fn) // result = []interface{}{2, 4, 6, 8, 10} _ = govalidator.Count(data, fn) // result = 5 ``` -###### ValidateStruct [#2](https://github.com/asaskevich/govalidator/pull/2) +###### ValidateStruct [#2](https://github.com/sergeyglazyrindev/govalidator/pull/2) If you want to validate structs, you can use tag `valid` for any field in your structure. All validators used with this field in one tag are separated by comma. If you want to skip validation, place `-` in your tag. If you need a validator that is not on the list below, you can add it like this: ```go govalidator.TagMap["duck"] = govalidator.Validator(func(str string) bool { @@ -439,7 +439,7 @@ if err != nil { } println(result) ``` -###### ValidateMap [#2](https://github.com/asaskevich/govalidator/pull/338) +###### ValidateMap [#2](https://github.com/sergeyglazyrindev/govalidator/pull/338) If you want to validate maps, you can use the map to be validated and a validation map that contain the same tags used in ValidateStruct, both maps have to be in the form `map[string]interface{}` So here is small example of usage: @@ -483,7 +483,7 @@ println(govalidator.WhiteList("a3a43a5a4a3a2a23a4a5a4a3a4", "a-z") == "aaaaaaaaa ###### Custom validation functions Custom validation using your own domain specific validators is also available - here's an example of how to use it: ```go -import "github.com/asaskevich/govalidator" +import "github.com/sergeyglazyrindev/govalidator" type CustomByteArray [6]byte // custom types are supported and can be validated @@ -544,8 +544,8 @@ type Ticket struct { ``` #### Notes -Documentation is available here: [godoc.org](https://godoc.org/github.com/asaskevich/govalidator). -Full information about code coverage is also available here: [govalidator on gocover.io](http://gocover.io/github.com/asaskevich/govalidator). +Documentation is available here: [godoc.org](https://godoc.org/github.com/sergeyglazyrindev/govalidator). +Full information about code coverage is also available here: [govalidator on gocover.io](http://gocover.io/github.com/sergeyglazyrindev/govalidator). #### Support If you do have a contribution to the package, feel free to create a Pull Request or an Issue. @@ -554,13 +554,13 @@ If you do have a contribution to the package, feel free to create a Pull Request If you don't know what to do, there are some features and functions that need to be done - [ ] Refactor code -- [ ] Edit docs and [README](https://github.com/asaskevich/govalidator/README.md): spellcheck, grammar and typo check +- [ ] Edit docs and [README](https://github.com/sergeyglazyrindev/govalidator/README.md): spellcheck, grammar and typo check - [ ] Create actual list of contributors and projects that currently using this package -- [ ] Resolve [issues and bugs](https://github.com/asaskevich/govalidator/issues) -- [ ] Update actual [list of functions](https://github.com/asaskevich/govalidator#list-of-functions) -- [ ] Update [list of validators](https://github.com/asaskevich/govalidator#validatestruct-2) that available for `ValidateStruct` and add new +- [ ] Resolve [issues and bugs](https://github.com/sergeyglazyrindev/govalidator/issues) +- [ ] Update actual [list of functions](https://github.com/sergeyglazyrindev/govalidator#list-of-functions) +- [ ] Update [list of validators](https://github.com/sergeyglazyrindev/govalidator#validatestruct-2) that available for `ValidateStruct` and add new - [ ] Implement new validators: `IsFQDN`, `IsIMEI`, `IsPostalCode`, `IsISIN`, `IsISRC` etc -- [x] Implement [validation by maps](https://github.com/asaskevich/govalidator/issues/224) +- [x] Implement [validation by maps](https://github.com/sergeyglazyrindev/govalidator/issues/224) - [ ] Implement fuzzing testing - [ ] Implement some struct/map/array utilities - [ ] Implement map/array validation @@ -579,7 +579,7 @@ Feel free to create what you want, but keep in mind when you implement new featu This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)]. -#### Special thanks to [contributors](https://github.com/asaskevich/govalidator/graphs/contributors) +#### Special thanks to [contributors](https://github.com/sergeyglazyrindev/govalidator/graphs/contributors) * [Daniel Lohse](https://github.com/annismckenzie) * [Attila Oláh](https://github.com/attilaolah) * [Daniel Korner](https://github.com/Dadie) @@ -590,7 +590,7 @@ This project exists thanks to all the people who contribute. [[Contribute](CONTR * [Matt Sanford](https://github.com/mzsanford) * [Simon ccl1115](https://github.com/ccl1115) - + ### Backers @@ -619,4 +619,4 @@ Support this project by becoming a sponsor. Your logo will show up here with a l ## License -[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fasaskevich%2Fgovalidator.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fasaskevich%2Fgovalidator?ref=badge_large) +[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%sergeyglazyrindev%2Fgovalidator.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%sergeyglazyrindev%2Fgovalidator?ref=badge_large) diff --git a/go.mod b/go.mod index 42d5b1f..a2cc834 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/asaskevich/govalidator +module github.com/sergeyglazyrindev/govalidator go 1.13 From 27fc86b9abe03659045eab35757f48733dcdf062 Mon Sep 17 00:00:00 2001 From: The Gitter Badger Date: Sun, 17 Oct 2021 19:34:14 +0000 Subject: [PATCH 3/5] Add Gitter badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2e858d0..268b543 100644 --- a/README.md +++ b/README.md @@ -619,4 +619,4 @@ Support this project by becoming a sponsor. Your logo will show up here with a l ## License -[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%sergeyglazyrindev%2Fgovalidator.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%sergeyglazyrindev%2Fgovalidator?ref=badge_large) +[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%sergeyglazyrindev%2Fgovalidator.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%sergeyglazyrindev%2Fgovalidator?ref=badge_large) [![Join the chat at https://gitter.im/sergeyglazyrindev/govalidator](https://badges.gitter.im/sergeyglazyrindev/govalidator.svg)](https://gitter.im/sergeyglazyrindev/govalidator?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) From 9301e04646882911c4b821e23ba92e42edf25303 Mon Sep 17 00:00:00 2001 From: Sergey Glazyrin Date: Sun, 17 Oct 2021 22:11:38 +0200 Subject: [PATCH 4/5] updated svg for travis-ci --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 268b543..9ea45b2 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ govalidator =========== [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/sergeyglazyrindev/govalidator?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![GoDoc](https://godoc.org/github.com/sergeyglazyrindev/govalidator?status.png)](https://godoc.org/github.com/sergeyglazyrindev/govalidator) -[![Build Status](https://travis-ci.org/sergeyglazyrindev/govalidator.svg?branch=master)](https://travis-ci.org/sergeyglazyrindev/govalidator) +[![Build Status](https://app.travis-ci.com/github/sergeyglazyrindev/govalidator.svg?branch=master)](https://app.travis-ci.com/github/sergeyglazyrindev/govalidator) [![Coverage](https://codecov.io/gh/sergeyglazyrindev/govalidator/branch/master/graph/badge.svg)](https://codecov.io/gh/sergeyglazyrindev/govalidator) [![Go Report Card](https://goreportcard.com/badge/github.com/sergeyglazyrindev/govalidator)](https://goreportcard.com/report/github.com/sergeyglazyrindev/govalidator) [![GoSearch](http://go-search.org/badge?id=github.com%sergeyglazyrindev%2Fgovalidator)](http://go-search.org/view?id=github.com%sergeyglazyrindev%2Fgovalidator) [![Backers on Open Collective](https://opencollective.com/govalidator/backers/badge.svg)](#backers) [![Sponsors on Open Collective](https://opencollective.com/govalidator/sponsors/badge.svg)](#sponsors) [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%sergeyglazyrindev%2Fgovalidator.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%sergeyglazyrindev%2Fgovalidator?ref=badge_shield) A package of validators and sanitizers for strings, structs and collections. Based on [validator.js](https://github.com/chriso/validator.js). From 46be4a35bc9ea4c83e4ae85fb5d2e42696cbc667 Mon Sep 17 00:00:00 2001 From: Sergey Glazyrin Date: Sun, 17 Oct 2021 22:41:31 +0200 Subject: [PATCH 5/5] updated svg for travis-ci --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9ea45b2..76638d2 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ govalidator =========== [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/sergeyglazyrindev/govalidator?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![GoDoc](https://godoc.org/github.com/sergeyglazyrindev/govalidator?status.png)](https://godoc.org/github.com/sergeyglazyrindev/govalidator) -[![Build Status](https://app.travis-ci.com/github/sergeyglazyrindev/govalidator.svg?branch=master)](https://app.travis-ci.com/github/sergeyglazyrindev/govalidator) +[![Build Status](https://app.travis-ci.com/sergeyglazyrindev/govalidator.svg?branch=master)](https://app.travis-ci.com/sergeyglazyrindev/govalidator) [![Coverage](https://codecov.io/gh/sergeyglazyrindev/govalidator/branch/master/graph/badge.svg)](https://codecov.io/gh/sergeyglazyrindev/govalidator) [![Go Report Card](https://goreportcard.com/badge/github.com/sergeyglazyrindev/govalidator)](https://goreportcard.com/report/github.com/sergeyglazyrindev/govalidator) [![GoSearch](http://go-search.org/badge?id=github.com%sergeyglazyrindev%2Fgovalidator)](http://go-search.org/view?id=github.com%sergeyglazyrindev%2Fgovalidator) [![Backers on Open Collective](https://opencollective.com/govalidator/backers/badge.svg)](#backers) [![Sponsors on Open Collective](https://opencollective.com/govalidator/sponsors/badge.svg)](#sponsors) [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%sergeyglazyrindev%2Fgovalidator.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%sergeyglazyrindev%2Fgovalidator?ref=badge_shield) A package of validators and sanitizers for strings, structs and collections. Based on [validator.js](https://github.com/chriso/validator.js).