Server IP : 66.29.132.124 / Your IP : 18.119.235.107 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/modules/Sms/Core/Drivers/ |
Upload File : |
<?php namespace Modules\Sms\Core\Drivers; use Modules\Sms\Core\Exceptions\SmsException; class TwilioDriver extends Driver { protected $config; public function __construct($config) { $this->config = $config; } public function send() { $data = [ 'To'=>$this->recipient, 'From'=>$this->config['from'], 'Body'=>$this->message ]; $url = $this->config['url'].'/2010-04-01/Accounts/'.$this->config['sid'].'/Messages.json'; $curl = $this->curl($url,$data); $result = json_decode($curl,true); if(!empty($result['error_code'])){ throw new SmsException($result['error_message']); } if(!empty($result['code']) and is_numeric($result['code'])){ throw new SmsException($result['message']); } return $result; } public function curl($url,$data){ $ch = curl_init(); curl_setopt($ch, CURLOPT_AUTOREFERER, TRUE); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE); curl_setopt($ch, CURLOPT_USERPWD, $this->config['sid'].':'.$this->config['token']); curl_setopt($ch, CURLOPT_POST, count($data)); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); $data = curl_exec($ch); curl_close($ch); return $data; } }