IndexController.php 4.17 KB
Newer Older
Julien Jorry committed
1 2 3 4
<?php

namespace App\Controller;

5
use App\Entity\Faq;
6
use App\Entity\User;
7
use App\Entity\Usergroup;
8
use App\Form\Type\TransactionAdherentPrestataireFormType;
9
use Doctrine\ORM\EntityManagerInterface;
10 11 12 13 14
use Geocoder\Provider\Nominatim\Nominatim;
use Geocoder\Query\GeocodeQuery;
use Nelmio\ApiDocBundle\Annotation\Model;
use Nelmio\ApiDocBundle\Annotation\Security;
use Swagger\Annotations as SWG;
Julien Jorry committed
15
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
16
use Symfony\Component\HttpFoundation\Request;
Julien Jorry committed
17 18 19 20
use Symfony\Component\Routing\Annotation\Route;

class IndexController extends AbstractController
{
21 22 23 24 25 26 27
    private $em;

    public function __construct(EntityManagerInterface $em)
    {
        $this->em = $em;
    }

Julien Jorry committed
28
    /**
Julien Jorry committed
29
     * @Route("/", name="index")
Julien Jorry committed
30 31
     */
    // public function index(TranslatorInterface $translator)
32
    public function index(Request $request)
Julien Jorry committed
33 34 35 36 37 38 39 40 41
    {
        // Exemple pour la traduction :
        // $translated = $translator->trans('Symfony is great');
        // $translator->transChoice(
        //     'Hurry up %name%! There is one apple left.|There are %count% apples left.',
        //     10,
        //     // no need to include %count% here; Symfony does that for you
        //     array('%name%' => $user->getName())
        // );
42

43 44 45 46
        return $this->render('index.html.twig', [
            'news' => array(),
        ]);
    }
47

48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
    /**
     * @Route("/adherer", name="adherer")
     */
    public function adhererAction(Request $request)
    {
        // @TODO : formulaire d'adhésion sans cotisation ? à valider après ?

        // $adherent = new Adherent();
        // $user = $this->um->createUser();
        // $groupe = $this->em->getRepository(Usergroup::class)->findOneByName('Adherent');
        // $user->setEnabled(true);
        // $user->addGroup($groupe);
        // $user->addRole('ROLE_ADHERENT');
        // $adherent->setEcompte('0');
        // $user->setAdherent($adherent);
        // $adherent->setUser($user);
        // if (count($adherent->getUser()->getCotisations()) <= 0) {
        //     $cotisation = new Cotisation();
        //     $cotisation->setDebut(new \DateTime());
        //     $cotisation->setFin(new \DateTime('+ 1 year'));
        //     $adherent->getUser()->addCotisation($cotisation);
        // }
        // if ($adherent->getGeoloc() == null) {
        //     $adherent->setGeoloc(new Geoloc());
        // }
        $form = $this->createForm(AdhererFormType::class);
        $form->handleRequest($request);

        if ($form->isSubmitted() && $form->isValid()) {
            // $this->em->persist($adherent);
            // $this->em->flush();
            // $this->addFlash(
            //     'success',
            //     'Adhésion bien pris en compte, vous recevrez un email très bientôt !'
            // );
        }

        return $this->render('adherent/adherer.html.twig', array(
            'user' => $this->getUser(),
            'form' => $form->createView()
        ));
    }

    /**
     * @Route("/group/choice/{id}", name="group_choice")
     */
    public function groupChoiceAction(Usergroup $group, Request $request)
    {
        $request->getSession()->remove('_choixGroup');
        // On enregistre le rôle choisit en session
        $request->getSession()->set('_groupId', $group->getId());

        // @TODO : On redirige sur l'index (ou en fonction du rôle?)
        return $this->redirectToRoute('index');
    }

104 105 106 107 108
    /**
     * @Route("/charte", name="charte")
     */
    public function charteAction()
    {
109
        return $this->render('charte.html.twig');
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
    }

    /**
     * @Route("/faq", name="faq")
     */
    public function faqAction()
    {
        return $this->render('faq/liste.html.twig', array(
            'faqs' => $this->em->getRepository(Faq::class)->findBy(array('enabled' => true), array('createdAt' => 'DESC'))
        ));
    }


    /**
     * @Route("/faq/{slug}", name="show_faq")
     */
    public function showFaqAction(Faq $faq)
    {
        return $this->render('faq/show.html.twig', array(
            'faq' => $faq
        ));
    }

    /**
     * @Route("/contact", name="contact")
     */
Julien Jorry committed
136
    public function contactAction()
137
    {
138
        return $this->render('contact.html.twig');
139
    }
Julien Jorry committed
140
}