linkmobility4oxid/src/Application/Model/Sms.php

102 lines
3.6 KiB
PHP
Raw Normal View History

<?php
/**
* This Software is the property of Data Development and is protected
* by copyright law - it is NOT Freeware.
* Any unauthorized use of this software without a valid license
* is a violation of the license agreement and will be prosecuted by
* civil and criminal law.
* http://www.shopmodule.com
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
* @link http://www.oxidmodule.com
*/
namespace D3\Linkmobility4OXID\Application\Model;
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\Modules\Application\Model\RequestFactory;
2022-07-01 16:11:40 +02:00
use D3\LinkmobilityClient\Exceptions\ApiException;
use D3\LinkmobilityClient\Request\RequestInterface;
2022-07-04 09:13:36 +02:00
use D3\LinkmobilityClient\Response\ResponseInterface;
use D3\LinkmobilityClient\ValueObject\Sender;
2022-07-01 16:11:40 +02:00
use GuzzleHttp\Exception\GuzzleException;
use OxidEsales\Eshop\Application\Model\User;
2022-07-01 16:11:40 +02:00
use OxidEsales\Eshop\Core\Registry;
class Sms
{
2022-07-04 09:13:36 +02:00
private $response;
2022-07-01 16:11:40 +02:00
/**
* @param User $user
* @param $message
*
* @return bool
*/
public function sendUserAccountMessage(User $user, $message): bool
2022-07-04 09:13:36 +02:00
{
try {
return $this->sendCustomRecipientMessage(
[ oxNew( UserRecipients::class, $user )->getSmsRecipient() ],
$message
);
} catch (noRecipientFoundException $e) {
Registry::getLogger()->warning($e->getMessage());
Registry::getUtilsView()->addErrorToDisplay($e);
}
return false;
}
/**
* @param array $recipientsArray
* @param $message
*
* @return bool
*/
public function sendCustomRecipientMessage(array $recipientsArray, $message): bool
{
2022-07-01 16:11:40 +02:00
try {
$configuration = oxNew( Configuration::class );
$client = oxNew( MessageClient::class )->getClient();
$request = oxNew( RequestFactory::class, $message, $client )->getSmsRequest();
$request->setTestMode( $configuration->getTestMode() )->setMethod( RequestInterface::METHOD_POST )->setSenderAddress( oxNew( Sender::class, $configuration->getSmsSenderNumber(), $configuration->getSmsSenderCountry() ) )->setSenderAddressType( RequestInterface::SENDERADDRESSTYPE_INTERNATIONAL );
$recipientsList = $request->getRecipientsList();
2022-07-04 09:13:36 +02:00
foreach ($recipientsArray as $recipient) {
$recipientsList->add( $recipient );
}
2022-07-01 16:11:40 +02:00
$response = $client->request( $request );
2022-07-04 09:13:36 +02:00
$this->response = $response;
2022-07-01 16:11:40 +02:00
return $response->isSuccessful();
} catch (abortSendingExceptionInterface $e) {
Registry::getLogger()->warning($e->getMessage());
Registry::getUtilsView()->addErrorToDisplay($e);
} catch (GuzzleException $e) {
Registry::getLogger()->warning($e->getMessage());
Registry::getUtilsView()->addErrorToDisplay($e);
} catch (ApiException $e) {
Registry::getLogger()->warning($e->getMessage());
Registry::getUtilsView()->addErrorToDisplay($e);
} catch (\InvalidArgumentException $e) {
Registry::getLogger()->warning($e->getMessage());
Registry::getUtilsView()->addErrorToDisplay($e);
}
2022-07-01 16:11:40 +02:00
return false;
}
2022-07-04 09:13:36 +02:00
/**
* @return ResponseInterface|null
*/
public function getResponse()
{
return $this->response;
}
}