-
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
94 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
<?php | ||
|
||
namespace Xenon\LaravelBDSms\Provider; | ||
|
||
use Xenon\LaravelBDSms\Handler\RenderException; | ||
use Xenon\LaravelBDSms\Request; | ||
use Xenon\LaravelBDSms\Sender; | ||
|
||
class SMSNoc extends AbstractProvider | ||
{ | ||
/** | ||
* Infobip Constructor | ||
* @param Sender $sender | ||
* @version v1.0.32 | ||
* @since v1.0.31 | ||
*/ | ||
public function __construct(Sender $sender) | ||
{ | ||
$this->senderObject = $sender; | ||
} | ||
|
||
/** | ||
* @param $config | ||
* @return string[] | ||
* @version v1.0.32 | ||
* @since v1.0.31 | ||
*/ | ||
private function getHeaders($config): array | ||
{ | ||
return [ | ||
'Authorization' => 'Bearer ' . $config['bearer_token'], | ||
'Content-Type' => 'application/json', | ||
]; | ||
} | ||
|
||
/** | ||
* @return false|string | ||
* @throws RenderException | ||
* @version v1.0.32 | ||
* @since v1.0.31 | ||
*/ | ||
public function sendRequest() | ||
{ | ||
$config = $this->senderObject->getConfig(); | ||
$queue = $this->senderObject->getQueue(); | ||
$text = $this->senderObject->getMessage(); | ||
$number = $this->senderObject->getMobile(); | ||
|
||
$query = [ | ||
'recipient' => '+88'.$number, | ||
'message' => $text, | ||
'type' => "plain", | ||
'sender_id' => $config['sender_id'], | ||
]; | ||
|
||
$requestObject = new Request('https://app.smsnoc.com/api/v3/sms/send', $query, $queue); | ||
$requestObject->setHeaders($this->getHeaders($config))->setContentTypeJson(true); | ||
|
||
$response = $requestObject->post(); | ||
if ($queue) { | ||
return true; | ||
} | ||
|
||
$body = $response->getBody(); | ||
$smsResult = $body->getContents(); | ||
|
||
$data['number'] = $number; | ||
$data['message'] = $text; | ||
return $this->generateReport($smsResult, $data)->getContent(); | ||
} | ||
|
||
/** | ||
* @throws RenderException | ||
* @version v1.0.32 | ||
* @since v1.0.31 | ||
*/ | ||
public function errorException() | ||
{ | ||
$config = $this->senderObject->getConfig(); | ||
|
||
if (!array_key_exists('sender_id', $config)) { | ||
throw new RenderException('sender_id key is absent in configuration'); | ||
} | ||
if (!array_key_exists('bearer_token', $config)) { | ||
throw new RenderException('bearer_token key is absent in configuration'); | ||
} | ||
} | ||
} |