Now injecting services with JMSDiExtraBundle

Signed-off-by: Gergely POLONKAI <polesz@w00d5t0ck.info>
This commit is contained in:
Gergely POLONKAI 2012-08-16 19:06:00 +02:00
parent cd361a8ca9
commit 1d0a513ea2
9 changed files with 123 additions and 84 deletions

View File

@ -2,6 +2,12 @@ imports:
- { resource: parameters.yml }
- { resource: security.yml }
jms_di_extra:
locations:
all_bundles: false
bundles: [ KekRozsakFrontBundle, KekRozsakSecurityBundle ]
directories: [ "%kernel.root_dir%/../src" ]
framework:
#esi: ~
#translator: { fallback: %locale% }

View File

@ -5,7 +5,12 @@ use Symfony\Component\Form\AbstractTypeExtension;
use Symfony\Component\Form\FormInterface;
use Symfony\Component\Form\FormView;
use Symfony\Component\Form\FormBuilderInterface;
use JMS\DiExtraBundle\Annotation as DI;
/**
* @DI\Service("form.type_extension.help_message")
* @DI\Tag("form.type_extension", attributes={"alias" = "field"})
*/
class HelpMessageTypeExtension extends AbstractTypeExtension
{
public function buildForm(FormBuilderInterface $builder, array $options)

View File

@ -3,18 +3,4 @@
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<services>
<service id="kek_rozsak_front.twig_extension.events" class="KekRozsak\FrontBundle\Twig\EventsExtension">
<argument type="service" id="doctrine" />
<argument type="service" id="security.context" />
<tag name="twig.extension" />
</service>
<service id="form.type_extension.help_message" class="KekRozsak\FrontBundle\Form\Extension\HelpMessageTypeExtension">
<tag name="form.type_extension" alias="field" />
</service>
<service id="bb.twig.extension" class="KekRozsak\FrontBundle\Twig\TwigBBExtension">
<argument type="service" id="service_container" />
<tag name="twig.extension" />
</service>
</services>
</container>

View File

@ -4,12 +4,26 @@ namespace KekRozsak\FrontBundle\Twig;
use Symfony\Bridge\Doctrine\RegistryInterface;
use Symfony\Component\Security\Core\SecurityContextInterface;
use JMS\DiExtraBundle\Annotation as DI;
/**
* @DI\Service
* @DI\Tag("twig.extension")
*/
class EventsExtension extends \Twig_Extension
{
protected $_doctrine;
protected $_securityContext;
/**
* @DI\InjectParams({
* "doctrine" = @DI\Inject("doctrine"),
* "securityContext" = @DI\Inject("security.context")
* })
*
* @param \Symfony\Bridge\Doctrine\RegistryInterface $doctrine
* @param \Symfony\Component\Security\Core\SecurityContextInterface $securityContext
*/
public function __construct(RegistryInterface $doctrine, SecurityContextInterface $securityContext)
{
$this->_doctrine = $doctrine;
@ -35,15 +49,15 @@ class EventsExtension extends \Twig_Extension
$events = $query->getResult();
$eventList = array();
for ($i = 1; $i <= $numDays; $i++)
{
$date = \DateTime::createFromFormat('Y-m-d', $today->format('Y-m-' . sprintf('%02d', $i)));
for ($i = 1; $i <= $numDays; $i++) {
$date = \DateTime::createFromFormat(
'Y-m-d',
$today->format('Y-m-' . sprintf('%02d', $i))
);
$eventList[$i]['date'] = $date;
$eventList[$i]['events'] = array();
foreach ($events as $event)
{
if ($event->isOnDate($date))
{
foreach ($events as $event) {
if ($event->isOnDate($date)) {
$eventList[$i]['events'][] = $event;
}
}

View File

@ -2,15 +2,26 @@
namespace KekRozsak\FrontBundle\Twig;
use Symfony\Component\DependencyInjection\ContainerInterface;
use JMS\DiExtraBundle\Annotation as DI;
/**
* @DI\Service
* @DI\Tag("twig.extension")
*
*/
class TwigBBExtension extends \Twig_Extension
{
private $container;
private $assets;
/**
* @DI\InjectParams({
* "container" = @DI\Inject("service_container")
* })
* @param \Symfony\Component\DependencyInjection\ContainerInterface $container
*/
public function __construct(ContainerInterface $container)
{
$this->container = $container;
$this->assets = $container->get('templating.helper.assets');
}
public function getFilters()
@ -67,8 +78,7 @@ class TwigBBExtension extends \Twig_Extension
$sentence,
'<img src="'
. $this
->container
->get('templating.helper.assets')
->assets
->getUrl(
'upload/images/'
. (($ns == '') ? '' : $ns . '/')

View File

@ -3,17 +3,4 @@
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<services>
<service id="kek_rozsak_security.encoder.crypt" class="KekRozsak\SecurityBundle\Service\CryptEncoder">
</service>
<service id="kek_rozsak_security.auth.success" class="KekRozsak\SecurityBundle\Security\AuthSuccess">
<argument type="service" id="doctrine" />
<tag name="kernel.event_listener" event="security.authentication.success" />
</service>
<service id="kek_rozsak_security.twig_extension.userdataspan" class="KekRozsak\SecurityBundle\Twig\UserDataSpanExtension">
<argument type="service" id="router" />
<argument type="service" id="security.context" />
<tag name="twig.extension" />
</service>
</services>
</container>

View File

@ -6,11 +6,26 @@ use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
use Symfony\Bridge\Doctrine\RegistryInterface;
use Symfony\Component\Security\Core\Event\AuthenticationEvent;
use JMS\DiExtraBundle\Annotation as DI;
/**
* @DI\Service
* @DI\Tag("kernel.event_listener", attributes={"event" = "security.authentication.success"})
*/
class AuthSuccess implements AuthenticationSuccessHandlerInterface
{
/**
* The Doctrine interface
*
* @var Symfony\Bridge\Doctrine\RegistryInterface $doctrine
*/
private $doctrine;
/**
* @DI\InjectParams
*
* @param \Symfony\Bridge\Doctrine\RegistryInterface $doctrine
*/
public function __construct(RegistryInterface $doctrine)
{
$this->doctrine = $doctrine;
@ -34,4 +49,3 @@ class AuthSuccess implements AuthenticationSuccessHandlerInterface
$em->flush();
}
}

View File

@ -2,7 +2,11 @@
namespace KekRozsak\SecurityBundle\Service;
use Symfony\Component\Security\Core\Encoder\PasswordEncoderInterface;
use JMS\DiExtraBundle\Annotation as DI;
/**
* @DI\Service("kek_rozsak_security.encoder.crypt")
*/
class CryptEncoder implements PasswordEncoderInterface
{
function encodePassword($raw, $salt)
@ -15,4 +19,3 @@ class CryptEncoder implements PasswordEncoderInterface
return (crypt($raw, $salt) == $encoded);
}
}

View File

@ -4,14 +4,28 @@ namespace KekRozsak\SecurityBundle\Twig;
use Symfony\Component\Security\Core\SecurityContextInterface;
use Symfony\Bundle\FrameworkBundle\Routing\Router;
use JMS\DiExtraBundle\Annotation as DI;
use KekRozsak\SecurityBundle\Entity\User;
/**
* @DI\Service
* @DI\Tag("twig.extension")
*/
class UserDataSpanExtension extends \Twig_Extension
{
protected $_securityContext;
protected $_router;
/**
* @DI\InjectParams({
* "router" = @DI\Inject("router"),
* "security" = @DI\Inject("security.context")
* })
*
* @param \Symfony\Bundle\FrameworkBundle\Routing\Router $router
* @param \Symfony\Component\Security\Core\SecurityContextInterface $security
*/
public function __construct(Router $router, SecurityContextInterface $security)
{
$this->_router = $router;