mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
296 lines
9.7 KiB
PHP
296 lines
9.7 KiB
PHP
<?php
|
|
|
|
namespace CL\Chill\PersonBundle\Controller;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
|
use CL\Chill\PersonBundle\Entity\Person;
|
|
use CL\Chill\PersonBundle\Form\PersonType;
|
|
use CL\Chill\PersonBundle\Form\CreationPersonType;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
|
|
class PersonController extends Controller {
|
|
|
|
public function viewAction($id){
|
|
|
|
$person = $this->_getPerson($id);
|
|
|
|
if ($person === null) {
|
|
return $this->createNotFoundException("Person with id $id not found on this server");
|
|
}
|
|
|
|
return $this->render('CLChillPersonBundle:Person:view.html.twig',
|
|
array("person" => $person)
|
|
);
|
|
|
|
}
|
|
|
|
public function editAction($id) {
|
|
$person = $this->_getPerson($id);
|
|
|
|
if ($person === null) {
|
|
return $this->createNotFoundException();
|
|
}
|
|
|
|
$form = $this->createForm(new PersonType(), $person, array(
|
|
'action' => $this->generateUrl('chill_person_general_update', array(
|
|
'id' => $id
|
|
))
|
|
));
|
|
|
|
|
|
|
|
return $this->render('CLChillPersonBundle:Person:edit.html.twig',
|
|
array('person' => $person,
|
|
'form' => $form->createView()));
|
|
}
|
|
|
|
public function updateAction($id, Request $request) {
|
|
$person = $this->_getPerson($id);
|
|
|
|
if ($person === null) {
|
|
return $this->createNotFoundException();
|
|
}
|
|
|
|
$form = $this->createForm(new PersonType(), $person);
|
|
|
|
if ($request->getMethod() === 'POST') {
|
|
$form->handleRequest($request);
|
|
|
|
if ( ! $form->isValid() ) {
|
|
|
|
$errors = $form->getErrorsAsString();
|
|
|
|
$this->get('session')
|
|
->getFlashBag()->add('danger', 'error' . $errors);
|
|
|
|
return $this->render('CLChillPersonBundle:Person:edit.html.twig',
|
|
array('person' => $person,
|
|
'form' => $form->createView()));
|
|
}
|
|
|
|
$this->get('session')->getFlashBag()
|
|
->add('success',
|
|
$this->get('translator')
|
|
->trans('validation.Person.form.person.success')
|
|
);
|
|
|
|
$em = $this->getDoctrine()->getManager();
|
|
$em->flush();
|
|
|
|
$url = $this->generateUrl('chill_person_view', array(
|
|
'id' => $person->getId()
|
|
));
|
|
|
|
return $this->redirect($url);
|
|
}
|
|
}
|
|
|
|
public function searchAction() {
|
|
$q = $this->getRequest()->query->getAlnum('q', '');
|
|
$q = trim($q);
|
|
|
|
if ( $q === '' ) {
|
|
$this->get('session')
|
|
->getFlashBag()
|
|
->add('info',
|
|
$this->get('translator')
|
|
->trans('search.q_is_empty') );
|
|
}
|
|
|
|
$em = $this->getDoctrine()->getManager();
|
|
|
|
$offset = $this->getRequest()->query->getInt('offet', 0);
|
|
$limit = $this->getRequest()->query->getInt('limit', 30);
|
|
|
|
$dql = 'SELECT p FROM CLChillPersonBundle:Person p'
|
|
. ' WHERE'
|
|
. ' LOWER(p.name) like LOWER(:q)'
|
|
. ' OR LOWER(p.surname) like LOWER(:q)';
|
|
|
|
if ($this->container->getParameter('cl_chill_person.search.use_double_metaphone')) {
|
|
$dql .= ' OR DOUBLEMETAPHONE(p.name) = DOUBLEMETAPHONE(:qabsolute)';
|
|
}
|
|
|
|
|
|
$query = $em->createQuery($dql)
|
|
->setParameter('q', '%'.$q.'%');
|
|
if ($this->container->getParameter('cl_chill_person.search.use_double_metaphone')) {
|
|
$query->setParameter('qabsolute', $q);
|
|
}
|
|
|
|
// ->setOffset($offset)
|
|
// ->setLimit($limit)
|
|
$persons = $query->getResult() ;
|
|
|
|
|
|
if (count($persons) === 0 ){
|
|
$this->get('session')
|
|
->getFlashBag()
|
|
->add('info',
|
|
$this->get('translator')
|
|
->trans('search.no_results', array(
|
|
'%q%' => $q
|
|
))
|
|
);
|
|
}
|
|
|
|
return $this->render('CLChillPersonBundle:Person:list.html.twig',
|
|
array(
|
|
'persons' => $persons,
|
|
'pattern' => $q
|
|
));
|
|
}
|
|
|
|
public function newAction() {
|
|
|
|
$form = $this->createForm(
|
|
new CreationPersonType(CreationPersonType::FORM_NOT_REVIEWED),
|
|
null, array('action' => $this->generateUrl('chill_person_review')));
|
|
|
|
return $this->_renderNewForm($form);
|
|
|
|
|
|
}
|
|
|
|
private function _renderNewForm($form) {
|
|
return $this->render('CLChillPersonBundle:Person:create.html.twig',
|
|
array(
|
|
'form' => $form->createView()
|
|
));
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param type $form
|
|
* @return \CL\Chill\PersonBundle\Entity\Person
|
|
*/
|
|
private function _bindCreationForm($form) {
|
|
$date = new \DateTime($form['creation_date']->getData());
|
|
$person = new Person($date);
|
|
|
|
|
|
$date_of_birth = new \DateTime($form['dateOfBirth']->getData());
|
|
|
|
$person->setName($form['name']->getData())
|
|
->setSurname($form['surname']->getData())
|
|
->setGenre($form['genre']->getData())
|
|
->setDateOfBirth($date_of_birth)
|
|
;
|
|
|
|
return $person;
|
|
}
|
|
|
|
public function reviewAction() {
|
|
$request = $this->getRequest();
|
|
|
|
if ($request->getMethod() !== 'POST') {
|
|
$r = new Response("You must send something to review the creation of a new Person");
|
|
$r->setStatusCode(400);
|
|
return $r;
|
|
}
|
|
|
|
$form = $this->createForm(
|
|
new CreationPersonType(CreationPersonType::FORM_BEING_REVIEWED),
|
|
null, array('action' => $this->generateUrl('chill_person_create')));
|
|
|
|
$form->handleRequest($request);
|
|
|
|
$person = $this->_bindCreationForm($form);
|
|
|
|
$errors = $this->get('validator')
|
|
->validate($person, array('creation'));
|
|
|
|
//validate history
|
|
$histories = $person->getHistories();
|
|
|
|
foreach ($histories as $history) {
|
|
$errors_history = $this->get('validator')
|
|
->validate($history);
|
|
|
|
//group errors :
|
|
foreach($errors_history as $error) {
|
|
$errors->add($error);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
if ( count($errors) > 0) {
|
|
|
|
$flashBag = $this->get('session')->getFlashBag();
|
|
$translator = $this->get('translator');
|
|
|
|
$flashBag->add('danger', $translator->trans('controller.Person.review.problem_with_data'));
|
|
|
|
foreach($errors as $error) {
|
|
$flashBag->add('info', $error->getMessage());
|
|
}
|
|
|
|
$form = $this->createForm(
|
|
new CreationPersonType(CreationPersonType::FORM_NOT_REVIEWED),
|
|
array('action' => $this->generateUrl('chill_person_create')));
|
|
|
|
$form->handleRequest($request);
|
|
|
|
return $this->_renderNewForm($form);
|
|
}
|
|
|
|
|
|
|
|
$em = $this->getDoctrine()->getManager();
|
|
|
|
$query = $em->createQuery();
|
|
|
|
$dql = 'SELECT p from CLChillPersonBundle:Person p WHERE '
|
|
. 'LOWER(p.name) LIKE LOWER(:name)'
|
|
. ' OR LOWER(p.surname) LIKE LOWER(:surname)';
|
|
|
|
$query->setParameter('name', $form['name']->getData())
|
|
->setParameter('surname', $form['surname']->getData());
|
|
|
|
if ($this->container
|
|
->getParameter('cl_chill_person.search.use_double_metaphone')) {
|
|
$dql .= ' OR DOUBLEMETAPHONE(p.name) LIKE DOUBLEMETAPHONE(:name)';
|
|
}
|
|
|
|
$query->setDql($dql);
|
|
|
|
$alternatePersons = $query->getResult();
|
|
|
|
if (count($alternatePersons) === 0) {
|
|
return $this->forward('CLChillPersonBundle:Person:create');
|
|
}
|
|
|
|
$this->get('session')->getFlashBag()->add('info',
|
|
$this->get('translator')->trans(
|
|
'controller.Person.review.people_with_similar_name',
|
|
array('%nb%' => count($alternatePersons)))
|
|
);
|
|
|
|
return $this->render('CLChillPersonBundle:Person:create_review.html.twig',
|
|
array('alternatePersons' => $alternatePersons,
|
|
'name' => $form['name']->getData(),
|
|
'surname' => $form['surname']->getData(),
|
|
'dateOfBirth' => $form['dateOfBirth']->getData(),
|
|
'genre' => $form['genre']->getData(),
|
|
'creation_date' => $form['creation_date']->getData(),
|
|
'form' => $form->createView()));
|
|
|
|
}
|
|
|
|
/**
|
|
* easy getting a person by his id
|
|
* @return \CL\Chill\PersonBundle\Entity\Person
|
|
*/
|
|
private function _getPerson($id) {
|
|
$em = $this->getDoctrine()->getManager();
|
|
|
|
$person = $em->getRepository('CLChillPersonBundle:Person')
|
|
->find($id);
|
|
|
|
return $person;
|
|
}
|
|
|
|
}
|