モデルに ACL システムを実装しており、共通コードを共通ヘルパー クラスに抽出したいと考えています。このようなことを適切に行う方法の例は見つかりませんが、常にそれを行う必要があると感じています。
たとえば、コントローラーにコードのチャンクがあるとしましょう(ドキュメントから直接取得):
// creating the ACL
$aclProvider = $this->get('security.acl.provider');
$objectIdentity = ObjectIdentity::fromDomainObject($asset);
$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);
私はむしろ次のことを望んでいます:
$this->get('my_helpers')->bindUserToObject($asset, MaskBuilder::MASK_OWNER);
「my_helpers」サービスを実装するにはどうすればよいですか? 私はそれがサービスであると確信していますが、「サービス」の概念はまだ少し混乱していると思います.