1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace SDIS62\Core\Ops\Service; |
4
|
|
|
|
5
|
|
|
use Datetime; |
6
|
|
|
use SDIS62\Core\Ops\Entity\PlageHoraire; |
7
|
|
|
use SDIS62\Core\Ops\Exception\InvalidPlageHoraireTypeException; |
8
|
|
|
use SDIS62\Core\Ops\Repository\PlageHoraireRepositoryInterface; |
9
|
|
|
use SDIS62\Core\Ops\Repository\PlanningRepositoryInterface; |
10
|
|
|
use SDIS62\Core\Ops\Repository\PompierRepositoryInterface; |
11
|
|
|
|
12
|
|
|
class PlageHoraireService |
13
|
|
|
{ |
14
|
|
|
/** |
15
|
|
|
* Initialisation du service avec les repository utilisés. |
16
|
|
|
* |
17
|
|
|
* @param SDIS62\Core\Ops\Repository\PlageHoraireRepositoryInterface $plagehoraire_repository |
18
|
|
|
* @param SDIS62\Core\Ops\Repository\PompierRepositoryInterface $pompier_repository |
19
|
|
|
* @param SDIS62\Core\Ops\Repository\PlanningRepositoryInterface $planning_repository |
20
|
|
|
*/ |
21
|
|
|
public function __construct(PlageHoraireRepositoryInterface $plagehoraire_repository, |
22
|
|
|
PompierRepositoryInterface $pompier_repository, |
23
|
|
|
PlanningRepositoryInterface $planning_repository |
24
|
|
|
) { |
25
|
|
|
$this->plagehoraire_repository = $plagehoraire_repository; |
|
|
|
|
26
|
|
|
$this->pompier_repository = $pompier_repository; |
|
|
|
|
27
|
|
|
$this->planning_repository = $planning_repository; |
|
|
|
|
28
|
|
|
} |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* Retourne une plage horaire correspondant à l'id spécifié. |
32
|
|
|
* |
33
|
|
|
* @param mixed $id_plage_horaire |
34
|
|
|
* |
35
|
|
|
* @return SDIS62\Core\Ops\Entity\PlageHoraire |
36
|
|
|
*/ |
37
|
|
|
public function find($id_plage_horaire) |
38
|
|
|
{ |
39
|
|
|
return $this->plagehoraire_repository->find($id_plage_horaire); |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
/** |
43
|
|
|
* Sauvegarde d'une plage horaire. |
44
|
|
|
* |
45
|
|
|
* @param array $data |
46
|
|
|
* |
47
|
|
|
* @return SDIS62\Core\Ops\Entity\PlageHoraire |
48
|
|
|
*/ |
49
|
|
|
public function save(array $data) |
50
|
|
|
{ |
51
|
|
|
$planning = $this->planning_repository->find($data['planning']); |
52
|
|
|
$pompier = $this->pompier_repository->find($data['pompier']); |
53
|
|
|
$start = DateTime::createFromFormat('d-m-Y H:i', (string) $data['start']); |
54
|
|
|
$end = DateTime::createFromFormat('d-m-Y H:i', (string) $data['end']); |
55
|
|
|
|
56
|
|
|
switch ($data['type']) { |
57
|
|
|
case 'garde' : |
58
|
|
|
$plage_horaire = new PlageHoraire\GardePlageHoraire($planning, $pompier, $start, $end); |
|
|
|
|
59
|
|
|
break; |
60
|
|
|
case 'dispo' : |
61
|
|
|
$plage_horaire = new PlageHoraire\DispoPlageHoraire($planning, $pompier, $start, $end); |
|
|
|
|
62
|
|
|
break; |
63
|
|
|
default: |
64
|
|
|
throw new InvalidPlageHoraireTypeException(); |
65
|
|
|
} |
66
|
|
|
|
67
|
|
|
$this->plagehoraire_repository->save($plage_horaire); |
68
|
|
|
|
69
|
|
|
return $plage_horaire; |
70
|
|
|
} |
71
|
|
|
|
72
|
|
|
/** |
73
|
|
|
* Suppression d'une plage horaire. |
74
|
|
|
* |
75
|
|
|
* @param mixed $id_plage_horaire |
76
|
|
|
*/ |
77
|
|
|
public function delete($id_plage_horaire) |
78
|
|
|
{ |
79
|
|
|
$plage_horaire = $this->find($id_plage_horaire); |
80
|
|
|
|
81
|
|
|
if (empty($plage_horaire)) { |
82
|
|
|
return; |
83
|
|
|
} |
84
|
|
|
|
85
|
|
|
$this->plagehoraire_repository->delete($plage_horaire); |
86
|
|
|
|
87
|
|
|
return $plage_horaire; |
88
|
|
|
} |
89
|
|
|
} |
90
|
|
|
|
In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:
Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion: