芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/www/wp-content/plugins/fluentformpro/src/Integrations/Drip/Bootstrap.php
logo = fluentFormMix('img/integrations/drip.png'); $this->description = 'This module lets you create Drip subscribers from WordPress, so you can build your email list.'; $this->registerAdminHooks(); // add_filter('fluentform/notifying_async_drip', '__return_false'); } public function getGlobalFields($fields) { return [ 'logo' => $this->logo, 'menu_title' => __('Drip API Settings', 'fluentformpro'), 'menu_description' => __('Drip is an ECRM and Ecommerce CRM designed for building personal and profitable relationships with your customers at scale. Use Fluent Forms to collect customer information and automatically add it to your Drip list.', 'fluentformpro'), 'valid_message' => __('Your Drip configuration is valid', 'fluentformpro'), 'invalid_message' => __('Your Drip configuration is invalid', 'fluentformpro'), 'save_button_text' => __('Save Settings', 'fluentformpro'), 'fields' => [ 'apiKey' => [ 'type' => 'password', 'placeholder' => __('API Token', 'fluentformpro'), 'label_tips' => __("Enter your Drip API Key, if you do not have
Please login to your Drip account settings -> User Info and find the api key", 'fluentformpro'), 'label' => __('Drip API Token', 'fluentformpro'), ], 'accountId' => [ 'type' => 'number', 'placeholder' => __('Account ID', 'fluentformpro'), 'required' => true, 'label_tips' => __("Please Provide your Drip Account ID. Go to your Drip account settings -> general info and find the Account ID", 'fluentformpro'), 'label' => __('Drip Account ID', 'fluentformpro'), ], ], 'hide_on_valid' => true, 'discard_settings' => [ 'section_description' => __('Your Drip API integration is up and running', 'fluentformpro'), 'button_text' => __('Disconnect Drip', 'fluentformpro'), 'data' => [ 'apiKey' => '' ], 'show_verify' => true ] ]; } public function getGlobalSettings($settings) { $globalSettings = get_option($this->optionKey); if (!$globalSettings) { $globalSettings = []; } $defaults = [ 'apiKey' => '', 'accountId' => '', 'status' => '' ]; return wp_parse_args($globalSettings, $defaults); } public function saveGlobalSettings($settings) { if (!$settings['apiKey']) { $integrationSettings = [ 'apiKey' => '', 'accountId' => '', 'status' => false ]; // Update the reCaptcha details with siteKey & secretKey. update_option($this->optionKey, $integrationSettings, 'no'); wp_send_json_success([ 'message' => __('Your settings has been updated and discarded', 'fluentformpro'), 'status' => false ], 200); } try { $settings['status'] = false; update_option($this->optionKey, $settings, 'no'); $api = new DripApi($settings['apiKey'], $settings['accountId']); $auth = $api->auth_test(); if (!empty($auth['accounts'])) { $settings['status'] = true; update_option($this->optionKey, $settings, 'no'); wp_send_json_success([ 'status' => true, 'message' => __('Your settings has been updated!', 'fluentformpro') ], 200); } $message = 'Invalid Credentials'; if (is_wp_error($auth)) { $message = $auth->get_error_message(); } else if (isset($auth['errors'][0]['message'])) { $message = $auth['errors'][0]['message']; } throw new \Exception($message, 423); } catch (\Exception $e) { wp_send_json_error([ 'status' => false, 'message' => $e->getMessage() ], $e->getCode()); } } public function pushIntegration($integrations, $formId) { $integrations[$this->integrationKey] = [ 'title' => $this->title . ' Integration', 'logo' => $this->logo, 'is_active' => $this->isConfigured(), 'configure_title' => __('Configuration required!', 'fluentformpro'), 'global_configure_url' => admin_url('admin.php?page=fluent_forms_settings#general-drip-settings'), 'configure_message' => __('Drip is not configured yet! Please configure your Drip API first', 'fluentformpro'), 'configure_button_text' => __('Set Drip API', 'fluentformpro') ]; return $integrations; } public function getIntegrationDefaults($settings, $formId) { return [ 'name' => '', 'fieldEmailAddress' => '', 'custom_field_mappings' => (object)[], 'default_fields' => (object)[], 'other_fields_mapping' => [ [ 'item_value' => '', 'label' => '' ] ], 'custom_fields' => [ [ 'item_value' => '', 'label' => '' ] ], 'ip_address' => '{ip}', 'eu_consent' => '', 'tags' => '', 'tag_routers' => [], 'tag_ids_selection_type' => 'simple', 'remove_tags' => '', 'conditionals' => [ 'conditions' => [], 'status' => false, 'type' => 'all' ], 'enabled' => true ]; } public function getSettingsFields($settings, $formId) { return [ 'fields' => [ [ 'key' => 'name', 'label' => __('Name', 'fluentformpro'), 'required' => true, 'placeholder' => __('Your Feed Name', 'fluentformpro'), 'component' => 'text' ], [ 'key' => 'custom_field_mappings', 'require_list' => false, 'label' => __('Map Fields', 'fluentformpro'), 'tips' => __('Select which Fluent Forms fields pair with their
respective Drip fields.', 'fluentformpro'), 'component' => 'map_fields', 'field_label_remote' => __('Drip Field', 'fluentformpro'), 'field_label_local' => __('Form Field', 'fluentformpro'), 'primary_fileds' => [ [ 'key' => 'fieldEmailAddress', 'label' => __('Email Address', 'fluentformpro'), 'required' => true, 'input_options' => 'emails' ] ], 'default_fields' => [ array( 'name' => 'first_name', 'label' => esc_html__('First Name', 'fluentformpro'), 'required' => false ), array( 'name' => 'last_name', 'label' => esc_html__('Last Name', 'fluentformpro'), 'required' => false ) ] ], [ 'key' => 'other_fields_mapping', 'require_list' => false, 'label' => __('Other Fields', 'fluentformpro'), 'tips' => __('Select which Fluent Forms fields pair with their
respective Drip fields.', 'fluentformpro'), 'component' => 'dropdown_many_fields', 'field_label_remote' => __('Drip Field', 'fluentformpro'), 'field_label_local' => __('Form Field', 'fluentformpro'), 'options' => [ 'address1' => __('Address Line 1', 'fluentformpro'), 'address2' => __('Address Line 2', 'fluentformpro'), 'city' => __('City', 'fluentformpro'), 'state' => __('State', 'fluentformpro'), 'zip' => __('ZIP code', 'fluentformpro'), 'country' => __('Country', 'fluentformpro'), 'phone' => __('Phone', 'fluentformpro') ] ], [ 'key' => 'custom_fields', 'require_list' => false, 'label' => __('Custom Fields', 'fluentformpro'), 'tips' => __('custom field data', 'fluentformpro'), 'component' => 'dropdown_label_repeater', ], [ 'key' => 'tags', 'require_list' => false, 'label' => __('Contact Tags', 'fluentformpro'), 'tips' => __('Associate tags to your Drip contacts with a comma separated list (e.g. new lead, FluentForms, web source). Commas within a merge tag value will be created as a single tag.', 'fluentformpro'), 'component' => 'selection_routing', 'simple_component' => 'value_text', 'routing_input_type' => 'text', 'routing_key' => 'tag_ids_selection_type', 'settings_key' => 'tag_routers', 'labels' => [ 'choice_label' => __('Enable Dynamic Tag Input', 'fluentformpro'), 'input_label' => '', 'input_placeholder' => __('Tag', 'fluentformpro') ], 'inline_tip' => __('Please provide each tag by comma separated value, You can use dynamic smart codes', 'fluentformpro') ], [ 'require_list' => false, 'key' => 'remove_tags', 'label' => __('Remove tags', 'fluentformpro'), 'placeholder' => __('Type Tags (comma separated)', 'fluentformpro'), 'tips' => __('Type tags as comma separated that need to be removed', 'fluentformpro'), 'component' => 'value_text' ], [ 'require_list' => false, 'key' => 'conditionals', 'label' => __('Conditional Logics', 'fluentformpro'), 'tips' => __('Allow Drip integration conditionally based on your submission values', 'fluentformpro'), 'component' => 'conditional_block' ], [ 'require_list' => false, 'key' => 'eu_consent', 'label' => __('EU Consent', 'fluentformpro'), 'tips' => __('specifying whether the subscriber granted for GDPR consent', 'fluentformpro'), 'component' => 'radio_choice', 'options' => [ '' => __('Default', 'fluentformpro'), 'granted' => __('Granted', 'fluentformpro'), ] ], [ 'require_list' => false, 'key' => 'enabled', 'label' => __('Status', 'fluentformpro'), 'component' => 'checkbox-single', 'checkbox_label' => __('Enable This feed', 'fluentformpro') ] ], 'button_require_list' => false, 'integration_title' => $this->title ]; } public function notify($feed, $formData, $entry, $form) { $feedData = $feed['processedValues']; if (!is_email($feedData['fieldEmailAddress'])) { $feedData['fieldEmailAddress'] = ArrayHelper::get($formData, $feedData['fieldEmailAddress']); } if (!is_email($feedData['fieldEmailAddress'])) { do_action('fluentform/integration_action_result', $feed, 'failed', __('Drip API called skipped because no valid email available', 'fluentformpro')); return; } $addData = [ 'email' => $feedData['fieldEmailAddress'] ]; $addData = array_merge($addData, ArrayHelper::get($feedData, 'default_fields')); foreach (ArrayHelper::get($feedData, 'other_fields_mapping') as $item) { $addData[$item['label']] = $item['item_value']; } if ($customFields = ArrayHelper::get($feedData, 'custom_fields')) { $customData = []; foreach ($customFields as $customField) { $customData[$customField['label']] = $customField['item_value']; } $customData = array_filter($customData); if ($customData) { $addData['custom_fields'] = $customData; } } $tags = $this->getSelectedTagIds($feedData, $formData, 'tags'); if(!is_array($tags)) { $tags = explode(',', $tags); } $tags = array_map('trim', $tags); $tags = array_filter($tags); if ($tags) { $addData['tags'] = $tags; } $removeTags = array_filter(explode(",", $feedData['remove_tags'])); if ($removeTags) { $addData['remove_tags'] = array_map('trim', $removeTags); } if (!empty($feedData['ip_address'])) { $addData['ip_address'] = $feedData['ip_address']; } if (!empty($feedData['eu_consent'])) { $addData['eu_consent'] = $feedData['eu_consent']; } $addData = array_filter($addData); $addData = apply_filters_deprecated( 'fluentform_integration_data_' . $this->integrationKey, [ $addData, $feed, $entry ], FLUENTFORM_FRAMEWORK_UPGRADE, 'fluentform/integration_data_' . $this->integrationKey, 'Use fluentform/integration_data_' . $this->integrationKey . ' instead of fluentform_integration_data_' . $this->integrationKey ); $addData = apply_filters('fluentform/integration_data_' . $this->integrationKey, $addData, $feed, $entry); // Now let's prepare the data and push to drip $api = $this->getApiClient(); $response = $api->addContact($addData); if (!is_wp_error($response)) { do_action('fluentform/integration_action_result', $feed, 'success', __('Drip feed has been successfully initialed and pushed data', 'fluentformpro')); } else { $error = is_wp_error($response) ? $response->get_error_messages() : __('API Error when submitting Data', 'fluentformpro'); do_action('fluentform/integration_action_result', $feed, 'failed', $error); } } protected function getApiClient() { $settings = $this->getGlobalSettings([]); return new DripApi( $settings['apiKey'], $settings['accountId'] ); } public function getMergeFields($list, $listId, $formId) { return []; } }