我已经像文档一样实现了克隆操作。如何将克隆操作的访问权限限制为创建对象的用户?
我的操作中已经有一个访问被拒绝的异常检查,但是如果用户不是该对象的作者,我现在如何在列表视图中隐藏该按钮。用户仍然可以列出订单并显示它。
这是我的路线:
protected function configureRoutes(RouteCollection $collection)
{
$collection->add('clone', $this->getRouterIdParameter().'/clone');
}
我的列表字段:
protected function configureListFields(ListMapper $listMapper)
{
$listMapper
->add('_action', 'actions', array(
'actions' => array(
'show' => array(),
'edit' => array(),
'clone' => array(
'template' => 'AppBundle:Sonata/Button:clone_button.html.twig'
),
), 'label' => 'Actions'
))
;
}
和我的克隆行动:
public function cloneAction($id = null)
{
$object = $this->admin->getSubject();
if (!$object) {
throw new NotFoundHttpException(sprintf('Unable to find the object with id : %s', $id));
}
If (!$object->isAuthor($this->getUser())) {
throw new AccessDeniedException();
}
$clonedObject = clone $object;
$this->admin->create($clonedObject);
$this->addFlash('sonata_flash_success', 'Cloned successfully');
return new RedirectResponse($this->admin->generateUrl('edit', array('id' => $clonedObject->getId())));
}
正如您在我的克隆操作中所看到的,我检查用户是否是订单的作者。但是,如何通过检查我的isAuthor
功能完全删除列表中的按钮?
因为现在用户可以看到按钮但是如果他未经授权克隆订单并且他点击按钮则会获得访问被拒绝的异常。所以我根本不想显示按钮。 编辑按钮的计数相同。
我想过这样的事情:
protected function configureRoutes(RouteCollection $collection)
{
$user = $this->getConfigurationPool()->getContainer()->get('security.token_storage')
->getToken()->getUser();
If (!$object->isAuthor($user)) {
$collection->remove('edit');
$collection->remove('clone');
}
}
但显然无法做到这一点。
有人知道怎么做吗?
答案 0 :(得分:2)
我会创建a Symfony Voter并从操作中删除检查。检查将在选举外部操作中完成,并且可以在任何地方完成,包括模板。您应该检查模板,它可能已经进行了检查。
此外,偏离主题的专业提示,始终在您的例外中提供一条消息。
throw new AccessDeniedException('Not an author of this object');