Viewing file: Ajuratech.php (3.79 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace App\SmsProvider;
use App\Models\MessageLog; use Illuminate\Support\Facades\Log;
class Ajuratech {
private $user_name; private $password; private $to_array; private $body; private $send_fail=[];
public function __construct($credentials) { $this->credentials=$credentials; }
public function setTo($to){ $this->to_array=$to; return $this; }
public function setBody($body){ $this->body=$body; return $this; } public function setQueue($queue){ $this->queue=$queue; return $this; } public function setFrom($from) { $this->from_number = $from; return $this; } public function setMessage($message){ $this->message=$message; return $this; } public function setType($response){ $this->sms_type=$response; return $this; }
public function send(){
if (!isset($this->credentials->ajuratech_status) || $this->credentials->ajuratech_status !='active'){ throw new \Exception('This provider is not active. Please contact with the administrator'); }
if (!isset($this->credentials->ajuratech_api_key) || !isset($this->credentials->ajuratech_secret_key) || !isset($this->credentials->ajuratech_url)){ throw new \Exception('This provider is not configured. Please contact with the administrator'); }
$generatedTo=[]; foreach ($this->to_array as $key=>$item){ if ($this->sms_type && $this->sms_type=='inbox') { $type = 'inbox'; }else{ $type = 'sent'; } if($this->queue){ $this->message_log=MessageLog::updateOrCreate([ 'to'=>$item, 'from'=>$this->from_number, 'body'=>$this->body, 'message_id'=>$this->message->id, 'customer_id'=>$this->message->customer_id, 'type'=>'sent', ],['status'=>'succeed','queue_id'=>$this->queue->id]); }else{ $this->message_log=MessageLog::create([ 'to'=>$item, 'from'=>$this->from_number, 'body'=>$this->body, 'message_id'=>$this->message->id, 'customer_id'=>$this->message->customer_id, 'type'=> $type, 'status'=>'succeed' ]); } $generatedTo[]=[ 'to'=>$item, 'body'=>$this->body ];
$text=$this->body; $parameters= array( 'apikey'=>$this->credentials->ajuratech_api_key, 'secretkey'=>$this->credentials->ajuratech_secret_key, 'callerID'=>$this->from_number, 'messageContent'=>$text, 'toUser'=>$item );
$sending_url = $this->credentials->ajuratech_url.'?'.http_build_query($parameters);
$client = new \GuzzleHttp\Client(['verify' => false]); $response = $client->get($sending_url); $responseString = $response->getBody()->getContents();
if (isset($responseString) && isset(json_decode($responseString)->Status) && json_decode($responseString)->Status=='0'){ if($this->message_log){ $messageLog=$this->message_log; $messageLog->updated_at=now()->addSeconds(2); $messageLog->save(); } } Log::info($responseString); } }
public function getSendFail(){ return $this->send_fail; }
private function setSendFail($sendFailArray){ $this->send_fail[]=$sendFailArray; }
}
|