芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/www/wp-content/plugins/fluentformpro/src/Integrations/CampaignMonitor/Bootstrap.php
logo = fluentFormMix('img/integrations/campaignmonitor.png'); $this->description = 'Create Campaign Monitor newsletter signup forms in WordPress, and streamline your email marketing.'; $this->registerAdminHooks(); // add_filter('fluentform/notifying_async_campaign_monitor', '__return_false'); } public function getGlobalFields($fields) { $clients = $this->getClients(); return [ 'logo' => $this->logo, 'menu_title' => __('Campaign Monitor API Settings', 'fluentformpro'), 'menu_description' => __('Campaign Monitor drives results with email marketing. It shares how to gain loyal customers with personalized email campaigns and automated customer journeys. Use Fluent Forms to collect customer information and automatically add it to your Campaign Monitor list. If you don\'t have an Campaign Monitor account, you can
sign up for one here.
', 'fluentformpro'), 'valid_message' => __('Your Campaign Monitor configuration is valid', 'fluentformpro'), 'invalid_message' => __('Your Campaign Monitor configuration is invalid', 'fluentformpro'), 'save_button_text' => __('Save Settings', 'fluentformpro'), 'fields' => [ 'apiKey' => [ 'type' => 'password', 'placeholder' => __('API Key', 'fluentformpro'), 'label_tips' => __("Enter your Campaign Monitor API Key, if you do not have
Please log in to your Campaign Monitor account and find the api key", 'fluentformpro'), 'label' => __('Campaign Monitor API Key', 'fluentformpro'), ], 'clientId' => [ 'type' => 'select', 'hide_on_empty' => true, 'placeholder' => __('Select Client', 'fluentformpro'), 'label_tips' => __("Select the Campaign Monitor client that you want to connect this site", 'fluentformpro'), 'label' => __('Campaign Monitor Client', 'fluentformpro'), 'options' => $clients ] ], 'hide_on_valid' => true, 'discard_settings' => [ 'section_description' => __('Your Campaign Monitor API integration is up and running', 'fluentformpro'), 'button_text' => __('Disconnect Campaign Monitor', 'fluentformpro'), 'data' => [ 'apiKey' => '' ], 'show_verify' => true ], 'reload_on_save' => true ]; } public function getGlobalSettings($settings) { $globalSettings = get_option($this->optionKey); if (!$globalSettings) { $globalSettings = []; } $defaults = [ 'apiKey' => '', 'status' => '', 'clientId' => '' ]; return wp_parse_args($globalSettings, $defaults); } public function saveGlobalSettings($settings) { if (!$settings['apiKey']) { $integrationSettings = [ 'apiKey' => '', 'clientId' => '', '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; $settings['apiKey'] = sanitize_text_field($settings['apiKey']); update_option($this->optionKey, $settings, 'no'); (new CampaignMonitorApi($settings['apiKey']))->auth_test(); $settings['status'] = true; $message = __('Your settings has been updated', 'fluentformpro'); if (!$settings['clientId']) { $settings['status'] = false; $message = __('Please Select Client Now', 'fluentformpro'); } update_option($this->optionKey, $settings, 'no'); wp_send_json_success([ 'message' => $message, 'status' => $settings['status'] ], 200); } catch (\Exception $e) { wp_send_json_error([ 'message' => $e->getMessage(), 'status' => false ], 400); } } 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-campaign_monitor-settings'), 'configure_message' => __('Campaign Monitor is not configured yet! Please configure your Campaign Monitor api first', 'fluentformpro'), 'configure_button_text' => __('Set Campaign Monitor API', 'fluentformpro') ]; return $integrations; } public function getIntegrationDefaults($settings, $formId) { return [ 'name' => '', 'list_id' => '', 'fieldEmailAddress' => '', 'fullName' => '', 'custom_fields' => (object)[], 'conditionals' => [ 'conditions' => [], 'status' => false, 'type' => 'all' ], 'resubscribe' => false, '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' => __('Campaign Monitor List', 'fluentformpro'), 'placeholder' => __('Select Campaign Monitor Mailing List', 'fluentformpro'), 'tips' => __('Select the Campaign Monitor Mailing List you would like to add your contacts to.', 'fluentformpro'), 'component' => 'list_ajax_options', 'options' => $this->getLists(), ], [ 'key' => 'custom_fields', 'require_list' => true, 'label' => __('Map Fields', 'fluentformpro'), 'tips' => __('Select which Fluent Forms fields pair with their
respective Campaign Monitor fields.', 'fluentformpro'), 'component' => 'map_fields', 'field_label_remote' => __('Campaign Monitor Field', 'fluentformpro'), 'field_label_local' => __('Form Field', 'fluentformpro'), 'primary_fileds' => [ [ 'key' => 'fieldEmailAddress', 'label' => __('Email Address', 'fluentformpro'), 'required' => true, 'input_options' => 'emails' ], [ 'key' => 'fullName', 'label' => __('Full Name', 'fluentformpro') ] ] ], [ 'key' => 'resubscribe', 'require_list' => true, 'label' => __('Resubscribe', 'fluentformpro'), 'tips' => __('When this option is enabled, if the subscriber is in an inactive state or
has previously been unsubscribed, they will be re-added to the active list.
Therefore, this option should be used with caution and only when appropriate.', 'fluentformpro'), 'component' => 'checkbox-single', 'checkbox_label' => __('Enable ReSubscription', 'fluentformpro') ], [ 'require_list' => true, 'key' => 'conditionals', 'label' => __('Conditional Logics', 'fluentformpro'), 'tips' => __('Allow Campaign Monitor 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 ]; } public function getMergeFields($list, $listId, $formId) { $api = $this->getApiClient(); if (!$api) { return []; } $fields = $api->get_custom_fields($listId); $formattedFields = []; foreach ($fields as $field) { $field_key = str_replace(array('[', ']'), '', $field['Key']); $formattedFields[$field_key] = $field['FieldName']; } return $formattedFields; } protected function getLists() { $api = $this->getApiClient(); if (!$api) { return []; } $lists = $api->get_lists(); $formattedLists = []; foreach ($lists as $list) { $formattedLists[$list['ListID']] = $list['Name']; } return $formattedLists; } protected function getClients() { $api = $this->getApiClient(); if (!$api) { return []; } try { $clients = $api->get_clients(); $formattedClints = []; foreach ($clients as $client) { $formattedClints[$client['ClientID']] = $client['Name']; } return $formattedClints; } catch (\Exception $e) { return []; } } /* * Form Submission Hooks Here */ 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', __('Campaign Monitor API call has been skipped because no valid email available', 'fluentformpro')); return; } $subscriber = [ 'EmailAddress' => $feedData['fieldEmailAddress'], 'Name' => ArrayHelper::get($feedData, 'fullName'), 'Resubscribe' => ArrayHelper::isTrue($feedData, 'resubscribe'), ]; $customFiels = []; foreach (ArrayHelper::get($feedData, 'custom_fields', []) as $key => $value) { if (!$value) { continue; } $customFiels[] = [ 'Key' => $key, 'Value' => $value ]; } if ($customFiels) { $subscriber['CustomFields'] = $customFiels; } $subscriber = array_filter($subscriber); $subscriber = apply_filters_deprecated( 'fluentform_integration_data_' . $this->integrationKey, [ $subscriber, $feed, $entry ], FLUENTFORM_FRAMEWORK_UPGRADE, 'fluentform/integration_data_' . $this->integrationKey, 'Use fluentform/integration_data_' . $this->integrationKey . ' instead of fluentform_integration_data_' . $this->integrationKey ); $subscriber = apply_filters('fluentform/integration_data_' . $this->integrationKey, $subscriber, $feed, $entry); try { // Now let's prepare the data and push to hubspot $api = $this->getApiClient(); if (!$api) { return; } $api->add_subscriber($subscriber, $feedData['list_id']); do_action('fluentform/integration_action_result', $feed, 'success', __('Campaign Monitor feed has been successfully initialed and pushed data', 'fluentformpro')); } catch (\Exception $exception) { do_action('fluentform/integration_action_result', $feed, 'failed', $exception->getMessage()); } } protected function getApiClient() { try { $settings = $this->getGlobalSettings([]); if ($settings['clientId']) { return new CampaignMonitorApi($settings['apiKey'], $settings['clientId']); } $api = new CampaignMonitorApi($settings['apiKey']); $clients = $api->get_clients(); if (!isset($clients[0])) { throw new \Exception(__('Client is not configured', 'fluentformpro'), 400); } $settings['clientId'] = $clients[0]['ClientID']; update_option($this->optionKey, $settings, 'no'); $api->set_client_id($clients[0]['ClientID']); return $api; } catch (\Exception $e) { return false; } } }