Passed
Push — master ( a041ce...14eb61 )
by Thomas
09:54
created

UpdateCourseEvents::handle()   B

Complexity

Conditions 8
Paths 8

Size

Total Lines 41
Code Lines 21

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 8
eloc 21
c 2
b 0
f 0
nc 8
nop 1
dl 0
loc 41
rs 8.4444
1
<?php
2
3
namespace App\Listeners;
4
5
use App\Events\CourseUpdated;
6
use App\Models\Event;
7
use Carbon\Carbon;
8
use Illuminate\Support\Facades\Log;
9
10
class UpdateCourseEvents
11
{
12
    public function handle(CourseUpdated $event)
13
    {
14
        $course = $event->course;
15
16
        Log::info('cleaning the events after course date change');
17
18
        if ($course->events->count() > 0) {
19
            // create events before first existing event and after course start
20
            $firstEvent = $course->events()->reorder('start')->first();
21
            $firstEventDate = Carbon::parse($firstEvent->start)->startOfDay();
22
            $lastEvent = $course->events()->reorder('start', 'desc')->first();
23
            $lastEventDate = Carbon::parse($lastEvent->start)->endOfDay();
24
        }
25
26
        $courseStartDate = Carbon::parse($course->start_date)->startOfDay();
27
        $courseEndDate = Carbon::parse($course->end_date)->startOfDay();
28
29
        // delete events before course start date
30
        Event::where('course_id', $course->id)->where('start', '<', $courseStartDate->startOfDay())->delete();
31
        // delete events after course end date
32
        Event::where('course_id', $course->id)->where('end', '>', $courseEndDate->endOfDay())->delete();
33
34
        // for each day before the first event
35
        while ($courseStartDate < $courseEndDate) {
36
            // Event already exists
37
            if (isset($firstEventDate) && isset($lastEventDate) && ($firstEventDate <= $courseStartDate) && ($courseStartDate <= $lastEventDate)) {
38
                $courseStartDate->addDay();
39
                continue;
40
            }
41
42
            // if there is a coursetime for today, create the event
43
            if ($course->times->contains('day', $courseStartDate->format('w'))) {
44
                Event::create(['course_id' => $course->id, 'teacher_id' => $course->teacher_id, 'room_id' => $course->room_id, 'start' => $courseStartDate->setTimeFromTimeString($course->times->where('day', $courseStartDate->format('w'))->first()->start)->toDateTimeString(), 'end' => $courseStartDate->setTimeFromTimeString($course->times->where('day', $courseStartDate->format('w'))->first()->end)->toDateTimeString(), 'name' => $course->name, 'course_time_id' => $course->times->where('day', $courseStartDate->format('w'))->first()->id, 'exempt_attendance' => $course->exempt_attendance,]);
45
            }
46
            $courseStartDate->addDay();
47
        }
48
49
        // update course events with new room, teacher and name
50
        Event::where('course_id', $course->id)->update(['room_id' => $course->room_id]);
51
        Event::where('course_id', $course->id)->update(['teacher_id' => $course->teacher_id]);
52
        Event::where('course_id', $course->id)->update(['name' => $course->name]);
53
    }
54
}
55