-
-
Save mrclay/6b2d941d7a1b9e26b812 to your computer and use it in GitHub Desktop.
Revisions
-
tentacode created this gist
Aug 19, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,22 @@ <?php namespace Tentacode\App\Security; trait ConnectedUser { /** * @Inject * @var Symfony\Component\Security\Core\SecurityContext */ private $securityContext; public function getConnectedUser() { $token = $this->securityContext->getToken(); if (!$token) { throw new \RuntimeException('No user is connected.'); } return $token->getUser(); } } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,32 @@ <?php namespace Tentacode\App\Controller\Person; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; use Tentacode\App\Security\ConnectedUser; use Tentacode\App\Templating\Templating; use Tentacode\Domain\Person\PersonRepository; use Tentacode\Domain\User; class ProfileController { use ConnectedUser; protected $templating; protected $personRepository; public function __construct(Templating $templating, PersonRepository $personRepository) { $this->templating = $templating; $this->personRepository = $personRepository; } public function myProfileAction() { $user = $this->getConnectedUser(); return $this->templating->render('TentacodeAppBundle:Person:profile.html.twig', [ 'user' => $user ]); } } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ <?php return [ 'Symfony\Component\Security\Core\SecurityContext' => DI\link('security.context'), // ... ];