X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/69c7d987b329fbc6c3df1b8a06f40f438ede4439..a7b78b71660a10e30d273f0c8a3660f7ab355e96:/Controller/DefaultController.php diff --git a/Controller/DefaultController.php b/Controller/DefaultController.php index 5ec04eb..078b180 100644 --- a/Controller/DefaultController.php +++ b/Controller/DefaultController.php @@ -2,39 +2,40 @@ namespace Rapsys\AirBundle\Controller; -#use Symfony\Bundle\FrameworkBundle\Controller\Controller; -use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; -use Psr\Container\ContainerInterface; -use Symfony\Bundle\FrameworkBundle\Translation\Translator; -use Symfony\Component\Routing\Generator\UrlGeneratorInterface; -use Symfony\Component\HttpFoundation\Request; -use Rapsys\AirBundle\Entity\Session; use Rapsys\AirBundle\Entity\Application; +use Rapsys\AirBundle\Entity\Session; +use Symfony\Bridge\Twig\Mime\TemplatedEmail; +use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; +use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\Form\FormError; +use Symfony\Component\HttpFoundation\Request; +use Symfony\Component\Mailer\Exception\TransportExceptionInterface; +use Symfony\Component\Mailer\MailerInterface; +use Symfony\Component\Mime\NamedAddress; +use Symfony\Component\Routing\Generator\UrlGeneratorInterface; +use Symfony\Component\Translation\TranslatorInterface; -#class DefaultController extends Controller { class DefaultController extends AbstractController { - //Container instance - protected $container; + //Config array + protected $config; //Translator instance protected $translator; - public function __construct(ContainerInterface $container, Translator $translator) { - //Set the container - $this->container = $container; + public function __construct(ContainerInterface $container, TranslatorInterface $translator) { + //Retrieve config + $this->config = $container->getParameter($this->getAlias()); //Set the translator $this->translator = $translator; } - //FIXME: we need to change the $this->container->getParameter($alias.'.xyz') to $this->container->getParameter($alias)['xyz'] - public function contactAction(Request $request) { + public function contact(Request $request, MailerInterface $mailer) { //Set section $section = $this->translator->trans('Contact'); //Set title - $title = $section.' - '.$this->translator->trans($this->container->getParameter('rapsys_air.title')); + $title = $section.' - '.$this->translator->trans($this->config['site']['title']); //Create the form according to the FormType created previously. //And give the proper parameters @@ -52,53 +53,50 @@ class DefaultController extends AbstractController { //Get data $data = $form->getData(); - //Get contact name - $contactName = $this->container->getParameter('rapsys_air.contact_name'); - - //Get contact mail - $contactMail = $this->container->getParameter('rapsys_air.contact_mail'); - - //Get logo - $logo = $this->container->getParameter('rapsys_air.logo'); - - //Get title - $title = $this->translator->trans($this->container->getParameter('rapsys_air.title')); - - //Get subtitle - $subtitle = $this->translator->trans('Hi,').' '.$contactName; - - //Create sendmail transport - $transport = new \Swift_SendmailTransport(); - - //Create mailer using transport - $mailer = new \Swift_Mailer($transport); - - //Create the message - ($message = new \Swift_Message($data['subject'])) - #->setSubject($data['subject']) - ->setFrom([$data['mail'] => $data['name']]) - ->setTo([$contactMail => $contactName]) - ->setBody($data['message']) - ->addPart( - $this->renderView( - '@RapsysAir/mail/generic.html.twig', - [ - 'logo' => $logo, - 'title' => $title, - 'subtitle' => $subtitle, - 'home' => $this->get('router')->generate('rapsys_air_homepage', [], UrlGeneratorInterface::ABSOLUTE_URL), - 'subject' => $data['subject'], - 'contact_name' => $contactName, - 'message' => strip_tags($data['message']) - ] - ), - 'text/html' + //Create message + $message = (new TemplatedEmail()) + //Set sender + ->from(new NamedAddress($data['mail'], $data['name'])) + //Set recipient + //XXX: remove the debug set in vendor/symfony/mime/Address.php +46 + ->to(new NamedAddress($this->config['contact']['mail'], $this->config['contact']['name'])) + //Set subject + ->subject($data['subject']) + + //Set path to twig templates + ->htmlTemplate('@RapsysAir/mail/contact.html.twig') + ->textTemplate('@RapsysAir/mail/contact.text.twig') + + //Set context + ->context( + [ + 'site_logo' => $this->config['site']['logo'], + 'site_title' => $this->config['site']['title'], + 'site_url' => $this->get('router')->generate('rapsys_air_homepage', [], UrlGeneratorInterface::ABSOLUTE_URL), + 'copy_long' => $this->config['copy']['long'], + 'copy_short' => $this->config['copy']['short'], + 'subject' => $data['subject'], + 'message' => strip_tags($data['message']), + ] ); - //Send the message - if ($mailer->send($message)) { - //Redirect to cleanup the form - return $this->redirectToRoute('rapsys_air_contact', ['sent' => 1]); + //Try sending message + //XXX: mail delivery may silently fail + try { + //Send message + $mailer->send($message); + + //Redirect on the same route with sent=1 to cleanup form + return $this->redirectToRoute($request->get('_route'), ['sent' => 1]+$request->get('_route_params')); + //Catch obvious transport exception + } catch(TransportExceptionInterface $e) { + if ($message = $e->getMessage()) { + //Add error message mail unreachable + $form->get('mail')->addError(new FormError($this->translator->trans('Unable to contact: %mail%: %message%', ['%mail%' => $this->config['contact']['mail'], '%message%' => $this->translator->trans($message)]))); + } else { + //Add error message mail unreachable + $form->get('mail')->addError(new FormError($this->translator->trans('Unable to contact: %mail%', ['%mail%' => $this->config['contact']['mail']]))); + } } } } @@ -107,28 +105,30 @@ class DefaultController extends AbstractController { return $this->render('@RapsysAir/form/contact.html.twig', ['title' => $title, 'section' => $section, 'form' => $form->createView(), 'sent' => $request->query->get('sent', 0)]); } - public function indexAction() { + public function index() { //Set section $section = $this->translator->trans('Index'); //Set title - $title = $section.' - '.$this->translator->trans($this->container->getParameter('rapsys_air.title')); + $title = $section.' - '.$this->translator->trans($this->config['site']['title']); //Render template return $this->render('@RapsysAir/page/index.html.twig', ['title' => $title, 'section' => $section]); } - public function adminAction(Request $request) { + public function admin(Request $request) { //Prevent non-admin to access here - //TODO: maybe check if user is connected 1st ? - $this->denyAccessUnlessGranted('ROLE_ADMIN', null, 'Unable to access this page!'); + $this->denyAccessUnlessGranted('ROLE_GUEST', null, 'Unable to access this page without ROLE_GUEST!'); //Set section $section = $this->translator->trans('Admin'); //Set title - $title = $section.' - '.$this->translator->trans($this->container->getParameter('rapsys_air.title')); + $title = $section.' - '.$this->translator->trans($this->config['site']['title']); + header('Content-Type: text/plain'); + var_dump('TODO'); + exit; //Create the form according to the FormType created previously. //And give the proper parameters $form = $this->createForm('Rapsys\AirBundle\Form\ApplicationType', null, [ @@ -292,7 +292,7 @@ class DefaultController extends AbstractController { return $this->render('@RapsysAir/admin/index.html.twig', ['title' => $title, 'section' => $section, 'form' => $form->createView(), 'calendar' => $calendar]); } - public function sessionAction(Request $request, $id) { + public function session(Request $request, $id) { /*header('Content-Type: text/plain'); var_dump($calendar); exit;*/ @@ -301,7 +301,7 @@ class DefaultController extends AbstractController { $section = $this->translator->trans('Session %id%', ['%id%' => $id]); //Set title - $title = $section.' - '.$this->translator->trans($this->container->getParameter('rapsys_air.title')); + $title = $section.' - '.$this->translator->trans($this->config['site']['title']); //Create the form according to the FormType created previously. //And give the proper parameters @@ -320,4 +320,11 @@ class DefaultController extends AbstractController { return $this->render('@RapsysAir/admin/session.html.twig', ['title' => $title, 'section' => $section, /*'form' => $form->createView(),*/ 'session' => $session]); } + + /** + * {@inheritdoc} + */ + public function getAlias() { + return 'rapsys_air'; + } }