| 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
/* GatewayAPI integration for Green Forms */
if (!defined('UAP_CORE') && !defined('ABSPATH')) exit;
class lepopup_gatewayapi_class {
var $default_parameters = array(
"api-token" => "",
"from" => "Green",
"to" => "",
"message" => "",
"unicode" => "off"
);
function __construct() {
if (is_admin()) {
add_filter('lepopup_providers', array(&$this, 'providers'), 10, 1);
add_action('wp_ajax_lepopup-gatewayapi-settings-html', array(&$this, "admin_settings_html"));
}
add_filter('lepopup_integrations_do_gatewayapi', array(&$this, 'front_submit'), 10, 2);
}
function providers($_providers) {
if (!array_key_exists("gatewayapi", $_providers)) $_providers["gatewayapi"] = esc_html__('GatewayAPI', '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 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 GatewayAPI API Token.', 'lepopup').'</div>
</div>
<div class="lepopup-properties-content">
<input type="text" name="api-token" value="'.esc_html($data['api-token']).'" />
<label class="lepopup-integrations-description">'.sprintf(esc_html__('Find API Token in %sGatewayAPI API Settings%s page.', 'lepopup'), '<a href="https://gatewayapi.com/app/settings/api-oauth/" target="_blank">', '</a>').'</label>
</div>
</div>
<div class="lepopup-properties-item">
<div class="lepopup-properties-label">
<label>'.esc_html__('From', '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__('The name or number the message should be sent from. Alphanumeric senderID is not supported in all countries.', 'lepopup').'</div>
</div>
<div class="lepopup-properties-content">
<div class="lepopup-input-shortcode-selector">
<input type="text" name="from" value="'.esc_html($data['from']).'" />
<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__('Phone number', '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__('The phone number in an international format (including country and area code) that the message should be sent to.', 'lepopup').'</div>
</div>
<div class="lepopup-properties-content">
<div class="lepopup-input-shortcode-selector">
<input type="text" name="to" value="'.esc_html($data['to']).'" />
<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__('Unicode', '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__('If enabled, SMS is sent in unicode mode.', 'lepopup').'</div>
</div>
<div class="lepopup-properties-content">
<input class="lepopup-checkbox-toggle" type="checkbox" value="on" id="unicode-'.esc_html($checkbox_id).'" name="unicode"'.($data['unicode'] == 'on' ? ' checked="checked"' : '').' /><label for="unicode-'.esc_html($checkbox_id).'"></label>
</div>
</div>
<div class="lepopup-properties-item">
<div class="lepopup-properties-label">
<label>'.esc_html__('Message', '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__('Text of SMS message.', 'lepopup').'</div>
</div>
<div class="lepopup-properties-content">
<div class="lepopup-input-shortcode-selector">
<textarea name="message">'.esc_html($data['message']).'</textarea>
<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-token'])) return $_result;
if (empty($data['to']) || empty($data['from']) || empty($data['message'])) return $_result;
$headers = array(
'Content-Type: application/json;charset=UTF-8',
'Accept: application/json'
);
$post_data = array(
'sender' => $data['from'],
'recipients' => array(array('msisdn' => preg_replace('/[^0-9]/', '', $data['to']))),
'message' => $data['message'],
'encoding' => $data['unicode'] == 'on' ? 'UCS2' : 'UTF8'
);
try {
$url = 'https://gatewayapi.com/rest/mtsms';
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($curl, CURLOPT_USERPWD, $data['api-token'].':');
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($post_data));
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);
} catch (Exception $e) {
}
return $_result;
}
}
$lepopup_gatewayapi = new lepopup_gatewayapi_class();
?>