2021-08-29 15:52:23 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-08-29 15:52:23 +01:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-09-01 17:29:25 +01:00
|
|
|
package validate
|
2021-08-29 15:52:23 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
|
|
|
|
"github.com/go-playground/validator/v10"
|
2021-09-01 17:29:25 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/regexes"
|
2021-08-29 15:52:23 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var v *validator.Validate
|
|
|
|
|
2021-08-30 19:20:27 +01:00
|
|
|
func ulidValidator(fl validator.FieldLevel) bool {
|
|
|
|
field := fl.Field()
|
2021-08-29 15:52:23 +01:00
|
|
|
|
2021-08-30 19:20:27 +01:00
|
|
|
switch field.Kind() {
|
|
|
|
case reflect.String:
|
2021-09-01 17:29:25 +01:00
|
|
|
return regexes.ULID.MatchString(field.String())
|
2021-08-30 19:20:27 +01:00
|
|
|
default:
|
2021-08-29 15:52:23 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
v = validator.New()
|
2021-09-02 11:24:18 +01:00
|
|
|
if err := v.RegisterValidation("ulid", ulidValidator); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-08-29 15:52:23 +01:00
|
|
|
}
|
|
|
|
|
2021-09-01 17:29:25 +01:00
|
|
|
// Struct validates the passed struct, returning validator.ValidationErrors if invalid, or nil if OK.
|
|
|
|
func Struct(s interface{}) error {
|
2021-09-03 10:12:19 +01:00
|
|
|
return processValidationError(v.Struct(s))
|
2021-08-29 15:52:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func processValidationError(err error) error {
|
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if ive, ok := err.(*validator.InvalidValidationError); ok {
|
|
|
|
panic(ive)
|
|
|
|
}
|
|
|
|
|
2022-04-02 14:40:09 +01:00
|
|
|
valErr, ok := err.(validator.ValidationErrors)
|
|
|
|
if !ok {
|
|
|
|
panic("*validator.InvalidValidationError could not be coerced to validator.ValidationErrors")
|
|
|
|
}
|
|
|
|
|
|
|
|
return valErr
|
2021-08-29 15:52:23 +01:00
|
|
|
}
|