array('URL', 'input'),
'login_id' => array('AUTHORIZE_LOGIN_ID', 'input'),
'transaction_key' => array('AUTHORIZE_TRANSACTION_KEY', 'input'),
'md5_hash' => array('AUTHORIZE_MD5_HASH', 'input'),
'capture' => array('INSTANTCAPTURE', 'boolean','1'),
'notification' => array('ALLOW_NOTIFICATIONS_FROM_X', 'boolean','0'),
'api' => array('API', 'list',array(
'sim' => 'SIM',
'aim' => 'AIM',
'dpm' => 'DPM')
),
'ask_ccv' => array('CARD_VALIDATION_CODE', 'boolean','0'),
'debug' => array('DEBUG', 'boolean','0'),
'return_url' => array('RETURN_URL', 'input'),
'x_logo_url' => array('LOGO', 'input'),
'invalid_status' => array('INVALID_STATUS', 'orderstatus'),
'pending_status' => array('PENDING_STATUS', 'orderstatus'),
'verified_status' => array('VERIFIED_STATUS', 'orderstatus')
);
var $debugData = array();
function needCC(&$method) {
if(@$method->payment_params->api=='aim'){
$method->ask_cc=true;
if($method->payment_params->ask_ccv){
$method->ask_ccv = true;
}
return true;
}
return false;
}
function onBeforeOrderCreate(&$order,&$do){
if(parent::onBeforeOrderCreate($order, $do) === true)
return true;
if($this->payment_params->api != 'aim'){
return true;
}
if(!function_exists('curl_init')){
$this->app->enqueueMessage('The Authorize.net payment plugin in AIM mode needs the CURL library installed but it seems that it is not available on your server. Please contact your web hosting to set it up.','error');
return false;
}
$vars = $this->_loadStandardVars($order);
$vars["x_delim_data"]= "TRUE";
$vars["x_delim_char"] = "|";
$this->ccLoad();
if($this->payment_params->ask_ccv){
$vars["x_card_code"] = $this->cc_CCV;
}
$vars["x_card_num"] = $this->cc_number;
$vars["x_exp_date"] = $this->cc_month.$this->cc_year;
$vars["x_tran_key"] = $this->payment_params->transaction_key;
$post_string = "";
foreach( $vars as $key => $value ){
if(is_array($value)){
foreach($value as $v){
$post_string .= "$key=" . urlencode( $v ) . "&";
}
}else{
$post_string .= "$key=" . urlencode( $value ) . "&";
}
}
$post_string = rtrim( $post_string, "& " );
$request = curl_init($this->payment_params->url);
curl_setopt($request, CURLOPT_HEADER, 0);
curl_setopt($request, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($request, CURLOPT_POSTFIELDS, $post_string);
curl_setopt($request, CURLOPT_SSL_VERIFYPEER, FALSE);
$post_response = curl_exec($request);
if(empty($post_response)){
$this->app->enqueueMessage('The connection to the payment plateform did not succeed. It is often caused by the hosting company blocking external connections so you should contact him for further guidance. The cURL error message was: '.curl_error($request),'error');
return false;
}
curl_close ($request);
$response_array = explode("|",$post_response);
$response_code = (int)@$response_array[0];
$response_subcode = @$response_array[1];
$response_reason_code = @$response_array[2];
$response_reason_text = @$response_array[3];
$this->response_code = $response_code;
switch($response_code) {
case 2:
$this->app->enqueueMessage(JText::_('TRANSACTION_DECLINED_WRONG_CARD'));
$this->ccClear();
$do = false;
break;
case 3:
default:
$this->app->enqueueMessage(JText::sprintf('TRANSACTION_PROCESSING_ERROR',$response_reason_code.' '.$response_reason_text));
$this->ccClear();
$do = false;
break;
case 1:
$history = new stdClass();
$history->notified=0;
$history->amount= round($order->cart->full_total->prices[0]->price_value_with_tax,2).'USD';
$history->data = '';
$this->modifyOrder($order,$this->payment_params->verified_status,$history,false);
break;
case 4:
$history = new stdClass();
$history->notified=0;
$history->amount= round($order->cart->full_total->prices[0]->price_value_with_tax,2).'USD';
$history->data = '';
$this->modifyOrder($order,$this->payment_params->pending_status,$history,false);
break;
}
$this->vars = $vars;
return true;
}
function onAfterOrderCreate(&$order,&$send_email){
$this->loadOrderData($order);
$this->loadPaymentParams($order);
if($this->app->isAdmin())
return true;
if(empty($order->order_payment_method) || $order->order_payment_method != $this->name)
return true;
if(empty($this->payment_params))
return false;
if($this->payment_params->api != 'aim'){
return true;
}
if(!empty($this->response_code)){
switch($this->response_code){
case 1:
$email = new stdClass();
$email->subject = JText::sprintf('PAYMENT_NOTIFICATION_FOR_ORDER','Authorize.net','Accepted',$order->order_number);
$url = HIKASHOP_LIVE.'administrator/index.php?option=com_hikashop&ctrl=order&task=listing';
$order_text = "\r\n".JText::sprintf('NOTIFICATION_OF_ORDER_ON_WEBSITE',$order->order_number,HIKASHOP_LIVE);
$order_text .= "\r\n".str_replace('
',"\r\n",JText::sprintf('ACCESS_ORDER_WITH_LINK',$url));
$body = str_replace('
',"\r\n",JText::sprintf('PAYMENT_NOTIFICATION_STATUS','Authorize.net','Accepted')).' '.JText::sprintf('ORDER_STATUS_CHANGED',$order->order_status)."\r\n\r\n".$order_text;
$email->body = $body;
$this->modifyOrder($order,$order->order_status,false,$email);
break;
case 4:
$email = new stdClass();
$email->subject = JText::sprintf('PAYMENT_NOTIFICATION_FOR_ORDER','Authorize.net','Pending',$order->order_number);
$url = HIKASHOP_LIVE.'administrator/index.php?option=com_hikashop&ctrl=order&task=listing';
$order_text = "\r\n".JText::sprintf('NOTIFICATION_OF_ORDER_ON_WEBSITE',$order->order_number,HIKASHOP_LIVE);
$order_text .= "\r\n".str_replace('
',"\r\n",JText::sprintf('ACCESS_ORDER_WITH_LINK',$url));
$body = str_replace('
',"\r\n",JText::sprintf('PAYMENT_NOTIFICATION_STATUS','Authorize.net','Pending')).' '.JText::sprintf('ORDER_STATUS_CHANGED',$order->order_status)."\r\n\r\n".$order_text;
$email->body = $body;
$this->modifyOrder($order,$order->order_status,false,$email);
break;
}
}
}
function _loadStandardVars(&$order){
$this->loadOrderData($order);
$this->loadPaymentParams($order);
//##### ni3 hack ####
//var_dump($_POST);die;
$app = JFactory::getApplication();
$params = JComponentHelper::getParams('com_hikashop');
$milesconversion = $params->get('milesconversion');
$minimunmiles = $params->get('minimunmiles');
$AmountPaidByPointsProgram = $_POST['AmountPaidByPointsProgram'];
$PointsProgramAccountNo = $_POST['PointsProgramAccountNo'];
$PointsProgramPassword = $_POST['PointsProgramPassword'];
$miles = $_POST['miles'];
$hikashop_payment = $_POST['hikashop_payment'];
$total_amount = round($order->cart->full_total->prices[0]->price_value_with_tax,(int)$this->currency->currency_locale['int_frac_digits']);
$deducted_miles_conversion_to_amount = (float)($AmountPaidByPointsProgram/$milesconversion);
$amount_paid_in_money = (float)$total_amount - (float)$deducted_miles_conversion_to_amount;
$x_amount = round($amount_paid_in_money, 2 );
$_SESSION['miles'] = $miles;
$_SESSION['amount_paid_in_money'] = $amount_paid_in_money;
$_SESSION['AmountPaidByPointsProgram'] = $AmountPaidByPointsProgram;
$_SESSION['deducted_miles_conversion_to_amount'] = $deducted_miles_conversion_to_amount;
$_SESSION['PointsProgramAccountNo'] = $PointsProgramAccountNo;
$_SESSION['PointsProgramPassword'] = $PointsProgramPassword;
$_SESSION['total_amount'] = $total_amount;
//var_dump($_SESSION);die;
//##### ni3 hack complete ####
$vars = array(
//"x_amount" => round($order->cart->full_total->prices[0]->price_value_with_tax,(int)$this->currency->currency_locale['int_frac_digits']),
"x_amount" => round($x_amount,(int)$this->currency->currency_locale['int_frac_digits']),
"x_version" => '3.1',
"x_test_request" => ($this->payment_params->debug?'TRUE':'FALSE'),
);
$vars["x_relay_response"] = 'FALSE';
$vars["x_customer_ip"] = $order->order_ip;
if(!isset($this->payment_params->capture))
$this->payment_params->capture=1;
if($this->payment_params->capture){
$vars["x_type"] = 'AUTH_CAPTURE';
}else{
$vars["x_type"] = 'AUTH_ONLY';
}
$vars["x_login"] = $this->payment_params->login_id;
if(!empty($order->order_id)){
$vars["x_invoice_num"] = $order->order_id;
$vars["x_po_num"] = $vars["x_invoice_num"];
}
$vars["x_email"]=$this->user->user_email;
if(!empty($order->cart->billing_address)){
$vars["x_first_name"]=substr(@$order->cart->billing_address->address_firstname,0,50);
$vars["x_last_name"]=substr(@$order->cart->billing_address->address_lastname,0,50);
$vars["x_address"]=substr(@$order->cart->billing_address->address_street,0,60);
$vars["x_company"]=substr(@$order->cart->billing_address->address_company,0,50);
$vars["x_country"]=substr(@$order->cart->billing_address->address_country->zone_name_english,0,60);
$vars["x_zip"]=substr(@$order->cart->billing_address->address_post_code,0,20);
$vars["x_city"]=substr(@$order->cart->billing_address->address_city,0,40);
$vars["x_state"]=substr(@$order->cart->billing_address->address_state->zone_name_english,0,40);
$vars["x_phone"]=substr(@$order->cart->billing_address->address_telephone,0,25);
}
if(!empty($order->cart->shipping_address)){
$vars["x_ship_to_first_name"]=substr(@$order->cart->shipping_address->address_firstname,0,50);
$vars["x_ship_to_last_name"]=substr(@$order->cart->shipping_address->address_lastname,0,50);
$vars["x_ship_to_address"]=substr(@$order->cart->shipping_address->address_street,0,60);
$vars["x_ship_to_company"]=substr(@$order->cart->shipping_address->address_company,0,50);
$vars["x_ship_to_country"]=substr(@$order->cart->shipping_address->address_country->zone_name_english,0,60);
$vars["x_ship_to_zip"]=substr(@$order->cart->shipping_address->address_post_code,0,20);
$vars["x_ship_to_city"]=substr(@$order->cart->shipping_address->address_city,0,40);
$vars["x_ship_to_state"]=substr(@$order->cart->shipping_address->address_state->zone_name_english,0,40);
}
$i = 1;
$tax = 0;
$vars["x_line_item"]=array();
$config =& hikashop_config();
$group = $config->get('group_options',0);
foreach($order->cart->products as $product){
if($group && $product->order_product_option_parent_id) continue;
if(bccomp($product->order_product_tax,0,5)){
$tax+=$product->order_product_quantity*round($product->order_product_tax,(int)$this->currency->currency_locale['int_frac_digits']);
$has_tax = 'TRUE';
}else{
$has_tax = 'FALSE';
}
$vars["x_line_item"][]=substr($product->order_product_code,0,30).'<|>'.substr(strip_tags($product->order_product_name),0,30).'<|><|>'.$product->order_product_quantity.'<|>'.round($product->order_product_price,(int)$this->currency->currency_locale['int_frac_digits']).'<|>'.$has_tax;
}
if(!empty($order->cart->coupon) && @$order->cart->coupon->discount_value>0){
$vars["x_line_item"][]='coupon<|>'.JText::_('HIKASHOP_COUPON').'<|><|>1<|>'.round($order->cart->coupon->discount_value,(int)$this->currency->currency_locale['int_frac_digits']).'<|>N';
}
if(!empty($order->order_payment_price)){
$vars["x_line_item"][]='payment<|>'.JText::_('HIKASHOP_PAYMENT').'<|><|>1<|>'.round($order->order_payment_price,(int)$this->currency->currency_locale['int_frac_digits']).'<|>N';
}
if(bccomp($tax,0,5)){
$vars['x_tax']=$tax;
$vars['x_tax_exempt']='FALSE';
}else{
$vars['x_tax_exempt']='TRUE';
}
if(!empty($order->order_shipping_price)){
$vars["x_freight"]=round($order->order_shipping_price,(int)$this->currency->currency_locale['int_frac_digits']);
}
return $vars;
}
function onAfterOrderConfirm(&$order,&$methods,$method_id){
parent::onAfterOrderConfirm($order, $methods, $method_id);
if(@$this->payment_params->api=='aim'){
$viewType='thankyou';
$this->payment_params->return_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=checkout&task=after_end&order_id='.$order->order_id.$this->url_itemid;
$this->removeCart = true;
}else{
$this->payment_params->iframe = 1;
$vars = $this->_loadStandardVars($order);
$viewType = 'end';
$vars["x_show_form"] = 'PAYMENT_FORM';
if(@$this->payment_params->notification){
$vars["x_relay_response"] = 'TRUE';
$vars["x_relay_url"] = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=checkout&task=notify¬if_payment=authorize&tmpl=component&lang='.$this->locale.$this->url_itemid;
}
$vars["x_fp_sequence"] = $vars["x_invoice_num"];
$vars["x_fp_timestamp"] = time();
$vars["x_fp_hash"] = hash_hmac("md5", $vars["x_login"] . "^" . $vars["x_fp_sequence"] . "^" . $vars["x_fp_timestamp"] . "^" . $vars["x_amount"] . "^", $this->payment_params->transaction_key);
if(!empty($this->payment_params->x_logo_url)){
$vars['x_logo_url']=$this->payment_params->x_logo_url;
}
$this->vars = $vars;
}
return $this->showPage($viewType);
}
function onAfterOrderUpdate(&$order,&$send_email){
if ($this->debug) {error_log("Order update");}
$class = hikashop_get('class.order');
$fullOrder= $class->loadFullOrder($order->order_id,true);
//##### ni3 hack ####
//var_dump($_POST);die;
$total_amount = $_SESSION['total_amount'];
$miles = $_SESSION['miles'];
$amount_paid_in_money = $_SESSION['amount_paid_in_money'];
$AmountPaidByPointsProgram = $_SESSION['AmountPaidByPointsProgram'];
$deducted_miles_conversion_to_amount = $_SESSION['deducted_miles_conversion_to_amount'];
$PointsProgramAccountNo = $_SESSION['PointsProgramAccountNo'];
$PointsProgramPassword = $_SESSION['PointsProgramPassword'];
$db = JFactory::getDBO();
//##### ni3 hack complete ####
//if($order->order_status == 'confirmed' && $order->old->order_status == 'created')
if( !empty($order->order_status) && $order->order_status == 'confirmed' && (empty($order->old->order_status) || $order->order_status != $order->old->order_status) || $order->old->order_status == 'created' )
{
//echo $order->order_id;die;
$orderid = @$order_id?$order_id:0;
$ins_query = "INSERT INTO `#__hikashop_order_payment_miles_and_money`(`order_id` ,`deducted_miles` ,`deducted_amount` ,`total_amount`)
VALUES(115,115,115,115)";
//echo $ins_query;die;
$db->setQuery($ins_query);
$db->query();
$ins_query = "INSERT INTO `#__hikashop_order_payment_miles_and_money`(`order_id` ,`deducted_miles` ,`deducted_amount` ,`total_amount`)
VALUES(".$orderid.",'$AmountPaidByPointsProgram','$amount_paid_in_money','$total_amount')";
//echo $ins_query;die;
$db->setQuery($ins_query);
$db->query();
$current_order_miles_id = $db->insertid();
$debit_url = "https://opk.miles-and-more.com/kdi/gui/request.php?login=SU_BED_54Hr&pw=jGCzW75_PGRXN5O&card=".$PointsProgramAccountNo."&action=debit&awardcode=S00027&miles=".$AmountPaidByPointsProgram."&stmttext1=LHWorldShopGourmet&pid=".$orderid;
$ch = curl_init();
//var_dump($ch);die;
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //Set curl to return the data instead of printing it to the browser.
curl_setopt($ch, CURLOPT_URL, $debit_url);
$data = curl_exec($ch);
curl_close($ch);
//$xml = simplexml_load_string(file_get_contents($data));
$xml = simplexml_load_string(file_get_contents("https://opk.miles-and-more.com/kdi/gui/request.php?login=SU_BED_54Hr&pw=jGCzW75_PGRXN5O&card=".$PointsProgramAccountNo."&action=debit&awardcode=S00027&miles=".$AmountPaidByPointsProgram."&stmttext1=LHWorldShopGourmet&pid=".$orderid));
$miles_transaction_id = $xml->TRANSACTION_ID;
$error_no = $xml->ERROR_NO;
$ins_query1 = "UPDATE `#__hikashop_order_payment_miles_and_money` SET `miles_transaction_id` =".$db->quote($miles_transaction_id)."
WHERE id=".$current_order_miles_id;
//echo $ins_query1;
$db->setQuery($ins_query1);
$db->query();
if($error_no)
{
$ins_query2 = "UPDATE `#__hikashop_order_payment_miles_and_money` SET `error` = ".$db->quote($error_no)." WHERE id=".$current_order_miles_id;
//echo $ins_query2;
$db->setQuery($ins_query2);
$db->query();
}
}
//var_dump($order);die;
//$method = $this->getMethod();
//if(!isset($order->order_status))
// return true;
//if( !empty($order->order_type) && $order->order_type != 'sale' )
// return true;
//$this->_giveAndGiveBack($order, $method, 0);
}
function onPaymentNotification(&$statuses){
//##### ni3 hack ####
//var_dump($_POST);die;
$total_amount = $_SESSION['total_amount'];
$miles = $_SESSION['miles'];
$amount_paid_in_money = $_SESSION['amount_paid_in_money'];
$AmountPaidByPointsProgram = $_SESSION['AmountPaidByPointsProgram'];
$deducted_miles_conversion_to_amount = $_SESSION['deducted_miles_conversion_to_amount'];
$PointsProgramAccountNo = $_SESSION['PointsProgramAccountNo'];
$PointsProgramPassword = $_SESSION['PointsProgramPassword'];
$price_check = round($amount_paid_in_money, 2 );
//##### ni3 hack complete ####
$vars = array();
$data = array();
$filter = JFilterInput::getInstance();
foreach($_REQUEST as $key => $value){
$key = $filter->clean($key);
$value = JRequest::getString($key);
$vars[$key]=$value;
}
$order_id = (int)@$vars['x_po_num'];
$dbOrder = $this->getOrder($order_id);
$this->loadPaymentParams($dbOrder);
if(empty($this->payment_params))
return false;
$this->loadOrderData($dbOrder);
if($this->payment_params->debug){
echo print_r($vars,true)."\n\n\n";
echo print_r($dbOrder,true)."\n\n\n";
}
if(empty($dbOrder)){
echo "Could not load any order for your notification ".@$vars['x_po_num'];
return 'Order unkown';
}
$this->payment_params->return_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=checkout&task=after_end&order_id='.$order_id.$this->url_itemid;
if(@$this->payment_params->api=='dpm' && @$_GET['iframe']){
$vars = unserialize(base64_decode($vars['iframe']));
$name = 'end';
}else{
$name = 'thankyou';
}
ob_start();
$this->showPage($name);
$msg = ob_get_clean();
if(@$this->payment_params->api=='dpm'&&@$_GET['iframe']){
echo $msg;
ob_start();
return;
}
if(!$this->payment_params->notification){
echo 'Notification not activated for authorize.net';
return $msg;
}
$vars['x_MD5_Hash_calculated']=$this->md5Hash(@$this->payment_params->md5_hash,@$this->payment_params->login_id,@$vars['x_trans_id'],@$vars['x_amount']);
$url = HIKASHOP_LIVE.'administrator/index.php?option=com_hikashop&ctrl=order&task=edit&order_id='.$order_id;
$order_text = "\r\n".JText::sprintf('NOTIFICATION_OF_ORDER_ON_WEBSITE',$dbOrder->order_number,HIKASHOP_LIVE);
$order_text .= "\r\n".str_replace('
',"\r\n",JText::sprintf('ACCESS_ORDER_WITH_LINK',$url));
if (@$vars['x_MD5_Hash']!=$vars['x_MD5_Hash_calculated']) {
$email = new stdClass();
$email->subject = JText::sprintf('NOTIFICATION_REFUSED_FOR_THE_ORDER','Authorize.net').'invalid response';
$body = JText::sprintf("Hello,\r\n An Authorize.net notification was refused because the response from the Authorize.net server was invalid. The hash received was ".$vars['x_MD5_Hash']." while the calculated hash was ".$vars['x_MD5_Hash_calculated'].". Please cehck that you're set the same md5 hash key in Authorize.net and the plugin")."\r\n\r\n".$order_text;
$email->body = $body;
$this->modifyOrder($order_id, $this->payment_params->invalid_status,false,$email);
if($this->payment_params->debug){
echo 'invalid md5'."\n\n\n";
}
return 'Invalid notification.';
}
$vars['x_response_code']=(int)@$vars['x_response_code'];
if(!in_array($vars['x_response_code'],array(1,4))) {
if($vars['x_response_code']==2){
$vars['payment_status']='Declined';
}else{
$vars['payment_status']='Error';
}
$email = new stdClass();
$email->subject = JText::sprintf('PAYMENT_NOTIFICATION_FOR_ORDER','Authorize.net',$vars['payment_status'],$dbOrder->order_number);
$body = str_replace('
',"\r\n",JText::sprintf('PAYMENT_NOTIFICATION_STATUS','Authorize.net',$vars['payment_status'])).' '.JText::_('STATUS_NOT_CHANGED')."\r\n\r\n".$order_text;
$email->body = $body;
$this->modifyOrder($order_id, $this->payment_params->invalid_status,false,$email);
if($this->payment_params->debug){
echo 'payment with code '.@$vars['x_response_code'].' : '.@$vars['x_response_reason_text']."\n\n\n";
}
return 'The transaction was declined';
}
$history = new stdClass();
$history->notified=0;
$history->amount= @$vars['x_amount'].'USD';
$history->data = ob_get_clean();
//$price_check = round($dbOrder->order_full_price, 2 );//ni3 hack
if($price_check != @$vars['x_amount']){
$email = new stdClass();
$email->subject = JText::sprintf('NOTIFICATION_REFUSED_FOR_THE_ORDER','Authorize.net').JText::_('INVALID_AMOUNT');
$body = str_replace('
',"\r\n",JText::sprintf('AMOUNT_RECEIVED_DIFFERENT_FROM_ORDER','Authorize.net',$history->amount,$price_check.'USD'))."\r\n\r\n".$order_text;
$email->body = $body;
$this->modifyOrder($order_id, $this->payment_params->invalid_status,$history,$email);
return $msg;
}
if($vars['x_response_code']==1){
$order_status = $this->payment_params->verified_status;
$vars['payment_status']='Accepted';
}else{
$order_status = $this->payment_params->pending_status;
$order_text = @$vars['x_response_reason_text']."\r\n\r\n".$order_text;
$vars['payment_status']='Pending';
}
$config =& hikashop_config();
if($config->get('order_confirmed_status','confirmed') == $order_status){
$history->notified=1;
}
$email = new stdClass();
$email->subject = JText::sprintf('PAYMENT_NOTIFICATION_FOR_ORDER','Authorize.net',$vars['payment_status'],$dbOrder->order_number);
$body = str_replace('
',"\r\n",JText::sprintf('PAYMENT_NOTIFICATION_STATUS','Authorize.net',$vars['payment_status'])).' '.JText::sprintf('ORDER_STATUS_CHANGED',$statuses[$order->order_status])."\r\n\r\n".$order_text;
$email->body = $body;
$this->modifyOrder($order_id, $order_status, $history, $email);
return $msg;
}
function getPaymentDefaultValues(&$element) {
$element->payment_name='Authorize';
$element->payment_description='You can pay by credit card using this payment method';
$element->payment_images='MasterCard,VISA,Credit_card,American_Express';
$element->payment_params->url='https://secure.authorize.net/gateway/transact.dll';
$element->payment_params->api='sim';
$element->payment_params->invalid_status='cancelled';
$element->payment_params->pending_status='created';
$element->payment_params->verified_status='confirmed';
}
function md5Hash($md5Hash, $login_id, $trans_id, $amount) {
if ($amount == '' || $amount == '0'){
$amount = '0.00';
}
return strtoupper(md5($md5Hash.$login_id.$trans_id.$amount));
}
}
if(!function_exists('hash_hmac')){
function hash_hmac($algo, $data, $key, $raw_output = false){
$algo = strtolower($algo);
$pack = 'H'.strlen($algo('test'));
$size = 64;
$opad = str_repeat(chr(0x5C), $size);
$ipad = str_repeat(chr(0x36), $size);
if (strlen($key) > $size) {
$key = str_pad(pack($pack, $algo($key)), $size, chr(0x00));
} else {
$key = str_pad($key, $size, chr(0x00));
}
for ($i = 0; $i < strlen($key) - 1; $i++) {
$opad[$i] = $opad[$i] ^ $key[$i];
$ipad[$i] = $ipad[$i] ^ $key[$i];
}
$output = $algo($opad.pack($pack, $algo($ipad.$data)));
return ($raw_output) ? pack($pack, $output) : $output;
}
}