我想知道如何使用api-platform保护自定义itemsOperation,我在文档中找到了这段代码:
/**
* Secured resource.
*
* @ApiResource(
* attributes={"access_control"="is_granted('ROLE_USER')"},
* collectionOperations={
* "get"={"method"="GET"},
* "post"={"method"="POST", "access_control"="is_granted('ROLE_ADMIN')"}
* },
* itemOperations={
* "get"{"method"="GET","access_control"="is_granted('ROLE_USER') and object.owner == user"}
* }
* )
* @ORM\Entity
*/
但我想做点什么:
/**
* @ApiResource(itemOperations={
* "get"={"method"="GET"} //Public route,
* "special"={"route_name"="special", "access_control"="is_granted('ROLE_ADMIN') or object.owner == user"}},
* "special2"={"route_name"="special2", "access_control"="is_granted('ROLE_USER')"}
* })
*/
有用吗?或者我必须在特殊的Action文件中检查用户角色?
在这种情况下,最佳做法是什么?
答案 0 :(得分:5)
您应该考虑创建自定义symfony voter
请尝试使用此代码,如果您对选民不了解,我就在这里
<?php
namespace yournamespace;
use App\Entity\User;
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
use Symfony\Component\Security\Core\Authorization\Voter\Voter;
class YourObjectVoter extends Voter
{
const YOUR_CUSTOM_ACTION = 'custom_action';
protected function supports($attribute, $subject)
{
if (!$subject instanceof YourObject) {
return false;
}
if (!in_array($attribute, array(self::YOUR_CUSTOM_ACTION))) {
return false;
}
return true;
}
protected function voteOnAttribute($attribute, $subject, TokenInterface $token)
{
if($this->isGranted('ROLE_ADMIN')) {
return true;
}
$user = $token->getUser();
if(!$user instanceOf User) {
return false;
}
if($subject->getOwner() === $user) {
return true;
}
return false;
}
}
然后,您需要将选民定义为标记 security.voter
的服务class: Yournamespace\Security\YourObjectVoter
public: false
tags:
- { name: security.voter }
custom_action 与选民类中定义的字符串相同
使用此代码,您可以通过以下方式保护您的操作:
itemOperations={
* "get"{"method"="GET","access_control"="is_granted('custom_action', object)"}
* }
如果它不起作用,请告诉我。我希望它有所帮助!