Symfony2擁有開箱即用的ACL system。我包括完整起見相關代碼(修改Post
,而不是作爲Comment
在文檔中):
public function addPostAction()
{
$post = new Post();
// setup $form, and bind data
// ...
if ($form->isValid()) {
$entityManager = $this->get('doctrine.orm.default_entity_manager');
$entityManager->persist($post);
$entityManager->flush();
// creating the ACL
$aclProvider = $this->get('security.acl.provider');
$objectIdentity = ObjectIdentity::fromDomainObject($post);
$acl = $aclProvider->createAcl($objectIdentity);
// retrieving the security identity of the currently logged-in user
$securityContext = $this->get('security.context');
$user = $securityContext->getToken()->getUser();
$securityIdentity = UserSecurityIdentity::fromAccount($user);
// grant owner access
$acl->insertObjectAce($securityIdentity, MaskBuilder::MASK_OWNER);
$aclProvider->updateAcl($acl);
}
}
從本質上講,你給當前登錄後實體的用戶所有權(其中包括編輯權限)。然後檢查當前用戶是否有權編輯:
public function editPostAction(Post $post)
{
$securityContext = $this->get('security.context');
// check for edit access
if (false === $securityContext->isGranted('EDIT', $post))
{
throw new AccessDeniedException();
}
// retrieve actual post object, and do your editing here
// ...
}
我高度建議您同時通過Access Control List和Advanced ACL Concepts食譜菜譜更多信息,請閱讀。上面顯示的ACL的實際創建過程非常冗長,我一直致力於緩解疼痛......它是一種工作方式;它的早期測試版本需要大量的愛,所以請自擔風險。
如果我理解正確,您希望能夠限制對該帖子作者的帖子的編輯/更新?我對Yii不熟悉,所以我有點在黑暗中拍攝。 – Problematic
@Problematic - 確實如此。 Yii ACL方法允許您提供業務規則(如我的問題中的片段所示)。它會自動檢查記錄的用戶標識是否等於從數據庫中選擇的帖子的authID或任何其他列)。你知道Symfony 2中的類似功能嗎? – users1184848