aboutsummaryrefslogtreecommitdiff
path: root/lib/models/resources/Location.php
blob: 9da2e113703696b6612391656665ef5351a3e1ea (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
<?php

/**
 * Location.php - model class for a resource which is a location
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of
 * the License, or (at your option) any later version.
 *
 * @author      Moritz Strohm <strohm@data-quest.de>
 * @copyright   2017
 * @license     http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
 * @category    Stud.IP
 * @package     resources
 * @since       4.1
 *
 * @property string $id database column
 * @property string $parent_id database column
 * @property string $category_id database column
 * @property int|null $level database column
 * @property string $name database column
 * @property I18NString|null $description database column
 * @property int $requestable database column
 * @property int $lockable database column
 * @property int $mkdate database column
 * @property int $chdate database column
 * @property int $sort_position database column
 * @property SimpleORMapCollection|ResourceProperty[] $properties has_many ResourceProperty
 * @property SimpleORMapCollection|ResourcePermission[] $permissions has_many ResourcePermission
 * @property SimpleORMapCollection|ResourceRequest[] $requests has_many ResourceRequest
 * @property SimpleORMapCollection|ResourceBooking[] $bookings has_many ResourceBooking
 * @property SimpleORMapCollection|Resource[] $children has_many Resource
 * @property ResourceCategory $category belongs_to ResourceCategory
 * @property Resource $parent belongs_to Resource
 * @property mixed $geo_coordinates additional field
 * @property-read mixed $buildings additional field
 * @property mixed $director additional field
 * @property mixed $class_name additional field
 */
class Location extends Resource
{
    protected static $required_properties = [
        'geo_coordinates'
    ];

    protected static function configure($config = [])
    {
        if (!isset($config['additional_fields'])) {
            $config['additional_fields'] = [];
        }
        foreach (self::$required_properties as $property) {
            $config['additional_fields'][$property] = [
                'get' => 'getProperty',
                'set' => 'setProperty'
            ];
        }

        $config['additional_fields']['buildings']['get'] = 'findBuildings';

        $config['additional_fields']['director'] = [
            'get' => 'getPropertyRelatedObject',
            'set' => 'setPropertyRelatedObject'
        ];

        $config['registered_callbacks']['before_store'][] = 'cbValidate';
        parent::configure($config);
    }

    public static function getTranslatedClassName($item_count = 1)
    {
        return ngettext(
            'Standort',
            'Standorte',
            $item_count
        );
    }

    /**
     * Returns all locations which are stored in the database.
     *
     * @return Location[] An array of Location objects.
     */
    public static function findAll()
    {
        return self::findBySql(
            "INNER JOIN resource_categories rc
            ON resources.category_id = rc.id
            WHERE rc.class_name = 'Location'
            ORDER BY sort_position DESC, name ASC, mkdate ASC"
        );
    }

    /**
     * Returns the part of the URL for getLink and getURL which will be
     * placed inside the calls to URLHelper::getLink and URLHelper::getURL
     * in these methods.
     */
    protected static function buildPathForAction($action = 'show', $id = null)
    {
        if (!$id) {
            throw new InvalidArgumentException(
                _('Zuer Erstellung der URL fehlt eine Standort-ID!')
            );
        }

        switch ($action) {
            case 'show':
                return 'dispatch.php/resources/location/index/' . $id;
            case 'add':
                return 'dispatch.php/resources/location/add';
            case 'edit':
                return 'dispatch.php/resources/location/edit/' . $id;
            case 'delete':
                return 'dispatch.php/resources/location/delete/' . $id;
            default:
                //There are some actions which can be handled by the general
                //resource controller:
                return parent::buildPathForAction($action, $id);
        }
    }

    /**
     * Returns the appropriate link for the location action that shall be
     * executed on a location.
     *
     * @param string $action The action which shall be executed.
     *     For locations the actions 'show', 'add', 'edit' and 'delete'
     *     are defined.
     * @param string $id The ID of the location on which the specified
     *     action shall be executed.
     * @param array $link_parameters Optional parameters for the link.
     *
     * @return string The Link for the location action.
     */
    public static function getLinkForAction(
        $action = 'show',
        $id = null,
        $link_parameters = []
    )
    {
        return URLHelper::getLink(
            self::buildPathForAction($action, $id),
            $link_parameters
        );
    }


    /**
     * Returns the appropriate URL for the location action that shall be
     * executed on a location.
     *
     * @param string $action The action which shall be executed.
     *     For locations the actions 'show', 'add', 'edit' and 'delete'
     *     are defined.
     * @param string $id The ID of the location on which the specified
     *     action shall be executed.
     * @param array $url_parameters Optional parameters for the URL.
     *
     * @return string The URL for the location action.
     */
    public static function getURLForAction(
        $action = 'show',
        $id = null,
        $url_parameters = []
    )
    {
        return URLHelper::getURL(
            self::buildPathForAction($action, $id),
            $url_parameters
        );
    }

    public function getRequiredPropertyNames()
    {
        return self::$required_properties;
    }

    /**
     * @see StudipItem::__toString
     */
    public function __toString()
    {
        return $this->getFullName();
    }

    public function cbValidate()
    {
        if ($this->parent_id) {
            //Locations must not have parents! They are a top layer resource!
            throw new InvalidResourceException(
                sprintf(
                    _('Der Standort %1$s darf keiner anderen Ressource untergeordnet sein!'),
                    $this->name
                )
            );
        }

        if (!is_a($this->category->class_name, get_class($this), true)) {
            //Only resources with the Location category can be handled
            //with this class!
            throw new InvalidResourceException(
                sprintf(
                    _('Der Standort %1$s ist der falschen Ressourcen-Klasse zugeordnet!'),
                    $this->name
                )
            );
        }
    }

    /**
     * Returns the full (localised) name of the location.
     *
     * @return string The full name of the location.
     */
    public function getFullName()
    {
        return sprintf(
            _('Standort %s'),
            $this->name
        );
    }

    public function getDefaultPictureUrl()
    {
        return $this->getIcon()->asImagePath();
    }

    public function getIcon($role = Icon::ROLE_INFO)
    {
        return Icon::create('place', $role);
    }

    public function checkHierarchy()
    {
        //We must check if this location has locations as children
        //or rooms, buildings or locations as parents.
        //In any of those cases the hierarchy is invalid!

        $children = $this->findChildrenByClassName('Location');
        if (count($children) > 0) {
            //At least one child anywhere below this location
            //resource is a location, too.
            return false;
        }

        $parents = ResourceManager::getHierarchy($this);
        //We do not need to check this element:
        array_shift($parents);
        foreach ($parents as $parent) {
            $parent = $parent->getDerivedClassInstance();
            if (($parent instanceof Location) || ($parent instanceof Building)
                || ($parent instanceof Room)) {
                //Hierarchy error
                return false;
            }
        }

        //If code execution reaches this point then
        //the hierarchy around this location is valid.
        return true;
    }

    /**
     * Returns the link for an action for this building.
     * This is the non-static variant of Building::getLinkForAction.
     *
     * @param string $action The action which shall be executed.
     *     For locations the actions 'show', 'add', 'edit' and 'delete'
     *     are defined.
     * @param array $link_parameters Optional parameters for the link.
     *
     * @return string The Link for the building action.
     */
    public function getActionLink($action = 'show', $link_parameters = [])
    {
        return self::getLinkForAction(
            $action,
            $this->id,
            $link_parameters
        );
    }

    /**
     * Returns the URL for an action for this location.
     * This is the non-static variant of Location::getURLForAction.
     *
     * @param string $action The action which shall be executed.
     *     For locations the actions 'show', 'add', 'edit' and 'delete'
     *     are defined.
     * @param array $url_parameters Optional parameters for the URL.
     * @return string
     */
    public function getActionURL($action = 'show', $url_parameters = [])
    {
        return self::getURLForAction(
            $action,
            $this->id,
            $url_parameters
        );
    }

    // Relation methods:

    /**
     * Retrieves the buildings which are associated to this location
     * by looking up the child resources of this location.
     *
     * @return Building[] An array with Building objects or an empty array
     *     if no buildings can be found.
     */
    public function findBuildings()
    {
        $buildings = parent::findChildrenByClassName('Building');

        $result = [];
        foreach ($buildings as $building) {
            $result[] = Building::toObject($building);
        }
        return $result;
    }

    /**
     * Adds a child resource to this location. The child resource
     * must not be a resource of the Location class.
     *
     * @param Resource $resource The resource which shall be added as child.
     *
     * @return True, if the resource could be added as child, false otherwise.
     * @throws InvalidResourceException If the specified resource belongs to
     *     the Location resource class.
     *
     */
    public function addChild(Resource $resource)
    {
        if ($resource->class_name == $this->class_name) {
            throw new InvalidResourceException(
                _('Ein Standort darf keinem anderen Standort in der Hierarchie untergeordnet werden!')
            );
        }
        return parent::addChild($resource);
    }

    public function createSimpleBooking(
        User $user,
        DateTime $begin,
        DateTime $end,
        $preparation_time = 0,
        $description = '',
        $internal_comment = '',
        $booking_type = ResourceBooking::TYPE_NORMAL
    )
    {
        return null;
    }

    public function createBookingFromRequest(
        User $user,
        ResourceRequest $request,
        $preparation_time = 0,
        $description = '',
        $internal_comment = '',
        $booking_type = ResourceBooking::TYPE_NORMAL,
        $prepend_preparation_time = false,
        $notify_lecturers = false
    )
    {
        return null;
    }

    public function createBooking(
        User $user,
        $range_id = null,
        $time_ranges = [],
        $repetition_interval = null,
        $repetition_amount = 0,
        $repetition_end_date = null,
        $preparation_time = 0,
        $description = '',
        $internal_comment = '',
        $booking_type = ResourceBooking::TYPE_NORMAL,
        $force_booking = false
    )
    {
        return null;
    }

    public function createSimpleRequest(
        User $user,
        DateTime $begin,
        DateTime $end,
        $comment = '',
        $preparation_time = 0
    )
    {
        return null;
    }

    public function createRequest(
        User $user,
        $date_range_ids = null,
        $comment = '',
        $properties = [],
        $preparation_time = 0
    )
    {
        return null;
    }

    public function createLock(
        User $user,
        DateTime $begin,
        DateTime $end,
        $internal_comment = ''
    )
    {
        return null;
    }

    public function isAssigned(
        DateTime $begin,
        DateTime $end,
        $excluded_booking_ids = []
    )
    {
        return false;
    }

    public function isReserved(
        DateTime $begin,
        DateTime $end,
        $excluded_reservation_ids = []
    )
    {
        return false;
    }

    public function isLocked(
        DateTime $begin,
        DateTime $end,
        $excluded_lock_ids = []
    )
    {
        return true;
    }

    public function isAvailable(
        DateTime $begin,
        DateTime $end,
        $excluded_booking_ids = []
    )
    {
        return false;
    }
}