Viewing file: BulksmsBd.php (4.18 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 BulksmsBd {
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->bulksmsbd_status) || $this->credentials->bulksmsbd_status !='active'){ throw new \Exception('This provider is not active. Please contact with the administrator'); }
if (!isset($this->credentials->bulksmsbd_password) || !isset($this->credentials->bulksmsbd_username) || !isset($this->credentials->bulksmsbd_username)){ 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( 'username'=>$this->credentials->bulksmsbd_username, 'password'=>$this->credentials->bulksmsbd_password, 'number'=>str_replace('+','',$item), 'message'=>"$text" ); // http://66.45.237.70/api.php?username=Mamun1122&password=Mamun1122&number=8801883998671&message=TestMessage $sending_url = $this->credentials->bulksmsbd_url; $client = new \GuzzleHttp\Client(['verify' => false]); $response = $client->post($sending_url, [ 'form_params' => $parameters, ]); $responseString = $response->getBody()->getContents(); $responseString = explode("|",$responseString); $responseString = $responseString[0];
}
}
function send_message ( $post_body, $url, $username, $password):array {
$headers = array( 'Content-Type:application/json', 'Authorization:Basic '. base64_encode("$username:$password") );
$parameters = $post_body;
$client = new \GuzzleHttp\Client(['verify' => false]); $response = $client->post($url, [ 'body' => $parameters, 'headers' => $headers, ]); $responseString = $response->getBody()->getContents(); Log::info($responseString);
}
public function getSendFail(){ return $this->send_fail; }
private function setSendFail($sendFailArray){ $this->send_fail[]=$sendFailArray; }
}
|