���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/form/content/plugins/halfdata-green-forms/modules/ |
<?php /* GatewayAPI integration for Green Forms */ if (!defined('UAP_CORE') && !defined('ABSPATH')) exit; class leform_gatewayapi_class { var $default_parameters = array( "api-token" => "", "from" => "Green", "to" => "", "message" => "", "unicode" => "off" ); function __construct() { if (is_admin()) { add_filter('leform_providers', array(&$this, 'providers'), 10, 1); add_action('wp_ajax_leform-gatewayapi-settings-html', array(&$this, "admin_settings_html")); } add_filter('leform_integrations_do_gatewayapi', array(&$this, 'front_submit'), 10, 2); } function providers($_providers) { if (!array_key_exists("gatewayapi", $_providers)) $_providers["gatewayapi"] = esc_html__('GatewayAPI', 'leform'); return $_providers; } function admin_settings_html() { global $wpdb, $leform; 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 = $leform->random_string(); $html = ' <div class="leform-properties-item"> <div class="leform-properties-label"> <label>'.esc_html__('API Token', 'leform').'</label> </div> <div class="leform-properties-tooltip"> <i class="fas fa-question-circle leform-tooltip-anchor"></i> <div class="leform-tooltip-content">'.esc_html__('Enter your GatewayAPI API Token.', 'leform').'</div> </div> <div class="leform-properties-content"> <input type="text" name="api-token" value="'.esc_html($data['api-token']).'" /> <label class="leform-integrations-description">'.sprintf(esc_html__('Find API Token in %sGatewayAPI API Settings%s page.', 'leform'), '<a href="https://gatewayapi.com/app/settings/api-oauth/" target="_blank">', '</a>').'</label> </div> </div> <div class="leform-properties-item"> <div class="leform-properties-label"> <label>'.esc_html__('From', 'leform').'</label> </div> <div class="leform-properties-tooltip"> <i class="fas fa-question-circle leform-tooltip-anchor"></i> <div class="leform-tooltip-content">'.esc_html__('The name or number the message should be sent from. Alphanumeric senderID is not supported in all countries.', 'leform').'</div> </div> <div class="leform-properties-content"> <div class="leform-input-shortcode-selector"> <input type="text" name="from" value="'.esc_html($data['from']).'" /> <div class="leform-shortcode-selector" onmouseover="leform_shortcode_selector_set(this)";><span><i class="fas fa-code"></i></span></div> </div> </div> </div> <div class="leform-properties-item"> <div class="leform-properties-label"> <label>'.esc_html__('Phone number', 'leform').'</label> </div> <div class="leform-properties-tooltip"> <i class="fas fa-question-circle leform-tooltip-anchor"></i> <div class="leform-tooltip-content">'.esc_html__('The phone number in an international format (including country and area code) that the message should be sent to.', 'leform').'</div> </div> <div class="leform-properties-content"> <div class="leform-input-shortcode-selector"> <input type="text" name="to" value="'.esc_html($data['to']).'" /> <div class="leform-shortcode-selector" onmouseover="leform_shortcode_selector_set(this)";><span><i class="fas fa-code"></i></span></div> </div> </div> </div> <div class="leform-properties-item"> <div class="leform-properties-label"> <label>'.esc_html__('Unicode', 'leform').'</label> </div> <div class="leform-properties-tooltip"> <i class="fas fa-question-circle leform-tooltip-anchor"></i> <div class="leform-tooltip-content">'.esc_html__('If enabled, SMS is sent in unicode mode.', 'leform').'</div> </div> <div class="leform-properties-content"> <input class="leform-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="leform-properties-item"> <div class="leform-properties-label"> <label>'.esc_html__('Message', 'leform').'</label> </div> <div class="leform-properties-tooltip"> <i class="fas fa-question-circle leform-tooltip-anchor"></i> <div class="leform-tooltip-content">'.esc_html__('Text of SMS message.', 'leform').'</div> </div> <div class="leform-properties-content"> <div class="leform-input-shortcode-selector"> <textarea name="message">'.esc_html($data['message']).'</textarea> <div class="leform-shortcode-selector" onmouseover="leform_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, $leform; $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; } } $leform_gatewayapi = new leform_gatewayapi_class(); ?>