/home/brandsfa/.trash/app/Utils/sms_module.php
<?php
namespace App\Utils;
use Illuminate\Support\Facades\Config;
use Illuminate\Support\Facades\DB;
use Nexmo\Laravel\Facade\Nexmo;
use Twilio\Rest\Client;
class SMS_module
{
public static function send($receiver, $otp)
{
$config = self::get_settings('twilio');
if (isset($config) && $config['status'] == 1) {
return self::twilio($receiver, $otp);
}
$config = self::get_settings('nexmo');
if (isset($config) && $config['status'] == 1) {
$response = self::nexmo($receiver, $otp);
return $response;
}
$config = self::get_settings('2factor');
if (isset($config) && $config['status'] == 1) {
$response = self::two_factor($receiver, $otp);
return $response;
}
$config = self::get_settings('msg91');
if (isset($config) && $config['status'] == 1) {
$response = self::msg_91($receiver, $otp);
return $response;
}
$config = self::get_settings('releans');
if (isset($config) && $config['status'] == 1) {
$response = self::releans($receiver, $otp);
return $response;
}
$config = self::get_settings('alphanet_sms');
if (isset($config) && $config['status'] == 1) {
return self::alphanet_sms($receiver, $otp);
}
return 'not_found';
}
public static function twilio($receiver, $otp)
{
$config = self::get_settings('twilio');
$response = 'error';
if (isset($config) && $config['status'] == 1) {
$message = str_replace("#OTP#", $otp, $config['otp_template']);
$sid = $config['sid'];
$token = $config['token'];
try {
$twilio = new Client($sid, $token);
$twilio->messages
->create($receiver, // to
array(
"messagingServiceSid" => $config['messaging_service_sid'],
"body" => $message
)
);
$response = 'success';
} catch (\Exception $exception) {
$response = 'error';
}
}
return $response;
}
public static function nexmo($receiver, $otp): string
{
$config = self::get_settings('nexmo');
$response = 'error';
if (isset($config) && $config['status'] == 1) {
$message = str_replace("#OTP#", $otp, $config['otp_template']);
try {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://rest.nexmo.com/sms/json');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "from=" . $config['from'] . "&text=" . $message . "&to=" . $receiver . "&api_key=" . $config['api_key'] . "&api_secret=" . $config['api_secret']);
$headers = array();
$headers[] = 'Content-Type: application/x-www-form-urlencoded';
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
$response = 'success';
} catch (\Exception $exception) {
$response = 'error';
}
}
return $response;
}
public static function two_factor($receiver, $otp)
{
$config = self::get_settings('2factor');
$response = 'error';
if (isset($config) && $config['status'] == 1) {
$api_key = $config['api_key'];
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://2factor.in/API/V1/" . $api_key . "/SMS/" . $receiver . "/" . $otp . "",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if (!$err) {
$response = 'success';
} else {
$response = 'error';
}
}
return $response;
}
public static function msg_91($receiver, $otp)
{
$config = self::get_settings('msg91');
$response = 'error';
if (isset($config) && $config['status'] == 1) {
$receiver = str_replace("+", "", $receiver);
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://api.msg91.com/api/v5/otp?template_id=" . $config['template_id'] . "&mobile=" . $receiver . "&authkey=" . $config['authkey'] . "",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => "{\"OTP\":\"$otp\"}",
CURLOPT_HTTPHEADER => array(
"content-type: application/json"
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if (!$err) {
$response = 'success';
} else {
$response = 'error';
}
}
return $response;
}
public static function releans($receiver, $otp)
{
$config = self::get_settings('releans');
$response = 'error';
if (isset($config) && $config['status'] == 1) {
$curl = curl_init();
$from = $config['from'];
$to = $receiver;
$message = str_replace("#OTP#", $otp, $config['otp_template']);
try {
curl_setopt_array($curl, array(
CURLOPT_URL => "https://api.releans.com/v2/message",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "sender=$from&mobile=$to&content=$message",
CURLOPT_HTTPHEADER => array(
"Authorization: Bearer ".$config['api_key']
),
));
$response = curl_exec($curl);
curl_close($curl);
$response = 'success';
} catch (\Exception $exception) {
$response = 'error';
}
}
return $response;
}
public static function alphanet_sms($receiver, $otp): string
{
$config = self::get_settings('alphanet_sms');
$response = 'error';
if (isset($config) && $config['status'] == 1) {
$receiver = str_replace("+", "", $receiver);
$message = str_replace("#OTP#", $otp, $config['otp_template']);
$api_key = $config['api_key'];
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.sms.net.bd/sendsms',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS => array('api_key' => $api_key, 'msg' => $message, 'to' => $receiver),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if (!$err) {
$response = 'success';
} else {
$response = 'error';
}
}
return $response;
}
public static function get_settings($name)
{
try {
$config = DB::table('addon_settings')->where('key_name', $name)
->where('settings_type', 'sms_config')->first();
} catch (\Exception $exception) {
return null;
}
return (isset($config)) ? json_decode($config->live_values, true) : null;
}
}