| Server IP : 89.108.64.180 / Your IP : 216.73.217.92 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/kow4eg.ru/wp-content/plugins/halfdata-green-popups/modules/ |
Upload File : |
<?php
/* Mumara integration for Green Forms */
if (!defined('UAP_CORE') && !defined('ABSPATH')) exit;
class lepopup_mumara_class {
var $default_parameters = array(
"api-url" => "",
"api-key" => "",
"list" => "",
"list-id" => "",
"fields" => array('email' => '')
);
function __construct() {
if (is_admin()) {
add_filter('lepopup_providers', array(&$this, 'providers'), 10, 1);
add_action('wp_ajax_lepopup-mumara-settings-html', array(&$this, "admin_settings_html"));
add_action('wp_ajax_lepopup-mumara-list', array(&$this, "admin_lists"));
add_action('wp_ajax_lepopup-mumara-fields', array(&$this, "admin_fields_html"));
}
add_filter('lepopup_integrations_do_mumara', array(&$this, 'front_submit'), 10, 2);
}
function providers($_providers) {
if (!array_key_exists("mumara", $_providers)) $_providers["mumara"] = esc_html__('Mumara', '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__('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__('Enter your Mumara URL.', 'lepopup').'</div>
</div>
<div class="lepopup-properties-content">
<input type="text" name="api-url" value="'.esc_html($data['api-url']).'" />
</div>
</div>
<div class="lepopup-properties-item">
<div class="lepopup-properties-label">
<label>'.esc_html__('API 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__('Enter your Mumara API Token.', '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">'.esc_html__('Enter your Mumara API Token. You can generate it in Mumara account (Settings >> API Key).', 'lepopup').'</label>
</div>
</div>
<div class="lepopup-properties-item">
<div class="lepopup-properties-label">
<label>'.esc_html__('List ID', '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__('Select desired List ID.', 'lepopup').'</div>
</div>
<div class="lepopup-properties-content">
<div class="lepopup-properties-group lepopup-integrations-ajax-options">
<input type="text" name="list" value="'.esc_html($data['list']).'" data-deps="api-url,api-key" readonly="readonly" />
<input type="hidden" name="list-id" value="'.esc_html($data['list-id']).'" />
</div>
</div>
</div>
<div class="lepopup-properties-item">
<div class="lepopup-properties-label">
<label>'.esc_html__('Fields', '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__('Map form fields to Mumara fields.', 'lepopup').'</div>
</div>
<div class="lepopup-properties-content">
<div class="lepopup-properties-pure lepopup-integrations-static-inline">
<table>
<tr>
<th>'.esc_html__('Email', 'lepopup').'</td>
<td>
<div class="lepopup-input-shortcode-selector">
<input type="text" name="fields[email]" value="'.esc_html(array_key_exists('email', $data['fields']) ? $data['fields']['email'] : '').'" class="widefat" />
<div class="lepopup-shortcode-selector" onmouseover="lepopup_shortcode_selector_set(this)";><span><i class="fas fa-code"></i></span></div>
</div>
<label class="lepopup-integrations-description">'.esc_html__('Email Address', 'lepopup').'</label>
</td>
</tr>
</table>
</div>
<div class="lepopup-properties-pure lepopup-integrations-ajax-inline">';
if (!empty($data['api-url']) && !empty($data['api-key'])) {
$fields_data = $this->get_fields_html($data['api-url'], $data['api-key'], $data['fields']);
if ($fields_data['status'] == 'OK') $html .= $fields_data['html'];
}
$html .= '
</div>
<a class="lepopup-button lepopup-button-small" onclick="return lepopup_integrations_ajax_inline_html(this);" data-inline="fields" data-deps="api-url,api-key"><i class="fas fa-download"></i><label>'.esc_html__('Load Fields', 'lepopup').'</label></a>
</div>
</div>';
$return_object = array();
$return_object['status'] = 'OK';
$return_object['html'] = $html;
echo json_encode($return_object);
}
exit;
}
function admin_lists() {
global $wpdb, $lepopup;
$lists = array();
if (current_user_can('manage_options')) {
if (array_key_exists('deps', $_REQUEST)) {
$deps = json_decode(base64_decode(trim(stripslashes($_REQUEST['deps']))), true);
if (!is_array($deps)) $deps = null;
} else $deps = null;
if (!is_array($deps) || !array_key_exists('api-url', $deps) || empty($deps['api-url']) || !array_key_exists('api-key', $deps) || empty($deps['api-key'])) {
$return_object = array('status' => 'ERROR', 'message' => esc_html__('Invalid API Credentials.', 'lepopup'));
echo json_encode($return_object);
exit;
}
$result = $this->connect($deps['api-url'], $deps['api-key'], 'getLists');
if(!$result || !is_array($result) || !array_key_exists('status', $result) || $result['status'] != 'success' || !array_key_exists('response', $result)) {
$return_object = array('status' => 'ERROR', 'message' => esc_html__('Invalid API Credentials.', 'lepopup'));
echo json_encode($return_object);
exit;
}
if (sizeof($result['response']) == 0) {
$return_object = array('status' => 'ERROR', 'message' => esc_html__('No lists found.', 'lepopup'));
echo json_encode($return_object);
exit;
}
foreach ($result['response'] as $list) {
if (is_array($list)) {
if (array_key_exists('id', $list) && array_key_exists('name', $list)) {
$lists[$list['id']] = $list['name'];
}
}
}
$return_object = array();
$return_object['status'] = 'OK';
$return_object['items'] = $lists;
echo json_encode($return_object);
}
exit;
}
function admin_fields_html() {
global $wpdb;
if (current_user_can('manage_options')) {
if (array_key_exists('deps', $_REQUEST)) {
$deps = json_decode(base64_decode(trim(stripslashes($_REQUEST['deps']))), true);
if (!is_array($deps)) $deps = null;
} else $deps = null;
if (!is_array($deps) || !array_key_exists('api-key', $deps) || empty($deps['api-key']) || !array_key_exists('api-url', $deps) || empty($deps['api-url'])) {
$return_object = array('status' => 'ERROR', 'message' => esc_html__('Invalid API Credentials.', 'lepopup'));
echo json_encode($return_object);
exit;
}
$return_object = $this->get_fields_html($deps['api-url'], $deps['api-key'], $this->default_parameters['fields']);
echo json_encode($return_object);
}
exit;
}
function get_fields_html($_api_url, $_api_key, $_fields) {
global $wpdb, $lepopup;
$result = $this->connect($_api_url, $_api_key, 'getCustomFields');
$fields_html = '';
if(!$result || !is_array($result) || !array_key_exists('status', $result) || $result['status'] != 'success' || !array_key_exists('response', $result)) {
return array('status' => 'ERROR', 'message' => esc_html__('Inavlid API Key.', 'lepopup'));
}
if (sizeof($result['response']) == 0) {
return array('status' => 'ERROR', 'message' => esc_html__('No fields found.', 'lepopup'));
}
$fields_html = '
<table>';
foreach ($result['response'] as $field) {
if (is_array($field)) {
if (array_key_exists('tag', $field) && array_key_exists('name', $field)) {
$fields_html .= '
<tr>
<th>'.esc_html($field['name']).'</td>
<td>
<div class="lepopup-input-shortcode-selector">
<input type="text" name="fields['.esc_html($field['tag']).']" value="'.esc_html(array_key_exists($field['tag'], $_fields) ? $_fields[$field['tag']] : '').'" class="widefat" />
<div class="lepopup-shortcode-selector" onmouseover="lepopup_shortcode_selector_set(this)";><span><i class="fas fa-code"></i></span></div>
</div>
<label class="lepopup-integrations-description">'.esc_html($field['name'].' ('.$field['tag'].')').'</label>
</td>
</tr>';
}
}
}
$fields_html .= '
</table>';
return array('status' => 'OK', 'html' => $fields_html);
}
function front_submit($_result, $_data) {
global $wpdb, $lepopup;
$data = array_merge($this->default_parameters, $_data);
if (empty($data['api-key']) || empty($data['api-url'])) return $_result;
if (empty($data['fields']) || !is_array($data['fields'])) return $_result;
if (empty($data['fields']['email']) || !preg_match("/^[_a-z0-9-+]+(\.[_a-z0-9-+]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,19})$/i", $data['fields']['email'])) return $_result;
$post_data = array(
'email' => $data['fields']['email'],
'list_id' => $data['list-id'],
'confirmation_status' => 1
);
foreach ($popup_options['mumara_fields'] as $key => $value) {
if (!empty($value) && $key != 'email') {
$post_data[$key] = $value;
}
}
$result = $this->connect($data['api-url'], $data['api-key'], 'add-subscriber', 'POST', $post_data);
return $_result;
}
function connect($_api_url, $_api_token, $_path, $_method = 'GET', $_data = null) {
try {
$url = rtrim($_api_url, '/').'/api/'.trim($_path, '/');
if ($_method == 'GET') {
$url .= (strpos($url, '?') === false ? '?' : '&').'api_token='.$_api_token;
} else {
$_data['api_token'] = $_api_token;
}
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_USERAGENT, 'MumaraApi Client version 1.0');
curl_setopt($ch, CURLOPT_AUTOREFERER , true);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
if (is_array($_data) && !empty($_data)) {
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, strtoupper($_method));
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $_data);
}
$response = curl_exec($ch);
curl_close($ch);
$result = json_decode($response, true);
} catch (Exception $e) {
$result = false;
}
return $result;
}
}
$lepopup_mumara = new lepopup_mumara_class();
?>