���� 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 /* Twilio integration for Green Forms */ if (!defined('UAP_CORE') && !defined('ABSPATH')) exit; class leform_twilio_class { var $default_parameters = array( "account-sid" => "", "auth-token" => "", "to" => "", "from" => "", "body" => "" ); function __construct() { if (is_admin()) { add_filter('leform_providers', array(&$this, 'providers'), 10, 1); add_action('wp_ajax_leform-twilio-settings-html', array(&$this, "admin_settings_html")); } add_filter('leform_integrations_do_twilio', array(&$this, 'front_submit'), 10, 2); } function providers($_providers) { if (!array_key_exists("twilio", $_providers)) $_providers["twilio"] = esc_html__('Twilio', '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__('Account SID', '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 Twilio Account SID.', 'leform').'</div> </div> <div class="leform-properties-content"> <input type="text" name="account-sid" value="'.esc_html($data['account-sid']).'" /> <label class="leform-integrations-description">'.sprintf(esc_html__('You can find your Account SID in the %sTwilio Console%s.', 'leform'), '<a href="https://www.twilio.com/console" target="_blank">', '</a>').'</label> </div> </div> <div class="leform-properties-item"> <div class="leform-properties-label"> <label>'.esc_html__('Auth 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 Twilio Auth Token.', 'leform').'</div> </div> <div class="leform-properties-content"> <input type="text" name="auth-token" value="'.esc_html($data['auth-token']).'" /> <label class="leform-integrations-description">'.sprintf(esc_html__('You can find your Auth Token in the %sTwilio Console%s.', 'leform'), '<a href="https://www.twilio.com/console" target="_blank">', '</a>').'</label> </div> </div> <div class="leform-properties-item"> <div class="leform-properties-label"> <label>'.esc_html__('To', '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__('This parameter determines the destination phone number for your SMS message. Format this number with a "+" and a country code, e.g., +16175551212.', '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__('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__('From specifies the Twilio phone number or short code that sends this message. This must be a Twilio phone number that you own, formatted with a "+" and country code, e.g. +16175551212. To get your first Twilio phone number, head on over to the console and find a number you like with SMS capabilities. If you are interested in using a short code, you can apply for one via the console as well. Note that you cannot spoof messages from your personal cell phone number without porting your number to Twilio first.', '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__('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__('This is the full text of the message you want to send, limited to 1600 characters. If the body of your message is more than 160 GSM-7 characters (or 70 UCS-2 characters), Twilio will send the message as a segmented SMS.', 'leform').'</div> </div> <div class="leform-properties-content"> <div class="leform-input-shortcode-selector"> <textarea name="body">'.esc_html($data['body']).'</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['account-sid']) || empty($data['auth-token'])) return $_result; if (empty($data['to']) || empty($data['from']) || empty($data['body'])) return $_result; $post_data = array( 'Body' => $data['body'], 'From' => '+'.preg_replace('/[^0-9]/', '', $data['from']), 'To' => '+'.preg_replace('/[^0-9]/', '', $data['to']) ); try { $url = 'https://api.twilio.com/2010-04-01/Accounts/'.urlencode($data['account-sid']).'/Messages.json'; $curl = curl_init($url); curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC); curl_setopt($curl, CURLOPT_USERPWD, $data['account-sid'].':'.$data['auth-token']); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_POSTFIELDS, $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_twilio = new leform_twilio_class(); ?>