61 lines
1.5 KiB
Go
61 lines
1.5 KiB
Go
package shape
|
|
|
|
import (
|
|
"context"
|
|
|
|
"gitea.maximumdirect.net/eric/notarius/internal/framework/contracts"
|
|
"gitea.maximumdirect.net/eric/notarius/internal/framework/pipeline"
|
|
"gitea.maximumdirect.net/eric/notarius/internal/modules/dnd/validate/spells/spellpayload"
|
|
)
|
|
|
|
const Key = "extract/dnd/spells/shape"
|
|
const ReasonCode = "invalid_spell_shape"
|
|
|
|
var _ contracts.LegacyRawValidator = (*Validator)(nil)
|
|
|
|
type Validator struct{}
|
|
|
|
func New() *Validator {
|
|
return &Validator{}
|
|
}
|
|
|
|
func (v *Validator) Name() string {
|
|
return Key
|
|
}
|
|
|
|
func (v *Validator) ExecutionClass() contracts.ExecutionClass {
|
|
return contracts.ExecutionClassDeterministic
|
|
}
|
|
|
|
func (v *Validator) Validate(ctx context.Context, req contracts.ValidationRequest) (contracts.ValidationResult, error) {
|
|
payload, err := spellpayload.ValidationRequestPayload(req)
|
|
if err != nil {
|
|
return rejection(err.Error()), nil
|
|
}
|
|
if err := spellpayload.ValidateShape(payload); err != nil {
|
|
return rejection(err.Error()), nil
|
|
}
|
|
return contracts.ValidationResult{Approved: true}, nil
|
|
}
|
|
|
|
func Spec() pipeline.ValidatorSpec {
|
|
return pipeline.ValidatorSpec{
|
|
Key: Key,
|
|
ExecutionClass: contracts.ExecutionClassDeterministic,
|
|
}
|
|
}
|
|
|
|
func Register(registry *pipeline.ValidatorRegistry) error {
|
|
return registry.RegisterLegacyRawWithSpec(Spec(), func() (contracts.LegacyRawValidator, error) {
|
|
return New(), nil
|
|
})
|
|
}
|
|
|
|
func rejection(message string) contracts.ValidationResult {
|
|
return contracts.ValidationResult{
|
|
Approved: false,
|
|
ReasonCode: ReasonCode,
|
|
Message: message,
|
|
}
|
|
}
|