phpOMS/Stdlib/Base/Location.php
2022-04-21 23:52:01 +02:00

238 lines
4.0 KiB
PHP

<?php
/**
* Karaka
*
* PHP Version 8.1
*
* @package phpOMS\Stdlib\Base
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://karaka.app
*/
declare(strict_types=1);
namespace phpOMS\Stdlib\Base;
use phpOMS\Contract\SerializableInterface;
use phpOMS\Localization\ISO3166TwoEnum;
/**
* Location class.
*
* @package phpOMS\Stdlib\Base
* @license OMS License 1.0
* @link https://karaka.app
* @since 1.0.0
*/
class Location implements \JsonSerializable, SerializableInterface
{
/**
* Location id
*
* @var int
* @since 1.0.0
*/
protected int $id = 0;
/**
* Zip or postal.
*
* @var string
* @since 1.0.0
*/
public string $postal = '';
/**
* Name of city.
*
* @var string
* @since 1.0.0
*/
public string $city = '';
/**
* Name of the country.
*
* @var string
* @since 1.0.0
*/
protected string $country = ISO3166TwoEnum::_XXX;
/**
* Street & district.
*
* @var string
* @since 1.0.0
*/
public string $address = '';
/**
* Address type
*
* @var int
* @since 1.0.0
*/
protected int $type = AddressType::HOME;
/**
* State.
*
* @var string
* @since 1.0.0
*/
public string $state = '';
/**
* Geo coordinates.
*
* @var float[]
* @since 1.0.0
*/
protected array $geo = ['lat' => 0, 'long' => 0];
/**
* Get location id
*
* @return int
*
* @since 1.0.0
*/
public function getId() : int
{
return $this->id;
}
/**
* Get location type
*
* @return int
*
* @since 1.0.0
*/
public function getType() : int
{
return $this->type;
}
/**
* Set location type
*
* @param int $type Location type
*
* @return void
*
* @since 1.0.0
*/
public function setType(int $type) : void
{
$this->type = $type;
}
/**
* Get country code
*
* @return string
*
* @since 1.0.0
*/
public function getCountry() : string
{
return $this->country;
}
/**
* Set country code
*
* @param string $country Country name
*
* @return void
*
* @since 1.0.0
*/
public function setCountry(string $country) : void
{
$this->country = $country;
}
/**
* Get geo location
*
* @return float[]
*
* @since 1.0.0
*/
public function getGeo() : array
{
return $this->geo;
}
/**
* Set geo location
*
* @param float[] $geo Geo location lat/long
*
* @return void
*
* @since 1.0.0
*/
public function setGeo(array $geo) : void
{
$this->geo = $geo;
}
/**
* {@inheritdoc}
*/
public function serialize() : string
{
return (string) \json_encode($this->jsonSerialize());
}
/**
* {@inheritdoc}
*/
public function jsonSerialize() : mixed
{
return $this->toArray();
}
/**
* {@inheritdoc}
*/
public function toArray() : array
{
return [
'postal' => $this->postal,
'city' => $this->city,
'country' => $this->country,
'address' => $this->address,
'state' => $this->state,
'geo' => $this->geo,
];
}
/**
* {@inheritdoc}
*/
public function unserialize(mixed $serialized) : void
{
if (!\is_string($serialized)) {
return;
}
$data = \json_decode($serialized, true);
if (!\is_array($data)) {
return;
}
$this->postal = $data['postal'];
$this->city = $data['city'];
$this->country = $data['country'];
$this->address = $data['address'];
$this->state = $data['state'];
$this->geo = $data['geo'];
}
}