linkmobility-php-client/src/ValueObject/Sender.php

41 lines
1.1 KiB
PHP
Raw Normal View History

2022-06-20 14:47:33 +02:00
<?php
declare(strict_types=1);
namespace D3\LinkmobilityClient\ValueObject;
use Assert\Assert;
2022-06-24 16:00:56 +02:00
use D3\LinkmobilityClient\Exceptions\ExceptionMessages;
use D3\LinkmobilityClient\Exceptions\RecipientException;
use libphonenumber\NumberParseException;
use libphonenumber\PhoneNumberFormat;
use libphonenumber\PhoneNumberUtil;
2022-06-20 14:47:33 +02:00
class Sender extends StringValueObject
{
2022-06-24 16:00:56 +02:00
/**
* @param string $number
* @param string $iso2CountryCode
*
* @throws RecipientException
*/
public function __construct(string $number, string $iso2CountryCode)
2022-06-20 14:47:33 +02:00
{
Assert::that($iso2CountryCode)->string()->length(2);
2022-06-24 16:00:56 +02:00
$phoneUtil = PhoneNumberUtil::getInstance();
try {
$phoneNumber = $phoneUtil->parse( $number, strtoupper($iso2CountryCode) );
2022-06-24 16:00:56 +02:00
$number = $phoneUtil->format( $phoneNumber, PhoneNumberFormat::E164 );
if (false === $phoneUtil->isValidNumber($phoneNumber)) {
2022-06-24 16:00:56 +02:00
throw new RecipientException( ExceptionMessages::INVALID_SENDER );
}
2022-06-24 16:00:56 +02:00
} catch ( NumberParseException $e) {
var_dump($e);
2022-06-20 14:47:33 +02:00
}
parent::__construct( $number);
2022-06-20 14:47:33 +02:00
}
}