tgbotlib/src/TgBotLib/Objects/PaidMedia.php
2024-10-04 00:48:28 -04:00

53 lines
No EOL
1.2 KiB
PHP

<?php
namespace TgBotLib\Objects;
use InvalidArgumentException;
use TgBotLib\Enums\Types\PaidMediaType;
use TgBotLib\Interfaces\ObjectTypeInterface;
use TgBotLib\Objects\PaidMedia\PaidMediaPhoto;
use TgBotLib\Objects\PaidMedia\PaidMediaPreview;
use TgBotLib\Objects\PaidMedia\PaidMediaVideo;
abstract class PaidMedia implements ObjectTypeInterface
{
protected PaidMediaType $type;
/**
* Type of the paid media
*
* @return PaidMediaType
*/
public function getType(): PaidMediaType
{
return $this->type;
}
/**
* @inheritDoc
*/
public abstract function toArray(): array;
/**
* @inheritDoc
*/
public static function fromArray(?array $data): ?PaidMedia
{
if($data === null)
{
return null;
}
if(!isset($data['type']))
{
throw new InvalidArgumentException('Paid media type is required');
}
return match (PaidMediaType::tryFrom($data['type']))
{
PaidMediaType::PHOTO => PaidMediaPhoto::fromArray($data),
PaidMediaType::VIDEO => PaidMediaVideo::fromArray($data),
PaidMediaType::PREVIEW => PaidMediaPreview::fromArray($data),
};
}
}