Skip to content
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

Merged
merged 1 commit into from
Dec 8, 2016

Conversation

annappropriate
Copy link
Contributor

@annappropriate annappropriate commented Nov 30, 2016

(plus 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.

with Validation[CartLineItem] {

override def validate: ValidatedNel[Failure, CartLineItem] =
attributes.fold(ok)(_.validate.map(_ ⇒ Unit)).map { case _ ⇒ this }
Copy link
Contributor

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 }
Copy link
Contributor

@vkorbut vkorbut Dec 1, 2016

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

Copy link
Contributor Author

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!

@annappropriate annappropriate force-pushed the phoenix/payload-validation branch from 5905c28 to c991446 Compare December 2, 2016 17:18
+ 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.
@annappropriate annappropriate force-pushed the phoenix/payload-validation branch from c991446 to e9abd4b Compare December 2, 2016 17:19
@mempko
Copy link
Contributor

mempko commented Dec 2, 2016

nice, did you test this using TPG's storefront when adding a gift card?

@annappropriate
Copy link
Contributor Author

I am not sure how do I do that given my GCE doesn't provision @mempko

@annappropriate
Copy link
Contributor Author

@mempko mempko merged commit 70dff70 into master Dec 8, 2016
@mempko mempko deleted the phoenix/payload-validation branch December 8, 2016 17:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants