17.
PATCH is (also) for Updating (basically)
Keep on Learning!
If you liked what you've learned so far, dive in! Subscribe to get access to this tutorial plus video, code and script downloads.
If you liked what you've learned so far, dive in! Subscribe to get access to this tutorial plus video, code and script downloads.
Whoops, an error! Please, try again later.
21 Comments
$form->submit($data, false) fails with "this value should not be null" validation error on PATCH for Symfony 4.3. Might have something to do with https://symfony.com/blog/ne...
Hey azeem
The thing is that in Symfony4.3 there is a new feature that enables auto-validation based on your DB constraints set on your Entity (https://symfony.com/blog/ne... ). Either you disable it or allow such field to be null (or pass that value in from your request)
Cheers!
thanks for the reply. Doesn't make sense to throw this validation on PATCH request. Table columns are already set in the database. $form->submit($data, false) should be able to take partial payload for updates while ignoring other columns. I can't find any docs on how to disable it. Tried reverting back to 4.2.*. This is happening even in symfony 4.2.9.
Ohh, so I believe your logic for clearing missing fields is wrong. Double check that you are not clearing missing fields on a patch request
Using the same logic as in this tutorial
<br />$clearMissing = $request->getMethod() !== Request::METHOD_PATCH;<br />$form->submit($data, $clearMissing);<br />It works if I revert back to Symfony 4.1. But, throws can't be null validations in both symfony 4.2 and 4.3.
Hey azeem!
I was pretty sure that you were right that this was the new auto-validation feature kicking in... until you mentioned that you get the same error in 4.2 (where that feature didn't exist!). So, let's assume that it is NOT that feature. In fact, to debug it, let's use Symfony 4.2. Can you see which field the "this value should not be null" is being attached to in Symfony 4.2? One way to find out is to:
A) Make the request
B) Go to /_profiler
C) Click the little "hash" link on the top request in this list (well, your API request should be the top or second to top)
D) Click the "Forms" tab on the left.
This should allow you to see which field this is attached to.
Here's my guess, and you maybe already know this ;). My guess is that you DO have a
@Assert\NotNullconstraint on some field that is already saved to the database as null (maybe because you have some other way of setting this field, and it is ok then for it to be null). Then, when you change some OTHER field on your PATCH request, you're seeing the validation error form this unrelated field. If so, great! This is a totally normal situation. The answer is to use validation groups - here's a good example / use-case for those: https://symfonycasts.com/screencast/symfony3-security/conditional-validation-groupsLet me know if that helps!
Cheers!
thanks weaverryan . I am getting
This value should not be blank.forUser.plainPasswordfield. Tried this on both symfony 4.2 and 4.3. Adding@Assert\NotBlank(groups={"Create"})in User entity did not fix it either.My UserType class has
'validation_groups' => ['Default', 'Create']And UserController::newAction() has:
`
$form = $this->createForm(UserType::class, $user, [
`
azeem Fixed: Had to add validation_groups array in UserController::updateAction() as well. I.e.,
`
$form = $this->createForm(UserType::class, $user, [
]);`
Hi guys,
When I run this to create a new entity with missing arguments I am getting an API problem exception with a 400 error code. However when I run a patch request with empty fields I get a 500 error code, any idea why this is?
Hey Shaun T.
Let's double check two things:
* @Method({"PUT", "PATCH"})What error message do you get?
Cheers!
Hey MolloKhan , thanks for getting back to me, yes I am allowing PUT AND PATCH, and I am doing the $clearMissing thing ;)
Here are the methods for you to see:
// CommentController
/**
* @Route("/api/comments/{id}", name="api_comments_update")
* @Method({"PATCH", "PUT"})
* @param Comment $comment
* @param Request $request
* @return Response
* @Security("is_granted('update', comment)")
*/
public function update(Comment $comment, Request $request)
{
$form = $this->createForm(CommentType::class, $comment);
$this->processForm($request, $form);
if (!($form->isSubmitted() && $form->isValid())) {
$this->throwApiProblemValidationException($form);
}
$em = $this->getDoctrine()->getManager();
$em->persist($comment);
$em->flush();
$response = $this->createApiResponse($comment, 200, ['comments_new']);
return $response;
}
// Base Controller
/**
* @param Request $request
* @param FormInterface $form
*/
protected function processForm(Request $request, FormInterface $form)
{
$data = json_decode($request->getContent(), true);
if ($data === null) {
$apiProblem = new ApiProblem(
400,
ApiProblem::TYPE_INVALID_REQUEST_BODY_FORMAT
);
throw new ApiProblemException($apiProblem);
}
$clearMissing = $request->getMethod() != 'PATCH';
$form->submit($data, $clearMissing);
}
And this is the error message I get:
{
"error": {
"code": 500,
"message": "Internal Server Error",
"exception": [
{
"message": "Type error: Argument 1 passed to App\\Entity\\Comment::setComment() must be of the type string, null given, called in /home/vagrant/code/project/vendor/symfony/property-access/PropertyAccessor.php on line 527",
"class": "Symfony\\Component\\Debug\\Exception\\FatalThrowableError",
"trace": [
{
"namespace": "",
"short_class": "",
"class": "",
"type": "",
"function": "",
"file": "/home/vagrant/code/project/src/Entity/Comment.php",
"line": 126,
"args": []
},
{
"namespace": "App\\Entity",
"short_class": "Comment",
"class": "App\\Entity\\Comment",
"type": "->",
"function": "setComment",
"file": "/home/vagrant/code/project/vendor/symfony/property-access/PropertyAccessor.php",
"line": 527,
"args": [
[
"null",
null
]
]
},
Ohh, I see the problem, you are passing a null to
Comment::setComment()method, you have two options, allow nulls to be passed in, or stop passing nulls :)Cheers!
Thanks Diego,yes I get that part. The issue I have is that when I leave the comment blank on a POST request I get a 400 error code, however with patch I get a 500 error code. Can you explain why PATCH isn’t triggering the api problem exception class?
Because when you are processing a "PATCH" request, it will only persist the field changes coming from the request (because of $clearMissing parameter), all other values will be set to "null", hence it will pass null to
Comment::setComment()Thanks Diego, so how can I resolve this so that it triggers the API Problem exception if an empty comment is submitted?
I have tried removing clearMissing, but I get the same error...
The easiest solution I can think of is to allow passing null values to your setter method. It's not the best option but some times PHP7 strict values can cause some problems
Thanks Diego :)
Hi
Great tutorial.
But I'm having a strange behavior with PATCH (more particularly with the clearMissing option ... I think).
So I want to edit an User who have a role "ROLE_ONE" (roles is an array attribute of my User entity) and replace current role with another, call it "ROLE_TWO".
The json I sent looks like
{
....
(some values only for PUT which needs the complete resource)
....
'roles' : [
'ROLE_TWO'
]
}
With PUT, User is correctly updated. getRoles return an array with only one element (ROLE_TWO).
But with PATCH, getRoles return an array with both roles : ['ROLE_ONE', 'ROLE_TWO'].
After debugging a little, I found that it's because in PATCH method, I submit the form with clearMissing at false.
Is it a normal behavior ? If so, how can I replace my array (and not concatenate it) with PATCH.
Or maybe I'm totally wrong and the behavior comes from other place.
Thanks again.
Hey again Chuck!
Well, this is really interesting :). PATCH - at least the way it's most commonly used - means "update the existing data with this new data, but don't remove any existing fields". So, when you have an array property like this, it's not clear *what* the expected behavior should be. I can certainly see why you'd expect the roles field to be "updated" for both PUT and PATCH, meaning in both cases you would have ROLE_TWO only. But, since PATCH means "don't clear any existing data", you can also see why it makes sense to have ROLE_ONE and ROLE_TWO. It's really interesting!
So, I think the behavior is expected, at least in the Symfony world - as seen by how the form component is handling this with clearMissing set to false. But of course, you should do whatever works best for your API. However, I think you would need to add some manual code to make PATCH have this behavior - I can't think of a way to do this with the form (i.e. I can't think of an option you could set on that field in the form to make it behave this way).
Cheers!
Hi Ryan,
Thanks for your reply.
Ok, I understand now why its an expected behavior.
I "hacked" it this way for having a behavior corresponding to what I want : in the preSubmit event, I do the following :
$data = $event->getData();
$form = $event->getForm();
$form->get('roles')->setData($data['roles']);
Do you think its an acceptable way ?
Thanks again.
Hey Chuck!
Yep, this looks fine to me - a solution was either going to be like this, or in your controller. I like it!
Cheers!
"Houston: no signs of life"
Start the conversation!