summaryrefslogtreecommitdiff
path: root/app/php/facades/CalendarFacade.php
blob: cee345b47f5fcf38286b5526df32bebabbc722d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php

Prado::using('Application.facades.Facade');
Prado::using('Application.dto.CalendarGroupDTO');
Prado::using('Application.model.Calendar');
Prado::using('Application.model.Category');
Prado::using('Application.model.UserPreference');
Prado::using('Application.user.DbUser');

class CalendarFacade extends Facade {

    private function _getCategoriesForCalendars(array $calendars) {
        return Category::finder()->findAllByPks(
            array_map(
                function($calendar) {
                    return $calendar->CategoryID;
                },
                $calendars
            )
        );
    }

    public function getPreferenceList(DbUser $user) {
        $calendars = $user->getCalendarPreference();
        if ($calendars) {
            $categories = array_map(
                function($category) use($calendars) {
                    $dto = new CalendarGroupDTO();
                    $dto->loadRecord($category, $calendars);
                    return $dto;
                },
                $this->_getCategoriesForCalendars($calendars)
            );
            usort($categories, ['CalendarGroupDTO', '__compare']);
            return $categories;
        }
        return [];
    }

    public function removeFromPreference(DbUser $user, $calendarID) {
        if (!$user->IsGuest) {
            $preferenceRecord = UserPreference::finder()->find(
                '_user = ? AND _calendar = ?',
                $user->DbRecord->ID,
                $calendarID
            );
            $preferenceRecord->delete();
        }
    }

    public function getAll() {
        return Calendar::finder()->withCategory()->findAll('ORDER BY name ASC');
    }

    public function getCategories() {
        return Category::finder()->findAll('ORDER BY name ASC');
    }

    public function get($uid) {
        return Calendar::finder()->withCategory()->findAllByPks($uid);
    }

}

?>