|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace AppBundle\Service; |
|
4
|
|
|
|
|
5
|
|
|
use AppBundle\Entity\Holiday; |
|
6
|
|
|
use AppBundle\Service\Loader\HolidayLoaderInterface; |
|
7
|
|
|
|
|
8
|
|
|
class Planning |
|
9
|
|
|
{ |
|
10
|
|
|
private $holidayLoader; |
|
11
|
|
|
private $workDayHours = array('18:30', '19:00', '19:30', '20:00', '20:30'); |
|
12
|
|
|
private $saturdayHours = array('10:00', '10:30', '11:00', '11:30', '12:00', '17:00', '17:30', '18:00', '18:30', '19:00'); |
|
13
|
|
|
private $sundayHours = array('10:00', '10:30', '11:00', '11:30', '12:00'); |
|
14
|
|
|
|
|
15
|
|
|
public function __construct(HolidayLoaderInterface $holidayLoader) |
|
16
|
|
|
{ |
|
17
|
|
|
$this->holidayLoader = $holidayLoader; |
|
18
|
|
|
} |
|
19
|
|
|
|
|
20
|
|
|
public function getFirstAvailableTime() |
|
21
|
|
|
{ |
|
22
|
|
|
$times = $this->getAvailableTimes(); |
|
23
|
|
|
$day = array_shift($times); |
|
24
|
|
|
|
|
25
|
|
|
return array_shift($day); |
|
26
|
|
|
} |
|
27
|
|
|
|
|
28
|
|
|
public function getDateFormatter() |
|
29
|
|
|
{ |
|
30
|
|
|
return $formatter = \IntlDateFormatter::create('fr_FR', \IntlDateFormatter::FULL, \IntlDateFormatter::NONE); |
|
|
|
|
|
|
31
|
|
|
} |
|
32
|
|
|
|
|
33
|
|
|
public function getAvailableTimes() |
|
34
|
|
|
{ |
|
35
|
|
|
$holidays = $this->holidayLoader->getHolidays(); |
|
36
|
|
|
|
|
37
|
|
|
$result = array(); |
|
38
|
|
|
$formatter = $this->getDateFormatter(); |
|
39
|
|
|
|
|
40
|
|
|
$current = new \DateTime('+2 days'); |
|
41
|
|
|
$dayCount = 21; |
|
42
|
|
|
|
|
43
|
|
|
$iterations = 50000; |
|
44
|
|
|
while (count($result) < $dayCount) { |
|
45
|
|
|
|
|
46
|
|
|
// security |
|
47
|
|
|
$iterations--; |
|
48
|
|
|
if ($iterations == 0) { |
|
49
|
|
|
throw new \LogicException('Too much iterations looking for an available time.'); |
|
50
|
|
|
} |
|
51
|
|
|
|
|
52
|
|
|
if ($this->isClosed($current, $holidays)) { |
|
53
|
|
|
$current->modify('+1 day'); |
|
54
|
|
|
|
|
55
|
|
|
continue; |
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
|
|
$day = $current->format('N'); |
|
59
|
|
|
$date = $formatter->format($current); |
|
60
|
|
|
|
|
61
|
|
|
if ($day == 6) { |
|
62
|
|
|
$hours = $this->saturdayHours; |
|
63
|
|
|
} elseif ($day == 7) { |
|
64
|
|
|
$hours = $this->sundayHours; |
|
65
|
|
|
} else { |
|
66
|
|
|
$hours = $this->workDayHours; |
|
67
|
|
|
} |
|
68
|
|
|
|
|
69
|
|
|
$vals = array_map(function ($val) use ($date) { |
|
70
|
|
|
return $date.' // '.$val; |
|
71
|
|
|
}, $hours); |
|
72
|
|
|
$result[$date] = array_combine($vals, $vals); |
|
73
|
|
|
|
|
74
|
|
|
$current->modify('+1 day'); |
|
75
|
|
|
} |
|
76
|
|
|
|
|
77
|
|
|
return $result; |
|
78
|
|
|
} |
|
79
|
|
|
|
|
80
|
|
|
private function isClosed(\DateTime $day, array $holidays) |
|
81
|
|
|
{ |
|
82
|
|
|
foreach ($holidays as $holiday) { |
|
83
|
|
|
if ($holiday->match($day)) { |
|
84
|
|
|
return true; |
|
85
|
|
|
} |
|
86
|
|
|
} |
|
87
|
|
|
|
|
88
|
|
|
return false; |
|
89
|
|
|
} |
|
90
|
|
|
} |
|
91
|
|
|
|
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVarassignment in line 1 and the$higherassignment in line 2 are dead. The first because$myVaris never used and the second because$higheris always overwritten for every possible time line.