| Server IP : 89.108.64.180 / Your IP : 216.73.217.95 Web Server : Apache/2.4.41 (Ubuntu) System : Linux 89-108-64-180.cloudvps.regruhosting.ru 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : www-root ( 1010) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/www-root/data/www/nasut.ru/wp-content/plugins/halfdata-green-popups/modules/ |
Upload File : |
<?php
/* Instamojo integration for Green Forms */
if (!defined('UAP_CORE') && !defined('ABSPATH')) exit;
class lepopup_instamojo_class {
var $default_parameters = array(
"api-key" => "",
"auth-token" => "",
"salt" => "",
"item-name" => "",
"name" => "",
"phone" => "",
"email" => "",
"amount" => "",
"currency" => "INR",
"success-url" => ""
);
var $currency_list = array("INR");
function __construct() {
if (is_admin()) {
add_filter('lepopup_payment_providers', array(&$this, 'providers'), 10, 1);
add_action('wp_ajax_lepopup-instamojo-settings-html', array(&$this, "admin_settings_html"));
add_filter('lepopup_payment_gateways_transaction_html_instamojo', array(&$this, 'admin_details'), 10, 3);
}
add_filter('lepopup_payment_gateways_do_instamojo', array(&$this, 'front_submit'), 10, 2);
add_action("init", array(&$this, "front_init"));
}
function providers($_providers) {
if (!array_key_exists("instamojo", $_providers)) $_providers["instamojo"] = esc_html__('Instamojo', 'lepopup');
return $_providers;
}
function admin_settings_html() {
global $wpdb, $lepopup;
if (current_user_can('manage_options')) {
if (array_key_exists('data', $_REQUEST)) {
$data = json_decode(base64_decode(trim(stripslashes($_REQUEST['data']))), true);
if (is_array($data)) $data = array_merge($this->default_parameters, $data);
else $data = $this->default_parameters;
} else $data = $this->default_parameters;
$checkbox_id = $lepopup->random_string();
$html = '
<div class="lepopup-properties-item">
<div class="lepopup-properties-label">
<label>'.esc_html__('API Key', 'lepopup').'</label>
</div>
<div class="lepopup-properties-tooltip">
<i class="fas fa-question-circle lepopup-tooltip-anchor"></i>
<div class="lepopup-tooltip-content">'.esc_html__('Please enter a valid API Key.', 'lepopup').'</div>
</div>
<div class="lepopup-properties-content">
<input type="text" name="api-key" value="'.esc_html($data['api-key']).'" />
<label class="lepopup-integrations-description">'.sprintf(esc_html__('Find it on %sAPI & Plugins%s page in your Instamojo dashboard.', 'lepopup'), '<a href="https://www.instamojo.com/integrations" target="_blank">', '</a>').'</label>
</div>
</div>
<div class="lepopup-properties-item">
<div class="lepopup-properties-label">
<label>'.esc_html__('Auth Token', 'lepopup').'</label>
</div>
<div class="lepopup-properties-tooltip">
<i class="fas fa-question-circle lepopup-tooltip-anchor"></i>
<div class="lepopup-tooltip-content">'.esc_html__('Please enter a valid Auth Token.', 'lepopup').'</div>
</div>
<div class="lepopup-properties-content">
<input type="text" name="auth-token" value="'.esc_html($data['auth-token']).'" />
<label class="lepopup-integrations-description">'.sprintf(esc_html__('Find it on %sAPI & Plugins%s page in your Instamojo dashboard.', 'lepopup'), '<a href="https://www.instamojo.com/integrations" target="_blank">', '</a>').'</label>
</div>
</div>
<div class="lepopup-properties-item">
<div class="lepopup-properties-label">
<label>'.esc_html__('Salt', 'lepopup').'</label>
</div>
<div class="lepopup-properties-tooltip">
<i class="fas fa-question-circle lepopup-tooltip-anchor"></i>
<div class="lepopup-tooltip-content">'.esc_html__('Please enter a valid Salt.', 'lepopup').'</div>
</div>
<div class="lepopup-properties-content">
<input type="text" name="salt" value="'.esc_html($data['salt']).'" />
<label class="lepopup-integrations-description">'.sprintf(esc_html__('Find it on %sAPI & Plugins%s page in your Instamojo dashboard.', 'lepopup'), '<a href="https://www.instamojo.com/integrations" target="_blank">', '</a>').'</label>
</div>
</div>
<div class="lepopup-properties-item">
<div class="lepopup-properties-label">
<label>'.esc_html__('Purpose of payment', 'lepopup').'</label>
</div>
<div class="lepopup-properties-tooltip">
<i class="fas fa-question-circle lepopup-tooltip-anchor"></i>
<div class="lepopup-tooltip-content">'.esc_html__('Please enter the purpose of payment.', 'lepopup').'</div>
</div>
<div class="lepopup-properties-content">
<div class="lepopup-input-shortcode-selector">
<input type="text" name="item-name" value="'.(empty($data['item-name']) ? esc_html__('Membership Fee', 'lepopup') : esc_html($data['item-name'])).'" />
<div class="lepopup-shortcode-selector" onmouseover="lepopup_shortcode_selector_set(this)";><span><i class="fas fa-code"></i></span></div>
</div>
</div>
</div>
<div class="lepopup-properties-item">
<div class="lepopup-properties-label">
<label>'.esc_html__('Amount', 'lepopup').'</label>
</div>
<div class="lepopup-properties-tooltip">
<i class="fas fa-question-circle lepopup-tooltip-anchor"></i>
<div class="lepopup-tooltip-content">'.esc_html__('Set amount to pay and currency.', 'lepopup').'</div>
</div>
<div class="lepopup-properties-content">
<div class="lepopup-properties-group">
<div class="lepopup-properties-content-9dimes lepopup-input-shortcode-selector">
<input type="text" name="amount" value="'.esc_html($data['amount']).'" />
<div class="lepopup-shortcode-selector" onmouseover="lepopup_shortcode_selector_set(this)";><span><i class="fas fa-code"></i></span></div>
</div>
<div class="lepopup-properties-content-dime">
<select name="currency" class="lepopup-100px">';
foreach ($this->currency_list as $currency) {
$html .= '<option value="'.esc_html($currency).'"'.($data['currency'] == $currency ? ' selected="selected"' : '').'>'.esc_html($currency).'</option>';
}
$html .= '
</select>
</div>
</div>
</div>
</div>
<div class="lepopup-properties-item">
<div class="lepopup-properties-label">
<label>'.esc_html__('Payer\'s name', 'lepopup').'</label>
</div>
<div class="lepopup-properties-tooltip">
<i class="fas fa-question-circle lepopup-tooltip-anchor"></i>
<div class="lepopup-tooltip-content">'.esc_html__('Please enter name of the payer.', 'lepopup').'</div>
</div>
<div class="lepopup-properties-content">
<div class="lepopup-input-shortcode-selector">
<input type="text" name="name" value="'.esc_html($data['name']).'" />
<div class="lepopup-shortcode-selector" onmouseover="lepopup_shortcode_selector_set(this)";><span><i class="fas fa-code"></i></span></div>
</div>
</div>
</div>
<div class="lepopup-properties-item">
<div class="lepopup-properties-label">
<label>'.esc_html__('Payer\'s phone', 'lepopup').'</label>
</div>
<div class="lepopup-properties-tooltip">
<i class="fas fa-question-circle lepopup-tooltip-anchor"></i>
<div class="lepopup-tooltip-content">'.esc_html__('Please enter mobile number or landline number of the payer.', 'lepopup').'</div>
</div>
<div class="lepopup-properties-content">
<div class="lepopup-input-shortcode-selector">
<input type="text" name="phone" value="'.esc_html($data['phone']).'" />
<div class="lepopup-shortcode-selector" onmouseover="lepopup_shortcode_selector_set(this)";><span><i class="fas fa-code"></i></span></div>
</div>
</div>
</div>
<div class="lepopup-properties-item">
<div class="lepopup-properties-label">
<label>'.esc_html__('Payer\'s email', 'lepopup').'</label>
</div>
<div class="lepopup-properties-tooltip">
<i class="fas fa-question-circle lepopup-tooltip-anchor"></i>
<div class="lepopup-tooltip-content">'.esc_html__('Please enter email address of the payer.', 'lepopup').'</div>
</div>
<div class="lepopup-properties-content">
<div class="lepopup-input-shortcode-selector">
<input type="text" name="email" value="'.esc_html($data['email']).'" />
<div class="lepopup-shortcode-selector" onmouseover="lepopup_shortcode_selector_set(this)";><span><i class="fas fa-code"></i></span></div>
</div>
</div>
</div>
<div class="lepopup-properties-item">
<div class="lepopup-properties-label">
<label>'.esc_html__('Successful payment URL', 'lepopup').'</label>
</div>
<div class="lepopup-properties-tooltip">
<i class="fas fa-question-circle lepopup-tooltip-anchor"></i>
<div class="lepopup-tooltip-content">'.esc_html__('All payers are redirected to this URL after successful payment.', 'lepopup').'</div>
</div>
<div class="lepopup-properties-content">
<div class="lepopup-input-shortcode-selector">
<input type="text" name="success-url" value="'.esc_html($data['success-url']).'" />
<div class="lepopup-shortcode-selector" onmouseover="lepopup_shortcode_selector_set(this)";><span><i class="fas fa-code"></i></span></div>
</div>
</div>
</div>';
$return_object = array();
$return_object['status'] = 'OK';
$return_object['html'] = $html;
echo json_encode($return_object);
}
exit;
}
function front_submit($_result, $_data) {
global $wpdb, $lepopup;
$data = array_merge($this->default_parameters, $_data);
if (empty($data['api-key']) || empty($data['auth-token'])) return $_result;
if (empty($data['amount']) || !is_numeric($data['amount']) || $data['amount'] <= 0) return $_result;
$result = array();
$params = array(
'amount' => number_format($data['amount'], 2, '.', ''),
'purpose' => $data['item-name'],
'buyer_name' => $data['name'],
'phone' => $data['phone'],
'email' => $data['email'],
'redirect_url' => (empty($data['success-url']) ? $_SERVER["HTTP_REFERER"] : $data['success-url']),
'webhook' => (defined('UAP_CORE') ? admin_url('do.php').'?lepopup-ipn=instamojo' : get_bloginfo('url').'/?lepopup-ipn=instamojo').'&record-id='.$data["record-id"],
'allow_repeated_payments' => false
);
$request_data = $this->connect($data['api-key'], $data['auth-token'], 'payment-requests/', $params);
if (!is_array($request_data) || empty($request_data) || !array_key_exists('success', $request_data)) {
return array('status' => 'ERROR', 'message' => esc_html__('Invalid server response.', 'lepopup'));
} else if ($request_data['success']) {
$html = '
<form action="'.esc_html($request_data['payment_request']['longurl']).'" method="get" target="_top" style="display: none !important;">
<input type="submit" class="lepopup-pay" value="Submit">
</form>';
$result = array('status' => 'OK', 'form' => $html, 'amount' => number_format($data['amount'], 2, '.', ''), 'currency' => $data["currency"], 'gateway-id' => $data['id']);
} else {
return array('status' => 'ERROR', 'message' => rtrim($request_data['message'], '.').'.');
}
return $result;
}
function front_init() {
global $wpdb, $lepopup;
$form_object = null;
if (array_key_exists('lepopup-ipn', $_REQUEST) && $_REQUEST['lepopup-ipn'] == 'instamojo') {
if (!array_key_exists('record-id', $_REQUEST) || !array_key_exists('mac', $_POST)) {
http_response_code(200);
exit;
}
$post_data = $_POST;
$mac_provided = $post_data['mac'];
unset($post_data['mac']);
$ver = explode('.', phpversion());
$major = (int)$ver[0];
$minor = (int)$ver[1];
if($major >= 5 and $minor >= 4){
ksort($post_data, SORT_STRING | SORT_FLAG_CASE);
} else {
uksort($post_data, 'strcasecmp');
}
$item_id = intval($_REQUEST['record-id']);
$payment_status = $post_data['status'];
$transaction_type = 'Payment';
$txn_id = $post_data['payment_id'];
$payer_id = !empty($post_data['buyer']) ? $post_data['buyer'] : (!empty($post_data['buyer_phone']) ? $post_data['buyer_phone'] : $post_data['buyer_name']);
$payer_name = $post_data['buyer_name'];
$mc_currency = strtoupper($post_data['currency']);
$gross_total = number_format($post_data['amount'], 2, '.', '');
if ($payment_status == "Credit") {
$payment_status = "Completed";
$record_details = $wpdb->get_row("SELECT t1.*, t2.name AS form_name, t2.options AS form_options, t2.elements AS form_elements FROM ".$wpdb->prefix."lepopup_records t1 LEFT JOIN ".$wpdb->prefix."lepopup_forms t2 ON t2.id = t1.form_id WHERE t1.deleted = '0' AND t1.id = '".esc_sql(intval($item_id))."'", ARRAY_A);
if (!$record_details || !is_array($record_details) || !array_key_exists('gateway_id', $record_details)) $payment_status = "Error: no record";
else {
if (!class_exists("lepopup_form")) include_once(dirname(__FILE__).'/core-form.php');
$form_object = new lepopup_form(intval($record_details['form_id']));
if (empty($form_object->id)) $payment_status = "Error: no form";
else {
$payment_gateway = $form_object->get_payment_gateway($record_details['gateway_id']);
if (empty($payment_gateway) || !is_array($payment_gateway)) $payment_status = "Error: no payment gateway";
else {
$mac_calculated = hash_hmac("sha1", implode("|", $post_data), $payment_gateway['data']['salt']);
$post_data['mac'] = $mac_provided;
if ($mac_calculated != $mac_provided) $payment_status = "Error: invalid signature";
else if (floatval($gross_total) < floatval($record_details["amount"]) || $mc_currency != $record_details["currency"]) $payment_status = "Error: invalid amount";
}
}
}
}
$sql = "INSERT INTO ".$wpdb->prefix."lepopup_transactions (record_id, provider, payer_name, payer_email, gross, currency, payment_status, transaction_type, txn_id, details, created, deleted ) VALUES (
'".$item_id."',
'instamojo',
'".esc_sql($payer_name)."',
'".esc_sql($payer_id)."',
'".esc_sql(floatval($gross_total))."',
'".esc_sql($mc_currency)."',
'".esc_sql($payment_status)."',
'".esc_sql($transaction_type)."',
'".esc_sql($txn_id)."',
'".esc_sql(json_encode($post_data))."',
'".esc_sql(time())."',
'0'
)";
$wpdb->query($sql);
if ($payment_status == "Completed") {
$datestamp = date('Ymd');
$timestamp = date('h');
$stats_details = $wpdb->get_row("SELECT * FROM ".$wpdb->prefix."lepopup_stats WHERE form_id = '".esc_sql($form_object->id)."' AND datestamp = '".esc_sql($datestamp)."' AND timestamp = '".esc_sql($timestamp)."'", ARRAY_A);
if (!empty($stats_details)) {
$wpdb->query("UPDATE ".$wpdb->prefix."lepopup_stats SET payments = payments + 1 WHERE id = '".esc_sql($stats_details['id'])."'");
} else {
$wpdb->query("INSERT INTO ".$wpdb->prefix."lepopup_stats (form_id, impressions, submits, confirmed, payments, datestamp, timestamp, deleted) VALUES ('".esc_sql($form_object->id)."', '0', '0', '0', '1', '".esc_sql($datestamp)."', '".esc_sql($timestamp)."', '0')");
}
$wpdb->query("UPDATE ".$wpdb->prefix."lepopup_records SET status = '".esc_sql(LEPOPUP_RECORD_STATUS_PAID)."' WHERE id = '".esc_sql($item_id)."'");
$form_object->form_data = json_decode($record_details['fields'], true);
$form_object->form_info = json_decode($record_details['info'], true);
$form_object->record_id = $record_details['id'];
$form_object->do_notifications("payment-success", array('payment-amount' => $gross_total, 'payment-currency' => $mc_currency, 'payment-status' => $payment_status));
$form_object->do_integrations("payment-success");
do_action('lepopup_successfully_paid', $form_object);
} else {
$wpdb->query("UPDATE ".$wpdb->prefix."lepopup_records SET status = '".esc_sql(LEPOPUP_RECORD_STATUS_UNPAID)."' WHERE id = '".esc_sql($item_id)."'");
if (!empty($form_object) && !empty($form_object->id)) {
$form_object->form_data = json_decode($record_details['fields'], true);
$form_object->form_info = json_decode($record_details['info'], true);
$form_object->record_id = $record_details['id'];
$form_object->do_notifications("payment-fail", array('payment-amount' => $gross_total, 'payment-currency' => $mc_currency, 'payment-status' => $payment_status));
$form_object->do_integrations("payment-fail");
do_action('lepopup_unsuccessfully_paid', $form_object);
}
}
http_response_code(200);
exit;
}
}
function admin_details($_html, $_transaction_details, $_pdf = false) {
global $wpdb, $lepopup;
$html = $_html;
$details = json_decode($_transaction_details['details'], true);
$html = '
<table class="lepopup-record-details-table">';
$html .= $this->_admin_details($details, 0, $_pdf);
$html .= '
</table>';
return $html;
}
function _admin_details($_details, $_level = 0, $_pdf = false) {
$html = '';
foreach($_details as $key => $value) {
if (is_array($value)) $html .= '<tr><td class="lepopup-record-details-table-name" style="'.($_pdf ? 'width:33%;' : '').'padding-left:'.number_format(0.4+$_level*1, 2, '.', '').'em;">'.esc_html($key).'</td><td class="lepopup-record-details-table-value"'.($_pdf ? ' style="width:67%;"' : '').'>...</td></tr>'.$this->_admin_details($value, $_level+1, $_pdf);
else $html .= '
<tr><td class="lepopup-record-details-table-name" style="'.($_pdf ? 'width:33%;' : '').'padding-left:'.number_format(0.4+$_level*1, 2, '.', '').'em;">'.esc_html($key).'</td><td class="lepopup-record-details-table-value"'.($_pdf ? ' style="width:67%;"' : '').'>'.esc_html(urldecode($value)).'</td></tr>';
}
return $html;
}
function connect($_api_key, $_auth_token, $_path, $_data = array(), $_method = '') {
$headers = array(
'X-Api-Key: '.$_api_key,
'X-Auth-Token: '.$_auth_token,
'Accept: application/json'
);
if (strpos($_api_key, 'test_') !== false) $url = 'https://test.instamojo.com/api/1.1/'.ltrim($_path, '/');
else $url = 'https://www.instamojo.com/api/1.1/'.ltrim($_path, '/');
try {
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
if (!empty($_data)) {
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($_data));
}
if (!empty($_method)) {
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $_method);
}
curl_setopt($curl, CURLOPT_TIMEOUT, 20);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_FORBID_REUSE, true);
curl_setopt($curl, CURLOPT_FRESH_CONNECT, true);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
$response = curl_exec($curl);
curl_close($curl);
$result = json_decode($response, true);
} catch (Exception $e) {
$result = false;
}
return $result;
}
}
$lepopup_instamojo = new lepopup_instamojo_class();
?>