1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Timegridio\Concierge\Vacancy; |
4
|
|
|
|
5
|
|
|
use Carbon\Carbon; |
6
|
|
|
use Timegridio\Concierge\Models\Business; |
7
|
|
|
use Timegridio\Concierge\Models\Vacancy; |
8
|
|
|
|
9
|
|
|
class VacancyManager |
10
|
|
|
{ |
11
|
|
|
protected $business; |
12
|
|
|
|
13
|
1 |
|
public function __construct(Business $business) |
14
|
|
|
{ |
15
|
1 |
|
$this->business = $business; |
16
|
1 |
|
} |
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* Get a Vacancy for a given DateTime and Service combination. |
20
|
|
|
* |
21
|
|
|
* @param Carbon $targetDateTime |
22
|
|
|
* @param int $serviceId |
23
|
|
|
* |
24
|
|
|
* @return Timegridio\Concierge\Models\Vacancy |
25
|
|
|
*/ |
26
|
|
|
// public function getSlotFor(Carbon $targetDateTime, $serviceId) |
|
|
|
|
27
|
|
|
// { |
28
|
|
|
// return $this->business |
29
|
|
|
// ->vacancies() |
30
|
|
|
// ->forDateTime($targetDateTime) |
31
|
|
|
// ->forService($serviceId) |
32
|
|
|
// ->first(); |
33
|
|
|
// } |
34
|
|
|
|
35
|
1 |
|
public function publish($date, Carbon $startAt, Carbon $finishAt, $serviceId, $capacity = 1) |
36
|
|
|
{ |
37
|
|
|
$vacancyKeys = [ |
38
|
1 |
|
'business_id' => $this->business->id, |
|
|
|
|
39
|
1 |
|
'service_id' => $serviceId, |
40
|
1 |
|
'date' => $date, |
41
|
1 |
|
]; |
42
|
|
|
$vacancyValues = [ |
43
|
1 |
|
'capacity' => intval($capacity), |
44
|
1 |
|
'start_at' => $startAt->timezone('UTC')->toDateTimeString(), |
45
|
1 |
|
'finish_at' => $finishAt->timezone('UTC')->toDateTimeString(), |
46
|
1 |
|
]; |
47
|
|
|
|
48
|
1 |
|
return Vacancy::updateOrCreate($vacancyKeys, $vacancyValues); |
49
|
|
|
} |
50
|
|
|
|
51
|
|
|
|
52
|
|
|
/** |
53
|
|
|
* [generateAvailability description]. |
54
|
|
|
* |
55
|
|
|
* @param Illuminate\Database\Eloquent\Collection $vacancies |
56
|
|
|
* @param string $startDate |
57
|
|
|
* @param int $futureDays |
58
|
|
|
* |
59
|
|
|
* @return array |
60
|
|
|
*/ |
61
|
|
|
public static function generateAvailability($vacancies, $startDate = 'today', $futureDays = 10) |
62
|
|
|
{ |
63
|
|
|
$dates = []; |
64
|
|
View Code Duplication |
for ($i = 0; $i < $futureDays; $i++) { |
|
|
|
|
65
|
|
|
$dates[date('Y-m-d', strtotime("$startDate +$i days"))] = []; |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
foreach ($vacancies as $vacancy) { |
69
|
|
|
if (array_key_exists($vacancy->date, $dates)) { |
70
|
|
|
$dates[$vacancy->date][$vacancy->service->slug] = $vacancy; |
71
|
|
|
} |
72
|
|
|
} |
73
|
|
|
|
74
|
|
|
return $dates; |
75
|
|
|
} |
76
|
|
|
|
77
|
|
|
} |
78
|
|
|
|
Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.
The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.
This check looks for comments that seem to be mostly valid code and reports them.