芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/www/wp-content/plugins/fluentformpro/src/Integrations/Sendinblue/Bootstrap.php
logo = fluentFormMix('img/integrations/sendinblue.png'); $this->description = 'Create contacts easily on your Brevo (formerly SendInBlue) email list with Fluent Forms Brevo integration.'; $this->registerAdminHooks(); // add_filter('fluentform/notifying_async_sendinblue', '__return_false'); } public function getGlobalFields($fields) { return [ 'logo' => $this->logo, 'menu_title' => __('Brevo API Settings', 'fluentformpro'), 'menu_description' => __('Brevo (formerly SendInBlue) is an integrated email marketing, marketing automation, and small business CRM. Save time while growing your business with sales automation. Use Fluent Forms to collect customer information and automatically add it to your (formerly Sendinblue) list. If you don\'t have an (formerly Sendinblue) account, you can
sign up for one here.
', 'fluentformpro'), 'valid_message' => __('Your Brevo configuration is valid', 'fluentformpro'), 'invalid_message' => __('Your Brevo configuration is invalid', 'fluentformpro'), 'save_button_text' => __('Save Settings', 'fluentformpro'), 'fields' => [ 'apiKey' => [ 'type' => 'password', 'placeholder' => __('V3 API Key', 'fluentformpro'), 'label_tips' => __("Enter your Brevo API Key, if you do not have
Please login to your Brevo account and find the api key", 'fluentformpro'), 'label' => __('Brevo V3 API Key', 'fluentformpro'), ] ], 'hide_on_valid' => true, 'discard_settings' => [ 'section_description' => __('Your Brevo API integration is up and running', 'fluentformpro'), 'button_text' => __('Disconnect Brevo', 'fluentformpro'), 'data' => [ 'apiKey' => '' ], 'show_verify' => true ] ]; } public function getGlobalSettings($settings) { $globalSettings = get_option($this->optionKey); if (!$globalSettings) { $globalSettings = []; } $defaults = [ 'apiKey' => '', 'status' => '' ]; return wp_parse_args($globalSettings, $defaults); } public function saveGlobalSettings($settings) { if (!$settings['apiKey']) { $integrationSettings = [ 'apiKey' => '', 'status' => false ]; // Update the 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 SendinblueApi($settings['apiKey']); $auth = $api->auth_test(); if (isset($auth['email'])) { $settings['status'] = true; update_option($this->optionKey, $settings, 'no'); wp_send_json_success([ 'status' => true, 'message' => __('Your settings has been updated!', 'fluentformpro') ], 200); } throw new \Exception(__('Invalid Credentials', 'fluentformpro'), 400); } 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-sendinblue-settings'), 'configure_message' => __('Brevo is not configured yet! Please configure your Brevo API first', 'fluentformpro'), 'configure_button_text' => __('Set Brevo API', 'fluentformpro') ]; return $integrations; } public function getIntegrationDefaults($settings, $formId) { return [ 'name' => '', 'list_id' => '', 'fieldEmailAddress' => '', 'custom_field_mappings' => (object)[], 'default_fields' => (object)[], 'other_fields_mapping' => [ [ 'item_value' => '', 'label' => '' ] ], 'ip_address' => '{ip}', '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' => 'list_id', 'label' => __('Brevo Segment', 'fluentformpro'), 'placeholder' => __('Select Brevo Segment', 'fluentformpro'), 'tips' => __('Select the Brevo segment you would like to add your contacts to.', 'fluentformpro'), 'component' => 'list_ajax_options', 'options' => $this->getLists() ], [ 'key' => 'custom_field_mappings', 'require_list' => true, 'label' => __('Map Fields', 'fluentformpro'), 'tips' => __('Select which Fluent Forms fields pair with their
respective Brevo fields.', 'fluentformpro'), 'component' => 'map_fields', 'field_label_remote' => __('Brevo 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' => true, 'label' => __('Other Fields', 'fluentformpro'), 'tips' => __('Select which Fluent Forms fields pair with their
respective Brevo fields.', 'fluentformpro'), 'component' => 'dropdown_many_fields', 'field_label_remote' => __('Brevo Field', 'fluentformpro'), 'field_label_local' => __('Form Field', 'fluentformpro'), 'options' => $this->attributes() ], [ 'require_list' => true, 'key' => 'conditionals', 'label' => __('Conditional Logics', 'fluentformpro'), 'tips' => __('Allow Brevo integration conditionally based on your submission values', 'fluentformpro'), 'component' => 'conditional_block' ], [ 'require_list' => true, 'key' => 'enabled', 'label' => __('Status', 'fluentformpro'), 'component' => 'checkbox-single', 'checkbox_label' => __('Enable This feed', 'fluentformpro') ] ], 'button_require_list' => true, 'integration_title' => $this->title ]; } protected function getLists() { $api = $this->getApiClient(); if (!$api) { return []; } $lists = $api->getLists(); if(!$lists) { return []; } $formattedLists = []; foreach ($lists as $list) { if (is_array($list)) { $formattedLists[strval($list['id'])] = $list['name']; } } return $formattedLists; } public function getMergeFields($list, $listId, $formId) { return []; } public function attributes() { $api = $this->getApiClient(); if (!$api) { return []; } $attributes = $api->attributes(); $formattedAttributes = []; foreach ($attributes["attributes"] as $attribute) { if (is_array($attribute)) { $formattedAttributes[$attribute['name']] = $attribute['name']; } } return $formattedAttributes; } /* * Submission Broadcast Handler */ 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', __('Brevo API call has been skipped because no valid email available', 'fluentformpro')); return; } $addData = []; $attributes = new \stdClass; $addData['listIds'] = [absint($feedData['list_id'])] ; $addData['email'] = $feedData['fieldEmailAddress']; $defaultFields = ArrayHelper::get($feedData, 'default_fields'); $attributes->FIRSTNAME = $defaultFields['first_name']; $attributes->LASTNAME = $defaultFields['last_name']; foreach (ArrayHelper::get($feedData, 'other_fields_mapping') as $item) { $label = $item['label']; if($item['item_value']){ $attributes->$label = $item['item_value']; } } $addData['attributes'] = $attributes; $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); $api = $this->getApiClient(); $response = $api->addContact($addData); if (!is_wp_error($response) && !empty($response['id'])) { do_action('fluentform/integration_action_result', $feed, 'success', __('Brevo feed has been successfully initialed and pushed data', 'fluentformpro')); } else { $error = __('API Error when submitting Data', 'fluentformpro'); if(is_wp_error($response)) { $error = $response->get_error_message(); } if(is_array($error)) { $error = $response->get_error_messages()[0]; } do_action('fluentform/integration_action_result', $feed, 'failed', $error); } } protected function getApiClient() { $settings = get_option($this->optionKey); return new SendinblueApi( $settings['apiKey'] ); } }