-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New shared trait for automatic payload validation #518
Conversation
3274eac
to
5905c28
Compare
with Validation[CartLineItem] { | ||
|
||
override def validate: ValidatedNel[Failure, CartLineItem] = | ||
attributes.fold(ok)(_.validate.map(_ ⇒ Unit)).map { case _ ⇒ this } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like you don't need to validate attributes
anymore as soon as they already validated at LineItemAttributes
object creation
@@ -63,6 +65,9 @@ case class OrderLineItem(id: Int = 0, | |||
override def updateTo(newModel: OrderLineItem): Failures Xor OrderLineItem = | |||
super.transitionModel(newModel) | |||
|
|||
override def validate: ValidatedNel[Failure, OLI] = | |||
attributes.fold(ok)(_.validate.map(_ ⇒ Unit)).map { case _ ⇒ this } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The same as for CartLineItem
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah lol forgot to clean that up. Thanks!
5905c28
to
c991446
Compare
+ validation for line item attrs. All payloads should extend `ValidatedPayload` trait and define their `validate` method. If payload doesn't pass validation, exception is thrown immediately. This has several consequences: 1. We never enter service end don't initiate DB transaction, rejection happens in routes. 2. It's impossible to forget to call `_ ← * <~ payload.validate` and end up with invalid payload, because exception will willingly blow up in your face. 3. If we switch to this approach, DbResultT type definition can get rid of tail on `Failures` in favor of single `Failure`. Validation is the only reason we have `NonEmptyList[Failure]` despite we always return only one `Failure` from service.
c991446
to
e9abd4b
Compare
nice, did you test this using TPG's storefront when adding a gift card? |
I am not sure how do I do that given my GCE doesn't provision @mempko |
(plus validation for line item attrs)
All payloads should extend
ValidatedPayload
trait and define theirvalidate
method. If payload doesn't pass validation, exception is thrown immediately. This has several consequences:We never enter service end don't initiate DB transaction, rejection happens in routes.
It's impossible to forget to call
_ ← * <~ payload.validate
and end up with invalid payload, because exception will willingly blow up in your face.If we switch to this approach,
DbResultT
type definition can get rid of tail onFailures
in favor of singleFailure
. Validation is the only reason we haveNonEmptyList[Failure]
despite we always return only oneFailure
from service.