linkmobility4oxid/src/Application/Model/MessageTypes/Sms.php

154 lines
5.5 KiB
PHP
Raw Normal View History

<?php
/**
2022-07-13 13:21:52 +02:00
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* https://www.d3data.de
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
2022-07-13 13:21:52 +02:00
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
* @link https://www.oxidmodule.com
*/
2022-07-13 13:21:52 +02:00
declare(strict_types=1);
namespace D3\Linkmobility4OXID\Application\Model\MessageTypes;
use D3\Linkmobility4OXID\Application\Model\Configuration;
2022-07-01 16:11:40 +02:00
use D3\Linkmobility4OXID\Application\Model\Exceptions\abortSendingExceptionInterface;
2022-07-04 09:13:36 +02:00
use D3\Linkmobility4OXID\Application\Model\Exceptions\noRecipientFoundException;
use D3\Linkmobility4OXID\Application\Model\MessageClient;
use D3\Linkmobility4OXID\Application\Model\OrderRecipients;
use D3\Linkmobility4OXID\Application\Model\RequestFactory;
use D3\Linkmobility4OXID\Application\Model\UserRecipients;
2022-07-01 16:11:40 +02:00
use D3\LinkmobilityClient\Exceptions\ApiException;
use D3\LinkmobilityClient\Request\RequestInterface;
use D3\LinkmobilityClient\SMS\SmsRequestInterface;
2022-07-27 09:27:59 +02:00
use D3\LinkmobilityClient\ValueObject\Recipient;
use D3\LinkmobilityClient\ValueObject\Sender;
use Exception;
2022-07-01 16:11:40 +02:00
use GuzzleHttp\Exception\GuzzleException;
2022-07-12 16:06:19 +02:00
use InvalidArgumentException;
2022-07-04 13:28:58 +02:00
use OxidEsales\Eshop\Application\Model\Order;
use OxidEsales\Eshop\Application\Model\User;
2022-07-01 16:11:40 +02:00
use OxidEsales\Eshop\Core\Registry;
class Sms extends AbstractMessage
{
2022-07-01 16:11:40 +02:00
/**
* @param User $user
*
* @return bool
* @throws Exception
2022-07-01 16:11:40 +02:00
*/
public function sendUserAccountMessage(User $user): bool
2022-07-04 09:13:36 +02:00
{
try {
Registry::getLogger()->debug('startRequest', ['userId' => $user->getId()]);
$return = $this->sendCustomRecipientMessage(
2022-07-13 13:23:48 +02:00
[ oxNew(UserRecipients::class, $user)->getSmsRecipient() ]
2022-07-04 09:13:36 +02:00
);
if ($return) {
$this->setRemark($user->getId(), $this->getRecipientsList(), $this->getMessage());
}
Registry::getLogger()->debug('finishRequest', ['userId' => $user->getId()]);
return $return;
2022-07-04 09:13:36 +02:00
} catch (noRecipientFoundException $e) {
Registry::getLogger()->warning($e->getMessage());
2022-07-04 13:28:58 +02:00
Registry::getUtilsView()->addErrorToDisplay($e);
}
return false;
}
/**
* @param Order $order
*
* @return bool
2022-07-04 16:33:49 +02:00
* @throws noRecipientFoundException
* @throws Exception
2022-07-04 13:28:58 +02:00
*/
public function sendOrderMessage(Order $order): bool
2022-07-04 13:28:58 +02:00
{
try {
Registry::getLogger()->debug('startRequest', ['orderId' => $order->getId()]);
$return = $this->sendCustomRecipientMessage(
2022-07-13 13:23:48 +02:00
[ oxNew(OrderRecipients::class, $order)->getSmsRecipient() ]
2022-07-04 13:28:58 +02:00
);
if ($return) {
$this->setRemark($order->getOrderUser()->getId(), $this->getRecipientsList(), $this->getMessage());
}
Registry::getLogger()->debug('finishRequest', ['orderId' => $order->getId()]);
return $return;
2022-07-04 13:28:58 +02:00
} catch (noRecipientFoundException $e) {
Registry::getLogger()->warning($e->getMessage());
2022-07-04 16:33:49 +02:00
throw $e;
2022-07-04 09:13:36 +02:00
}
}
/**
2022-07-27 09:27:59 +02:00
* @param array<Recipient> $recipientsArray
2022-07-04 09:13:36 +02:00
*
* @return bool
*/
public function sendCustomRecipientMessage(array $recipientsArray): bool
{
2022-07-01 16:11:40 +02:00
try {
$this->setRecipients($recipientsArray);
2022-07-13 13:23:48 +02:00
$configuration = oxNew(Configuration::class);
$client = oxNew(MessageClient::class)->getClient();
2022-07-01 16:11:40 +02:00
/** @var SmsRequestInterface $request */
2022-07-13 13:23:48 +02:00
$request = oxNew(RequestFactory::class, $this->getMessage(), $client)->getSmsRequest();
$request->setTestMode($configuration->getTestMode())->setMethod(RequestInterface::METHOD_POST)
->setSenderAddress(
oxNew(
Sender::class,
$configuration->getSmsSenderNumber(),
$configuration->getSmsSenderCountry()
)
)
2022-07-13 13:23:48 +02:00
->setSenderAddressType(RequestInterface::SENDERADDRESSTYPE_INTERNATIONAL);
2022-07-01 16:11:40 +02:00
$recipientsList = $request->getRecipientsList();
2022-07-04 09:13:36 +02:00
foreach ($recipientsArray as $recipient) {
2022-07-13 13:23:48 +02:00
$recipientsList->add($recipient);
2022-07-04 09:13:36 +02:00
}
2022-07-13 13:23:48 +02:00
$response = $client->request($request);
2022-07-01 16:11:40 +02:00
2022-07-04 09:13:36 +02:00
$this->response = $response;
if (false === $response->isSuccessful()) {
2022-07-13 13:23:48 +02:00
Registry::getLogger()->warning($response->getErrorMessage(), [$request->getBody()]);
}
2022-07-01 16:11:40 +02:00
return $response->isSuccessful();
} catch (abortSendingExceptionInterface $e) {
Registry::getLogger()->warning($e->getMessage());
2022-07-27 09:27:59 +02:00
// Oxid does not accept throwable interface only exceptions according by definition
Registry::getUtilsView()->addErrorToDisplay($e->getMessage());
2022-07-01 16:11:40 +02:00
} catch (GuzzleException $e) {
Registry::getLogger()->warning($e->getMessage());
2022-07-27 09:27:59 +02:00
Registry::getUtilsView()->addErrorToDisplay($e->getMessage());
2022-07-01 16:11:40 +02:00
} catch (ApiException $e) {
Registry::getLogger()->warning($e->getMessage());
2022-07-27 09:27:59 +02:00
Registry::getUtilsView()->addErrorToDisplay($e->getMessage());
2022-07-13 13:23:48 +02:00
} catch (InvalidArgumentException $e) {
2022-07-01 16:11:40 +02:00
Registry::getLogger()->warning($e->getMessage());
2022-07-27 09:27:59 +02:00
Registry::getUtilsView()->addErrorToDisplay($e->getMessage());
}
2022-07-01 16:11:40 +02:00
return false;
}
2022-07-04 09:13:36 +02:00
/**
* @return string
*/
public function getTypeName(): string
{
return 'SMS';
}
2022-07-13 13:23:48 +02:00
}