Added colorCloud and changes in clock item
Former-commit-id: 19a053332ae6a30a60f2fb88611a0ad74d447bb5
This commit is contained in:
parent
4c08987ece
commit
58f6fac29e
|
@ -11,6 +11,14 @@ use Models\VisualConsole\Item;
|
|||
final class Clock extends Item
|
||||
{
|
||||
|
||||
/**
|
||||
* Used to enable the fetching, validation and extraction of information
|
||||
* about the linked visual console.
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
protected static $useLinkedVisualConsole = true;
|
||||
|
||||
|
||||
/**
|
||||
* Returns a valid representation of the model.
|
||||
|
@ -29,10 +37,13 @@ final class Clock extends Item
|
|||
$clockData['clockFormat'] = $this->extractClockFormat($data);
|
||||
$clockData['clockTimezone'] = $this->extractClockTimezone($data);
|
||||
|
||||
$dateTimeZoneUTC = new DateTimeZone('UTC');
|
||||
$dateTimeZoneClock = new DateTimeZone($clockData['clockTimezone']);
|
||||
$dateTime = new DateTime('now', $dateTimeZoneClock);
|
||||
$clockData['clockTimezoneOffset'] = $dateTimeZoneUTC->getOffset($dateTime);
|
||||
try {
|
||||
$timezone = new \DateTimeZone($clockData['clockTimezone']);
|
||||
$timezoneUTC = new \DateTimeZone('UTC');
|
||||
$clockData['clockTimezoneOffset'] = $timezone->getOffset(new \DateTime('now', $timezoneUTC));
|
||||
} catch (Exception $e) {
|
||||
throw new \InvalidArgumentException($e->getMessage());
|
||||
}
|
||||
|
||||
$clockData['showClockTimezone'] = $this->extractShowClockTimezone($data);
|
||||
$clockData['color'] = $this->extractColor($data);
|
||||
|
|
|
@ -0,0 +1,116 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Models\VisualConsole\Items;
|
||||
use Models\VisualConsole\Item;
|
||||
|
||||
/**
|
||||
* Model of a color cloud item of the Visual Console.
|
||||
*/
|
||||
final class ColorCloud extends Item
|
||||
{
|
||||
|
||||
/**
|
||||
* Used to enable the fetching, validation and extraction of information
|
||||
* about the linked visual console.
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
protected static $useLinkedVisualConsole = true;
|
||||
|
||||
/**
|
||||
* Used to enable the fetching, validation and extraction of information
|
||||
* about the linked module.
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
protected static $useLinkedModule = true;
|
||||
|
||||
|
||||
/**
|
||||
* Returns a valid representation of the model.
|
||||
*
|
||||
* @param array $data Input data.
|
||||
*
|
||||
* @return array Data structure representing the model.
|
||||
*
|
||||
* @overrides Item::decode.
|
||||
*/
|
||||
protected function decode(array $data): array
|
||||
{
|
||||
$colorCloudData = parent::decode($data);
|
||||
$colorCloudData['type'] = COLOR_CLOUD;
|
||||
$colorCloudData['color'] = $this->extractColor($data);
|
||||
$colorCloudData['colorRanges'] = '';
|
||||
|
||||
return $colorCloudData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Extract a color value.
|
||||
*
|
||||
* @param array $data Unknown input data structure.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
private function extractColor(array $data): string
|
||||
{
|
||||
$color = static::notEmptyStringOr(
|
||||
static::issetInArray($data, ['color']),
|
||||
null
|
||||
);
|
||||
|
||||
if (empty($color) === true) {
|
||||
$color = static::notEmptyStringOr(
|
||||
static::issetInArray($data, ['label']),
|
||||
null
|
||||
);
|
||||
|
||||
$color_decode = \json_decode($color);
|
||||
if (empty($color) === true || empty($color_decode->default_color) === true) {
|
||||
throw new \InvalidArgumentException(
|
||||
'the color property is required and should be string'
|
||||
);
|
||||
} else {
|
||||
return $color_decode->default_color;
|
||||
}
|
||||
} else {
|
||||
return $color;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Extract a color ranges value.
|
||||
*
|
||||
* @param array $data Unknown input data structure.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
private function extractColorRanges(array $data): array
|
||||
{
|
||||
if (isset($data['colorRanges']) && \is_array($data['colorRanges'])) {
|
||||
foreach ($data['colorRanges'] as $key => $value) {
|
||||
if ((!isset($data['colorRanges'][$key]['fromValue']) || !\is_float($data['colorRanges'][$key]['fromValue']))
|
||||
|| (!isset($data['colorRanges'][$key]['toValue']) || !\is_float($data['colorRanges'][$key]['toValue']))
|
||||
|| (!isset($data['colorRanges'][$key]['color']) | !\is_string($data['colorRanges'][$key]['color']) || strlen($data['colorRanges'][$key]['color']) == 0)
|
||||
) {
|
||||
throw new \InvalidArgumentException(
|
||||
'the color property is required and should be string'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
return $data['colorRanges'];
|
||||
} else if (isset($data['label']) === true) {
|
||||
$colorRanges_decode = \json_decode($data['label']);
|
||||
return $colorRanges_decode->color_ranges;
|
||||
} else {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,173 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Models\VisualConsole\Items\Clock;
|
||||
|
||||
/**
|
||||
* Test for the Visual Console Clock Item model.
|
||||
*/
|
||||
class ClockTest extends TestCase
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* Test if the instance is created using a valid data structure.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testCanBeCreatedFromValidUserStructure(): void
|
||||
{
|
||||
$this->assertInstanceOf(
|
||||
Clock::class,
|
||||
Clock::fromArray(
|
||||
[
|
||||
'id' => 69,
|
||||
'type' => CLOCK,
|
||||
'label' => null,
|
||||
'labelPosition' => 'up',
|
||||
'isLinkEnabled' => true,
|
||||
'isOnTop' => false,
|
||||
'parentId' => null,
|
||||
'width' => '0',
|
||||
'height' => '0',
|
||||
'x' => -666,
|
||||
'y' => 76,
|
||||
'clockType' => 'digital',
|
||||
'clockFormat' => 'time',
|
||||
'clockTimezone' => 'Europe/Madrid',
|
||||
'showClockTimezone' => false,
|
||||
'color' => 'white',
|
||||
]
|
||||
)
|
||||
);
|
||||
|
||||
$this->assertInstanceOf(
|
||||
Clock::class,
|
||||
Clock::fromArray(
|
||||
[
|
||||
'id' => 1000,
|
||||
'type' => CLOCK,
|
||||
'width' => 100,
|
||||
'height' => 900,
|
||||
'clockType' => 'analogic',
|
||||
'clockFormat' => 'datetime',
|
||||
'clockTimezone' => 'Asia/Tokyo',
|
||||
'showClockTimezone' => true,
|
||||
'color' => 'red',
|
||||
]
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Test if the instance is not created when using a invalid clockTimezone.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testCannotBeCreatedWithInvalidImageSrc(): void
|
||||
{
|
||||
$this->expectException(Exception::class);
|
||||
// Invalid clockTimezone.
|
||||
Clock::fromArray(
|
||||
[
|
||||
'id' => 69,
|
||||
'type' => CLOCK,
|
||||
'label' => null,
|
||||
'labelPosition' => 'up',
|
||||
'isLinkEnabled' => true,
|
||||
'isOnTop' => false,
|
||||
'parentId' => null,
|
||||
'width' => '0',
|
||||
'height' => '0',
|
||||
'x' => -666,
|
||||
'y' => 76,
|
||||
'clockType' => 'digital',
|
||||
'clockFormat' => 'time',
|
||||
'clockTimezone' => 'Europe/Tokyo',
|
||||
'showClockTimezone' => false,
|
||||
'color' => 'white',
|
||||
]
|
||||
);
|
||||
|
||||
// Invalid clockTimezone.
|
||||
Clock::fromArray(
|
||||
[
|
||||
'id' => 69,
|
||||
'type' => CLOCK,
|
||||
'label' => null,
|
||||
'labelPosition' => 'up',
|
||||
'isLinkEnabled' => true,
|
||||
'isOnTop' => false,
|
||||
'parentId' => null,
|
||||
'width' => '0',
|
||||
'height' => '0',
|
||||
'x' => -666,
|
||||
'y' => 76,
|
||||
'clockType' => 'digital',
|
||||
'clockFormat' => 'time',
|
||||
'clockTimezone' => 'Europe/Tokyo',
|
||||
'showClockTimezone' => false,
|
||||
'color' => 'white',
|
||||
]
|
||||
);
|
||||
|
||||
// Missing clockTimezone.
|
||||
Clock::fromArray(
|
||||
[
|
||||
'id' => 69,
|
||||
'type' => CLOCK,
|
||||
'label' => null,
|
||||
'labelPosition' => 'up',
|
||||
'isLinkEnabled' => true,
|
||||
'isOnTop' => false,
|
||||
'parentId' => null,
|
||||
'width' => '0',
|
||||
'height' => '0',
|
||||
'x' => -666,
|
||||
'y' => 76,
|
||||
'clockType' => 'digital',
|
||||
'clockFormat' => 'time',
|
||||
'showClockTimezone' => false,
|
||||
'color' => 'white',
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Test if the model has a valid JSON representation.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testContainerIsRepresentedAsJson(): void
|
||||
{
|
||||
$this->assertEquals(
|
||||
'{"aclGroupId":null,"clockFormat":"time","clockTimezone":"Europe\/Madrid","clockTimezoneOffset":3600,"clockType":"digital","color":"white","height":0,"id":69,"isLinkEnabled":true,"isOnTop":false,"label":null,"labelPosition":"up","linkedLayoutAgentId":null,"linkedLayoutId":null,"linkedLayoutStatusType":"default","parentId":null,"showClockTimezone":false,"type":19,"width":0,"x":-666,"y":76}',
|
||||
(string) Clock::fromArray(
|
||||
[
|
||||
'id' => 69,
|
||||
'type' => CLOCK,
|
||||
'label' => null,
|
||||
'labelPosition' => 'up',
|
||||
'isLinkEnabled' => true,
|
||||
'isOnTop' => false,
|
||||
'parentId' => null,
|
||||
'width' => '0',
|
||||
'height' => '0',
|
||||
'x' => -666,
|
||||
'y' => 76,
|
||||
'clockType' => 'digital',
|
||||
'clockFormat' => 'time',
|
||||
'clockTimezone' => 'Europe/Madrid',
|
||||
'showClockTimezone' => false,
|
||||
'color' => 'white',
|
||||
]
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue