debug-bar
4 years ago
3rd-party.php
3 years ago
amp.php
3 years ago
atomic.php
3 years ago
bbpress.php
3 years ago
beaverbuilder.php
5 years ago
bitly.php
3 years ago
buddypress.php
5 years ago
class-domain-mapping.php
4 years ago
class-jetpack-bbpress-rest-api.php
3 years ago
class-salesforce-lead-form.php
3 years ago
class.jetpack-amp-support.php
3 years ago
creative-mail.php
3 years ago
crowdsignal.php
5 years ago
debug-bar.php
5 years ago
jetpack-backup.php
3 years ago
jetpack-boost.php
3 years ago
qtranslate-x.php
5 years ago
vaultpress.php
5 years ago
web-stories.php
5 years ago
woocommerce-services.php
3 years ago
woocommerce.php
3 years ago
wpml.php
5 years ago
class-salesforce-lead-form.php
148 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Salesforce Lead Form using Jetpack Contact Forms. |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | */ |
| 7 | |
| 8 | namespace Automattic\Jetpack; |
| 9 | |
| 10 | /** |
| 11 | * Class Salesforce_Lead_Form |
| 12 | * |
| 13 | * Hooks on Jetpack's Contact form to send form data to Salesforce. |
| 14 | */ |
| 15 | class Salesforce_Lead_Form { |
| 16 | /** |
| 17 | * Salesforce_Contact_Form constructor. |
| 18 | * Hooks on `grunion_after_feedback_post_inserted` action to send form data to Salesforce. |
| 19 | */ |
| 20 | public static function initialize() { |
| 21 | add_action( 'grunion_after_feedback_post_inserted', array( __CLASS__, 'process_salesforce_form' ), 10, 4 ); |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Process Salesforce Lead forms |
| 26 | * |
| 27 | * @param int $post_id - the post_id for the CPT that is created. |
| 28 | * @param array $fields - Grunion_Contact_Form_Field array. |
| 29 | * @param bool $is_spam - marked as spam by Akismet(?). |
| 30 | * @param array $entry_values - extra fields added to from the contact form. |
| 31 | * |
| 32 | * @return null|void |
| 33 | */ |
| 34 | public static function process_salesforce_form( $post_id, $fields, $is_spam, $entry_values ) { |
| 35 | if ( ! is_array( $fields ) ) { |
| 36 | // nothing to do, also prevent hook from processing actions triggered with different args |
| 37 | return; |
| 38 | } |
| 39 | |
| 40 | // if spam (hinted by akismet?), don't process |
| 41 | if ( $is_spam ) { |
| 42 | return; |
| 43 | } |
| 44 | |
| 45 | $blocks = parse_blocks( get_the_content() ); |
| 46 | |
| 47 | $filtered_blocks = self::get_salesforce_contact_form_blocks( $blocks ); |
| 48 | |
| 49 | // no contact-form blocks with salesforceData and organizationId, move on |
| 50 | if ( empty( $filtered_blocks ) ) { |
| 51 | return; |
| 52 | } |
| 53 | |
| 54 | // more than one form on post, skipping process |
| 55 | if ( count( $filtered_blocks ) > 1 ) { |
| 56 | return; |
| 57 | } |
| 58 | |
| 59 | $attrs = $filtered_blocks[0]['attrs']['salesforceData']; |
| 60 | $organization_id = $attrs['organizationId']; |
| 61 | // Double sanity check: no organization ID? Abort. |
| 62 | if ( empty( $organization_id ) ) { |
| 63 | return; |
| 64 | } |
| 65 | |
| 66 | $keyed_fields = array_map( |
| 67 | function ( $field ) { |
| 68 | return $field->value; |
| 69 | }, |
| 70 | $fields |
| 71 | ); |
| 72 | |
| 73 | // this is yet TBD, campaign IDs are hard to get from SF app/UI, but if |
| 74 | // the user filled it, then send as API field Campaign_ID |
| 75 | if ( ! empty( $attrs['campaignId'] ) ) { |
| 76 | $keyed_fields['Campaign_ID'] = $attrs['campaignId']; |
| 77 | } |
| 78 | |
| 79 | // add post/page URL as lead_source |
| 80 | $keyed_fields['lead_source'] = $entry_values['entry_permalink']; |
| 81 | $keyed_fields['oid'] = $organization_id; |
| 82 | |
| 83 | // we got this far, try and send it. Need to check for errors on submit |
| 84 | try { |
| 85 | self::send_to_salesforce( $keyed_fields ); |
| 86 | } catch ( \Exception $e ) { |
| 87 | // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_trigger_error |
| 88 | trigger_error( sprintf( 'Jetpack Form: Sending lead to Salesforce failed: %s', esc_html( $e->getMessage() ) ) ); |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * POST to Salesforce WebToLead servlet |
| 94 | * |
| 95 | * @param array $data The data key/value pairs to send in POST. |
| 96 | * @param array $options Options for POST. |
| 97 | * |
| 98 | * @return array|WP_Error The result value from wp_remote_post |
| 99 | */ |
| 100 | public static function send_to_salesforce( $data, $options = array() ) { |
| 101 | global $wp_version; |
| 102 | |
| 103 | $user_agent = "WordPress/{$wp_version} | Jetpack/" . constant( 'JETPACK__VERSION' ) . '; ' . get_bloginfo( 'url' ); |
| 104 | $url = 'https://webto.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8'; |
| 105 | $args = array( |
| 106 | 'body' => $data, |
| 107 | 'headers' => array( |
| 108 | 'Content-Type' => 'application/x-www-form-urlencoded', |
| 109 | 'user-agent' => $user_agent, |
| 110 | ), |
| 111 | 'sslverify' => empty( $options['sslverify'] ) ? false : $options['sslverify'], |
| 112 | ); |
| 113 | |
| 114 | $args = apply_filters( 'jetpack_contactform_salesforce_request_args', $args ); |
| 115 | return wp_remote_post( $url, $args ); |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * Extracts any jetpack/contact-form found on post. |
| 120 | * |
| 121 | * @param array $block_array - Array of blocks. |
| 122 | * |
| 123 | * @return array Array of jetpack/contact-form blocks found. |
| 124 | */ |
| 125 | public static function get_salesforce_contact_form_blocks( $block_array ) { |
| 126 | $jetpack_form_blocks = array(); |
| 127 | foreach ( $block_array as $block ) { |
| 128 | if ( |
| 129 | $block['blockName'] === 'jetpack/contact-form' && |
| 130 | isset( $block['attrs']['salesforceData'] ) && |
| 131 | $block['attrs']['salesforceData'] && |
| 132 | isset( $block['attrs']['salesforceData']['sendToSalesforce'] ) && |
| 133 | $block['attrs']['salesforceData']['sendToSalesforce'] && |
| 134 | isset( $block['attrs']['salesforceData']['organizationId'] ) && |
| 135 | $block['attrs']['salesforceData']['organizationId'] |
| 136 | ) { |
| 137 | $jetpack_form_blocks[] = $block; |
| 138 | } elseif ( isset( $block['innerBlocks'] ) ) { |
| 139 | $jetpack_form_blocks = array_merge( $jetpack_form_blocks, self::get_salesforce_contact_form_blocks( $block['innerBlocks'] ) ); |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | return $jetpack_form_blocks; |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | Salesforce_Lead_Form::initialize(); |
| 148 |