engelsystem/includes/view/ShiftCalendarLane.php

89 lines
1.8 KiB
PHP
Raw Normal View History

2016-11-05 10:06:06 +01:00
<?php
namespace Engelsystem;
2017-07-28 19:28:11 +02:00
use Exception;
2016-11-05 10:06:06 +01:00
/**
* Represents a single lane in a shifts calendar.
*/
2017-01-02 03:57:23 +01:00
class ShiftCalendarLane
{
2017-01-03 03:22:48 +01:00
/** @var int */
2017-01-02 03:57:23 +01:00
private $firstBlockStartTime;
2016-11-05 10:06:06 +01:00
2017-01-03 03:22:48 +01:00
/** @var int */
2017-01-02 03:57:23 +01:00
private $blockCount;
2016-11-05 10:06:06 +01:00
2017-01-03 03:22:48 +01:00
/** @var string */
2017-01-02 03:57:23 +01:00
private $header;
2016-11-05 10:06:06 +01:00
2017-01-03 03:22:48 +01:00
/** @var array[] */
2017-01-02 03:57:23 +01:00
private $shifts = [];
2016-11-05 10:06:06 +01:00
2017-01-03 03:22:48 +01:00
/**
* ShiftCalendarLane constructor.
*
* @param string $header
* @param int $firstBlockStartTime Unix timestamp
* @param int $blockCount
*/
2017-01-02 03:57:23 +01:00
public function __construct($header, $firstBlockStartTime, $blockCount)
{
$this->header = $header;
$this->firstBlockStartTime = $firstBlockStartTime;
$this->blockCount = $blockCount;
}
2016-11-05 10:06:06 +01:00
2017-01-02 15:43:36 +01:00
/**
* Adds a shift to the lane, but only if it fits.
* Returns true on success.
*
2017-01-03 03:22:48 +01:00
* @param array $shift The shift to add
2017-07-28 19:28:11 +02:00
* @throws Exception if the shift doesn't fit into the lane.
2017-01-02 15:43:36 +01:00
*/
public function addShift($shift)
{
if ($this->shiftFits($shift)) {
$this->shifts[] = $shift;
return;
2017-01-02 15:43:36 +01:00
}
2017-12-25 23:12:52 +01:00
throw new Exception('Unable to add shift to shift calendar lane.');
2017-01-02 15:43:36 +01:00
}
2016-11-05 10:06:06 +01:00
2017-01-02 15:43:36 +01:00
/**
* Returns true if given shift fits into this lane.
*
2017-01-03 03:22:48 +01:00
* @param array $newShift
* @return bool
* @internal param array $shift The shift to fit into this lane
2017-01-02 15:43:36 +01:00
*/
public function shiftFits($newShift)
{
foreach ($this->shifts as $laneShift) {
if (!($newShift['start'] >= $laneShift['end'] || $newShift['end'] <= $laneShift['start'])) {
return false;
}
}
2017-12-25 23:12:52 +01:00
2017-01-02 15:43:36 +01:00
return true;
}
2016-11-05 10:06:06 +01:00
2017-01-03 03:22:48 +01:00
/**
* @return string
*/
2017-01-02 03:57:23 +01:00
public function getHeader()
{
return $this->header;
}
2016-11-05 10:06:06 +01:00
2017-01-03 03:22:48 +01:00
/**
* @return array[]
*/
2017-01-02 03:57:23 +01:00
public function getShifts()
{
return $this->shifts;
}
2016-11-05 10:06:06 +01:00
}