kekrozsak/src/KekRozsak/FrontBundle/Controller/DefaultController.php

67 lines
2.1 KiB
PHP
Raw Normal View History

<?php
namespace KekRozsak\FrontBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
2012-07-15 12:56:31 +00:00
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
use KekRozsak\FrontBundle\Entity\Article;
2012-07-15 12:56:31 +00:00
use KekRozsak\SecurityBundle\Form\Type\UserType;
2012-07-09 15:29:37 +00:00
class DefaultController extends Controller
{
/**
* @Route("/", name="KekRozsakFrontBundle_homepage")
*/
public function homepageAction()
{
$mainPageArticle = $this
->getDoctrine()
->getRepository('KekRozsakFrontBundle:Article')
->findOneBy(
2012-12-20 20:32:35 +00:00
array('mainPage' => true)
);
if (!$mainPageArticle) {
throw $this->createNotFoundException('A keresett cikk nem létezik!');
}
return $this->forward('KekRozsakFrontBundle:Article:view', array('slug' => $mainPageArticle->getSlug()));
}
2012-07-09 15:29:37 +00:00
/**
* @Route("/profil.html", name="KekRozsakFrontBundle_profile_edit")
* @Template("KekRozsakFrontBundle:Default:userprofile.html.twig")
*/
public function profileEditAction()
{
$user = $this->get('security.context')->getToken()->getUser();
2012-07-09 15:29:37 +00:00
$oldPassword = $user->getPassword();
$form = $this->createForm(new UserType(), $user);
$saveSuccess = false;
$request = $this->getRequest();
2012-07-15 12:56:31 +00:00
if ($request->getMethod() == 'POST') {
$form->bind($request);
if ($form->isValid()) {
if ($user->getPassword() == '') {
$user->setPassword($oldPassword);
} else {
$user->setPassword($this->get('security.encoder_factory')->getEncoder($user)->encodePassword($user->getPassword(), $user->getSalt()));
}
2012-07-15 12:56:31 +00:00
2013-02-26 19:40:19 +00:00
$em = $this->getDoctrine()->getManager();
$em->persist($user);
$em->flush();
}
}
2012-07-09 15:29:37 +00:00
return array(
'form' => $form->createView(),
'saveSuccess' => $saveSuccess,
);
}
}