| Server IP : 104.26.2.156 / Your IP : 216.73.216.185 Web Server : nginx/1.27.1 System : Linux us-1 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64 User : vinodai ( 3134) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v1396/wwwindicidolscom/public_html/wp-content/plugins/woo-instamojo/lib/ |
Upload File : |
<?php
/**
* Instamojo
* used to manage Instamojo API calls
*
*/
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "curl.php";
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "ValidationException.php";
Class Instamojo
{
private $api_endpoint;
private $auth_endpoint;
private $auth_headers;
private $access_token;
private $client_id;
private $client_secret;
function __construct($client_id,$client_secret,$test_mode)
{
$this->curl = new Curl();
$this->curl->setCacert(dirname(__FILE__) . DIRECTORY_SEPARATOR . "cacert.pem");
$this->client_id = $client_id;
$this->client_secret = $client_secret;
if($test_mode)
$this->api_endpoint = "https://test.instamojo.com/v2/";
else
$this->api_endpoint = "https://www.instamojo.com/v2/";
if($test_mode)
$this->auth_endpoint = "https://test.instamojo.com/oauth2/token/";
else
$this->auth_endpoint = "https://www.instamojo.com/oauth2/token/";
$this->getAccessToken();
}
public function getAccessToken()
{
$data = array();
$data['client_id'] = $this->client_id;
$data['client_secret'] = $this->client_secret;
$data['scopes'] = "all";
$data['grant_type'] = "client_credentials";
$result = $this->curl->post($this->auth_endpoint,$data);
if($result)
{
$result = json_decode($result);
if(isset($result->error))
{
throw new ValidationException("The Authorization request failed with message '$result->error'", array("<a href='https://support.instamojo.com/hc/en-us/articles/214564625-Payment-Gateway-Authorization-Failed' target='_blank'>Payment Gateway Authorization Failed</a>"),$result);
}else
$this->access_token = $result->access_token;
}
$this->auth_headers[] = "Authorization:Bearer $this->access_token";
}
public function createOrderPayment($data)
{
$endpoint = $this->api_endpoint ."gateway/orders/";
$result = $this->curl->post($endpoint,$data,array("headers"=>$this->auth_headers));
$result =json_decode($result);
if(isset($result->order))
{
return $result;
}else{
$errors = array();
if(isset($result->message))
throw new ValidationException("Validation Error with message: $result->message",array($result->message),$result);
foreach($result as $k=>$v)
{
if(is_array($v))
$errors[] =$v[0];
}
if($errors)
throw new ValidationException("Validation Error Occured with following Errors : ",$errors,$result);
}
}
public function getOrderById($id)
{
$endpoint = $this->api_endpoint."gateway/orders/id:$id/";
$result = $this->curl->get($endpoint,array("headers"=>$this->auth_headers));
$result = json_decode($result);
if(isset($result->id) and $result->id)
return $result;
else
throw new Exception("Unable to Fetch Payment Request id:'$id' Server Responds ".print_r($result,true));
}
public function getPaymentStatus($payment_id, $payments){
foreach($payments as $payment){
if($payment->id == $payment_id){
return $payment->status;
}
}
}
}