# Describe Request Added copyright header to the code. Fixes #112 # Change Type Documentation change.
43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
// Package checker is a Go library for validating user input through struct tags.
|
|
//
|
|
// https://github.com/cinar/checker
|
|
//
|
|
// Copyright 2023 Onur Cinar. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
//
|
|
package checker
|
|
|
|
import (
|
|
"reflect"
|
|
)
|
|
|
|
// CheckerSame is the name of the checker.
|
|
const CheckerSame = "same"
|
|
|
|
// ResultNotSame indicates that the given two values are not equal to each other.
|
|
const ResultNotSame = "NOT_SAME"
|
|
|
|
// makeSame makes a checker function for the same checker.
|
|
func makeSame(config string) CheckFunc {
|
|
return func(value, parent reflect.Value) Result {
|
|
return checkSame(value, parent, config)
|
|
}
|
|
}
|
|
|
|
// checkSame checks if the given value is equal to the value of the field with the given name.
|
|
func checkSame(value, parent reflect.Value, name string) Result {
|
|
other := parent.FieldByName(name)
|
|
|
|
if !other.IsValid() {
|
|
panic("other field not found")
|
|
}
|
|
|
|
other = reflect.Indirect(other)
|
|
|
|
if !value.Equal(other) {
|
|
return ResultNotSame
|
|
}
|
|
|
|
return ResultValid
|
|
}
|