���� 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 /* BulkGate integration for Green Forms */ if (!defined('UAP_CORE') && !defined('ABSPATH')) exit; class leform_bulkgate_class { var $default_parameters = array( "application-id" => "", "application-token" => "", "sender-id" => "gSystem", "sender-value" => "", "phone" => "", "message" => "", "unicode" => "off", "mode" => "transactional", "duplicates-check" => "off" ); function __construct() { if (is_admin()) { add_filter('leform_providers', array(&$this, 'providers'), 10, 1); add_action('wp_ajax_leform-bulkgate-settings-html', array(&$this, "admin_settings_html")); } add_filter('leform_integrations_do_bulkgate', array(&$this, 'front_submit'), 10, 2); } function providers($_providers) { if (!array_key_exists("bulkgate", $_providers)) $_providers["bulkgate"] = esc_html__('BulkGate', '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__('Application ID', '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 BulkGate Application ID.', 'leform').'</div> </div> <div class="leform-properties-content"> <input type="text" name="application-id" value="'.esc_html($data['application-id']).'" /> <label class="leform-integrations-description">'.sprintf(esc_html__('Create Simple API module in %sBulkGate Dashboard%s and take Application ID there.', 'leform'), '<a href="https://portal.bulkgate.com/application/" target="_blank">', '</a>').'</label> </div> </div> <div class="leform-properties-item"> <div class="leform-properties-label"> <label>'.esc_html__('Application 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 BulkGate Application Token.', 'leform').'</div> </div> <div class="leform-properties-content"> <input type="text" name="application-token" value="'.esc_html($data['application-token']).'" /> <label class="leform-integrations-description">'.sprintf(esc_html__('Create Simple API module in %sBulkGate Dashboard%s and take Application Token there.', 'leform'), '<a href="https://portal.bulkgate.com/application/" target="_blank">', '</a>').'</label> </div> </div> <div class="leform-properties-item"> <div class="leform-properties-label"> <label>'.esc_html__('SMS type', '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__('Select the type of SMS: transactional or promotional.', 'leform').'</div> </div> <div class="leform-properties-content"> <select name="mode"> <option value="transactional"'.($data['mode'] == 'transactional' ? ' selected="selected"' : '').'>'.esc_html__('Transactional', 'leform').'</option> <option value="promotional"'.($data['mode'] == 'promotional' ? ' selected="selected"' : '').'>'.esc_html__('Promotional', 'leform').'</option> </select> <label class="leform-integrations-description">'.sprintf(esc_html__('Find the difference between Transactional and Promotional SMS %shere%s.', 'leform'), '<a href="https://help.bulkgate.com/docs/en/difference-promotional-transactional-sms.html" target="_blank">', '</a>').'</label> </div> </div> <div class="leform-properties-item"> <div class="leform-properties-label"> <label>'.esc_html__('Sender ID', '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__('Sender ID', 'leform').'</div> </div> <div class="leform-properties-content"> <div class="leform-input-shortcode-selector"> <select name="sender-id" onchange="if(jQuery(this).val() == \'gSystem\'){jQuery(this).closest(\'.leform-integrations-content\').find(\'.leform-properties-sender-value\').hide();}else{jQuery(this).closest(\'.leform-integrations-content\').find(\'.leform-properties-sender-value\').show();}"> <option value="gSystem"'.($data['sender-id'] == "gSystem" ? ' selected="selected"' : '').'>'.esc_html__('System', 'leform').'</option> <option value="gOwn"'.($data['sender-id'] == "gOwn" ? ' selected="selected"' : '').'>'.esc_html__('Own number', 'leform').'</option> </select> </div> </div> </div> <div class="leform-properties-item leform-properties-sender-value"'.($data['sender-id'] == "gSystem" ? ' style="display:none;"' : '').'> <div class="leform-properties-label"> <label>'.esc_html__('Sender 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__('Your phone number in an international format (phone number must be verified).', 'leform').'</div> </div> <div class="leform-properties-content"> <div class="leform-input-shortcode-selector"> <input type="text" name="sender-value" value="'.esc_html($data['sender-value']).'" /> <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).', 'leform').'</div> </div> <div class="leform-properties-content"> <div class="leform-input-shortcode-selector"> <input type="text" name="phone" value="'.esc_html($data['phone']).'" /> <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 (max. 612 characters, or 268 characters if Unicode is used).', '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> <div class="leform-properties-item"> <div class="leform-properties-label"> <label>'.esc_html__('Check duplicates', '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__('Prevent sending duplicate messages to the same phone number. Messages with the same text sent to the same number will be removed if there is a time interval shorter than 5 mins.', 'leform').'</div> </div> <div class="leform-properties-content"> <input class="leform-checkbox-toggle" type="checkbox" value="on" id="duplicates-check-'.esc_html($checkbox_id).'" name="duplicates-check"'.($data['duplicates-check'] == 'on' ? ' checked="checked"' : '').' /><label for="duplicates-check-'.esc_html($checkbox_id).'"></label> </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['application-id']) || empty($data['application-token'])) return $_result; if (empty($data['phone']) || empty($data['message'])) return $_result; $headers = array( 'Content-Type: application/json;charset=UTF-8', 'Accept: application/json' ); $post_data = array( 'application_id' => $data['application-id'], 'application_token' => $data['application-token'], 'number' => $data['phone'], 'text' => $data['message'], 'unicode' => $data['unicode'] == 'on' ? true : false, 'duplicates_check' => $data['duplicates-check'] == 'on' ? true : false ); if ($data['sender-id'] == 'gOwn' && !empty($data['sender-value'])) { $post_data['sender_id'] = 'gOwn'; $post_data['sender_id_value'] = $data['sender-value']; } try { $url = 'https://portal.bulkgate.com/api/1.0/simple/'.($data['mode'] == 'transactional' ? 'transactional' : 'promotional'); $curl = curl_init($url); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); 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_bulkgate = new leform_bulkgate_class(); ?>