Chapters
28 Chapters
|
2:51:42
|
Login to bookmark this video
-
Course Code
Subscribe to download the code!
Subscribe to download the code!
-
This Video
Subscribe to download the video!
Subscribe to download the video!
-
Subtitles
Subscribe to download the subtitles!
Subscribe to download the subtitles!
-
Course Script
Subscribe to download the script!
Subscribe to download the script!
Scroll down to the script below, click on any sentence (including terminal blocks) to jump to that spot in the video!
Subscribe to jump to this part in the video!
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.
What PHP libraries does this tutorial use?
// composer.json
{
"require": {
"php": ">=8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"api-platform/core": "^3.0", // v3.0.8
"doctrine/annotations": "^1.0", // 1.14.2
"doctrine/doctrine-bundle": "^2.8", // 2.8.0
"doctrine/doctrine-migrations-bundle": "^3.2", // 3.2.2
"doctrine/orm": "^2.14", // 2.14.0
"nelmio/cors-bundle": "^2.2", // 2.2.0
"nesbot/carbon": "^2.64", // 2.64.1
"phpdocumentor/reflection-docblock": "^5.3", // 5.3.0
"phpstan/phpdoc-parser": "^1.15", // 1.15.3
"symfony/asset": "6.2.*", // v6.2.0
"symfony/console": "6.2.*", // v6.2.3
"symfony/dotenv": "6.2.*", // v6.2.0
"symfony/expression-language": "6.2.*", // v6.2.2
"symfony/flex": "^2", // v2.2.4
"symfony/framework-bundle": "6.2.*", // v6.2.3
"symfony/property-access": "6.2.*", // v6.2.3
"symfony/property-info": "6.2.*", // v6.2.3
"symfony/runtime": "6.2.*", // v6.2.0
"symfony/security-bundle": "6.2.*", // v6.2.3
"symfony/serializer": "6.2.*", // v6.2.3
"symfony/twig-bundle": "6.2.*", // v6.2.3
"symfony/ux-react": "^2.6", // v2.6.1
"symfony/validator": "6.2.*", // v6.2.3
"symfony/webpack-encore-bundle": "^1.16", // v1.16.0
"symfony/yaml": "6.2.*" // v6.2.2
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.4", // 3.4.2
"symfony/debug-bundle": "6.2.*", // v6.2.1
"symfony/maker-bundle": "^1.48", // v1.48.0
"symfony/monolog-bundle": "^3.0", // v3.8.0
"symfony/stopwatch": "6.2.*", // v6.2.0
"symfony/web-profiler-bundle": "6.2.*", // v6.2.4
"zenstruck/foundry": "^1.26" // v1.26.0
}
}
26 Comments
Just a nitpick at Api platform I guess (Using Symfony 6.2 from the project code but api platform 3.2 as that is what is installed with 'composer require api'):
The subresource works, I can enter '4' in the docs for the user_id field and I get all treasures that have /api/users/4 as owner...
... but it is still called 'Treasure identifier' in my docs (even after a cache clear), while it's called 'User identifier' in your tutorial?
Same small issue here.
I found this comment which sounds like the solution: https://github.com/api-platform/core/issues/5343#issuecomment-1400434403
I am not going to try this fix right now since this is just tutorial code so I am not sure if it works.
Remember that it's just an array you are passing to an Attribute Class.
As in, you could make a class somewhere that returns that array from a static function, and just reference to that function from inside the ApiResource block. That way you cut down on the amount of openapi stuff that's there, specially if it's just for touching up the documentation.
Another method is to decorate the
api_platform.openapi.factoryservice.In the __invoke() method of your decorator:
Now your decorator does nothing, it's a no-op. But before the
return $openApicall, you can modify the returned OpenApi object, to do as you wish. As in, fix descriptions, change names, add (more) example payloads, add whole operations, etc..We use it to add custom endpoints from other bundles, or from the auth system, to add it to the OpenApi dump so it's a neat complete documentation, even filled with endpoints and resources that don't come from API platform.
Hey Joris-Mak,
Thanks for sharing this trick with others!
Cheers!
For anyone watching this, I am on api platform 4.3 and currently it is possible to do the following using the
openapiparameter and aParameterdefinition for the inputHey HiddeHiddema,
Thanks for sharing this tip with others!
Cheers!
Hi,
I was wondering how to make posts to subresources because you don't show it in the screencast and it does not appear anywhere in the docs.
for example lets say I have a company-employee relationship and want to create new employees for a specific company like /api/companies/1/employees
This is my resource:
But when i post I get this error:
Can someone explain to me how to POST a sub-resource that then gets automatically associated with it's base resource via the id of the base resource given as url parameter?
Hey @Fireball!
Sorry for the very slow reply, life is getting in the way of my availability, and sometimes the team saves tough questions like this for me :).
I maybe don't know the answer either, but I do have some thoughts:
1) You won't like this answer, but if it were me, I would just POST to the non-subresource URL and save yourself the trouble
2) Buuuuuut, let's look deeper at
POST /api/companies/1/employees. It looks like API Platform is trying to load the ONECompany, then getting surprised by the many results. The way you've structured the request makes sense to me, but you could also consider that what you're trying to do is "modify" the resource located at/api/companies/1/employees(modify the employees resource for the companies). Again, what you're doing makes sense to me, and maybe the solution is some simple tweak to youroperations(though I don't see it). My point is, API Platform might want you toPATCHto/api/companies/1/employeesand send the entire payload of all employees. Again, I realize that's not what you want, just trying to shine some possible reasons for why API Platform may not be playing nicely.... or maybe there IS a simple solution and someone can tell us ;). That'd be the best.
Cheers!
Hi Ryan,
thank you for your answer! A few days later I found the solution but forgot I posed here the question.
There is a Provider in ApiPlatform that is marked as experimental and internal but solves exactly this problem.
It's this one:
ApiPlatform\State\CreateProviderI needed it for the following case:
I have an Entity that can have one or more related files which are modeled as Entities using VichUploader. Now while it would work, it would be a bit ugly to mix multipart/form-data with additional variables like the id of the related parent collection, so I wanted to pass the id via url like POST
/api/post/12/files(my upload Endpoint). Files can't be edited, only created and deleted.I created a copy of the CreateProvider in my own code in case it gets deleted in a future ApiPlatform update.
Hi, how to make a subressouces with a ManyToMany relation ? Thanks in advance :)
Hey Julien,
With ManyToMany you need to make this relationship first. We talk about this kind of relationship here: https://symfonycasts.com/screencast/doctrine-relations/many-to-many - but you may want to use this approach with OneToMany / ManyToOne to be able to save some extra fields on ManyToMany relationship, see: https://symfonycasts.com/screencast/doctrine-relations/complex-many-to-many
I hope that helps!
Cheers!
Hey there,
unfortunately, the subresource produced an semantical error.
But I was able to fix it.
My entities are no treasures and users, but items and facets.
So, wehen I did this on the item entity:
I got: "[Semantical Error] line 0, col 40 near 'facets IN (SELECT': Error: Invalid PathExpression. StateFieldPathExpression or SingleValuedAssociationField expected."
This seems to be an SQL related issue, which I do not really understand
BUT! There is a fix! Using toClass and toProperty Attributes:
Working fine now :)
So if any of you got that problem, try this.
Hey @ulfgar-hammerschlag
That's unexpected :) - Perhaps it is due to how your entities relate to each other, but I can't know for certain. Anyways, thank you for sharing it!
Cheers!
When you created the dragon treasures sub resource the sql query used a sub query which I feel is less than ideal. Is there a particular reason it defaults to that approach? And how would I override that?
Hey @Ammar!
I don't know the specifics about why the query is done this way, but yes, I believe in the latest version of API Platform you can override this - see https://github.com/api-platform/core/pull/5732
However, I've never done this - so I'm passing along the hint but I'm not sure if this is exactly what you want. But, I'd love to know if it helps!
Cheers!
Hey Ryan, I have some question regarding subresource (maybe that's not even the solution to my problem):
So we're building a Web-App where a user can manage one or more projects, and the has DIFFERENT roles/permissions for every project. In one he is the manager and sees almost everything, in the other, he is just a normal user and sees only his own stuff. How should I handle the request/uris and permission?
1) With Subresources like
/project/123/task/456, so it's perfectly clear how to access the data, but every ApiResouce needs to be prefixed with "project/:projectId". How do I know the User has the sufficient privileges to access the project or the task? I can't use Default Role Voter, cause it uses the User->roles property that is unaware of the current project (like "is_granted")2) With Filters as payload (but won't work for GET requests, or?)
3) Maybe some kind of state, like a POST selectProject {id: 123} that sets some kind of session value that is automatically injected in every query (in a QueryExtension)
All in all I think it should be possible with the above ideas, but it feels like a lot of effort
Hey @Sebastian-K!
Hmm, interesting! Subresources are cool - and are MUCH nicer than in API Platform 2 (they were kind of a hacked addon the, but they're a first-class citizen now). And so, we can definitely use them. But we also may not need to.
Look at the URL:
/project/123/task/456. That's gorgeous! But/task/456is technically just as functional. If eachTaskhas a relation to itsProject, then from/task/456, we can look up the project from theTaskand then see if the currently-authenticated user is an owner or not. Actually, even if I used subresources, I'd do the same thing: subresources are ultimately a bit of a "vanity" URL. At the end of the day, the object being loaded isTaskwith id456.So, for security, I'd create a custom voter (you're right that the default Role voter doesn't work when you need to decide permission based on some data - like I DO have permission to see Task 456, but not Task 123). Fortunately, we show this a bit in the next episode - https://symfonycasts.com/screencast/api-platform-security/access-control-voter - we first (in earlier chapters) show security using an expression, then we refactor it to a voter here. This strategy I think would work the same whether you decided to use a subresource or not. The
/project/123part of the URL just isn't that important (again, when you go to/project/123/task/456, it really just queries for Task456and THEN you run security checks. I DO think, though you could verify, that if a mischievous user changed the URL to/project/111/task/456, whereTaskDOES belong toProject123, then it would result in a 404).For "collection" resources, the strategy for filtering is slightly different - we talk about it here - https://symfonycasts.com/screencast/api-platform-security/query-extension
This part MAY differ slightly based on if you're using a subresource or not - but I'm not entirely sure:
A) If you do
/tasks, then you can use a query extension like above to modify the query to only return tasks that are related to projects that the current user should have access to.B) If you do
/project/123/tasks, then API Platform will automatically only show tasks for project 123. But, what if the user doesn't have access toProject123 at all? I'm actually not entirely sure how to handle this. The simplest solution is to, like with (A), create a query extension "to only return tasks that are related to projects that the current user should have access to". In that case, if the user doesn't have access toProject123, the query would effectively be:So you'd filter to only tasks for projects the user should be able to see... and if that doesn't include project 123, it would result in null rows. The other way to do it would be to make
/projects/123/tasksreturn a 404, but I'm not entirely sure how to do that :).Let me know if this helps!
Cheers!
Thanks for the reply. Gave me new points to think about
I would now have defined
/users/{user_id}/treasures.{_format}inUserand/treasures/{treasure_id}/owner.{_format}inDragonTreasure.Is there a reason why this is so twisted, purely from the grouping of the namespaces I find it so very strange.
Hey @urk!
I assume you're referring to how the sub-resources almost seem "backward" in the class they live in, right? Like the
/users/{user_id}/treasures.{_format}is a "subresource under user"... and yet we put it intoDragonTreasure.I agree that it's a bit weird... but I think it would be weird the other way too. No perfect option :). The logic is that, because
/users/{user_id}/treasures.{_format}will return "dragon treasures",. that's the class it should live on. It's almost like this is just a "vanity URL" / a different way to fetch dragon treasures. Of course, the downside is that the operations that we think of as "operations under /api/users" are split between multiple classes.Anyway, I hope that gives some explanation at least!
Cheers!
Hey Ryan
Yes, you heard me correctly and I know what you mean.
It depends from which side you look at it. But it doesn't really have a technical reason. Thank you.
Thanks and cheers, Urs
How can I generate the route from the $iriConverter class? That is, I don't want to hardcode the route (for the same reason I use path() in twig and never hard-code the route)
Version 2 of API Platform had a concept of subresources, version 3 doesn't, but I'm not sure what to pass to create the route.
Hey @Tac-Tacelosky!
Hmm, that's a good question! I've not done this yet, but... the
getIriFromResource()method has a 3rd argumentOperation $operation = null. But it looks a little tricky.First, I think you need to give your operation a name - apparently you can add
name: 'foo'inside an operation - like anew GetCollection(name: 'my_subresource_get_collection'). Then, to fetch that object, I think you can do this:Give that a try - I might not have things quite right - a bit of digging and guessing to find this - a new part of the code for me!
Cheers!
Hey!
Thanks a lot for this tutorial, but I found nothing about security in here. I mean especially the way to protect only read relations of a user for the user itself. Will there be another tutorial for handling voters etc.?
Thank you for your answer!
Hey Thomas,
yes, you're right, in this tutorial we don't talk about security, that's the topic of our next tutorial https://symfonycasts.com/screencast/api-platform3-security
it's going to be released soon :)
Cheers!
Wow - that's what I hoped!
Thank you for replying!
"Houston: no signs of life"
Start the conversation!