event_merge_tag_groups = array( 'bwfan_crm_fields', 'bwf_contact' );
$this->optgroup_label = esc_html__( 'Contact', 'wp-marketing-automations-pro' );
$this->event_name = esc_html__( 'Field Updated', 'wp-marketing-automations-pro' );
$this->event_desc = esc_html__( 'This event runs after an contact field updated.', 'wp-marketing-automations-pro' );
$this->event_rule_groups = array(
'bwf_contact_segments',
'bwf_contact',
'bwf_contact_fields',
'bwf_contact_user',
'bwf_contact_wc',
'bwf_contact_geo',
'bwf_engagement',
'bwf_broadcast'
);
$this->priority = 25;
$this->customer_email_tag = '{{contact_email}}';
$this->v2 = true;
}
public static function get_instance() {
if ( null === self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}
public function load_hooks() {
add_action( 'bwfcrm_contact_field_updated', array( $this, 'process' ), 10, 4 );
add_action( 'bwfcrm_contact_custom_field_updated', array( $this, 'process' ), 10, 4 );
}
/**
* Localize data for html fields for the current event.
*/
public function admin_enqueue_assets() {
if ( false === BWFAN_Common::is_load_admin_assets( 'automation' ) ) {
return;
}
$fields = $this->get_view_data();
BWFAN_Core()->admin->set_events_js_data( $this->get_slug(), 'fields', $fields );
}
public function get_view_data() {
$all_fields = BWFCRM_Fields::get_fields();
if ( empty( $all_fields ) ) {
return array();
}
$field_data = array();
foreach ( $all_fields as $field_key => $field ) {
$field_data[ $field_key ] = ! empty( $field['name'] ) ? $field['name'] : $field;
}
return $field_data;
}
/**
* Make the required data for the current event and send it asynchronously.
*
* @param $field_id
* @param $new_value
* @param $old_value
* @param $contact_id
*
* @return void
*/
public function process( $field_id, $new_value, $old_value, $contact_id ) {
if ( empty( $field_id ) ) {
return;
}
$data = $this->get_default_data();
$data['field_id'] = $field_id;
$data['new_value'] = $new_value;
$data['old_value'] = $old_value;
$data['contact_id'] = $contact_id;
/** class exists than get the bwfcrm contact object */
$contact_object = new BWFCRM_Contact( $contact_id );
$data['email'] = ( $contact_object instanceof BWFCRM_Contact ) ? $contact_object->contact->get_email() : '';
$this->send_async_call( $data );
}
/**
* Registers the tasks for current event.
*
* @param $automation_id
* @param $integration_data
* @param $event_data
*/
public function register_tasks( $automation_id, $integration_data, $event_data ) {
if ( ! is_array( $integration_data ) ) {
return;
}
$data_to_send = $this->get_event_data();
$this->create_tasks( $automation_id, $integration_data, $event_data, $data_to_send );
}
public function get_event_data() {
$data_to_send = [ 'global' => [] ];
$data_to_send['global']['field_id'] = $this->field_id;
$data_to_send['global']['contact_id'] = $this->contact_id;
$data_to_send['global']['new_value'] = $this->new_value;
$data_to_send['global']['old_value'] = $this->old_value;
$data_to_send['global']['email'] = $this->email;
return $data_to_send;
}
/**
* Make the view data for the current event which will be shown in task listing screen.
*
* @param $global_data
*
* @return false|string
*/
public function get_task_view( $global_data ) {
ob_start();
$field_id = isset( $global_data['field_id'] ) ? $global_data['field_id'] : 0;
?>
field_id = BWFAN_Common::$events_async_data['field_id'];
$this->contact_id = BWFAN_Common::$events_async_data['contact_id'];
$this->old_value = BWFAN_Common::$events_async_data['old_value'];
$this->new_value = BWFAN_Common::$events_async_data['new_value'];
$this->email = BWFAN_Common::$events_async_data['email'];
return $this->run_automations();
}
public function get_email_event() {
return is_email( $this->email ) ? $this->email : false;
}
/**
* Show the html fields for the current event.
*/
public function get_view( $db_eventmeta_saved_value ) {
?>
email ) ) {
$user = get_user_by( 'email', absint( $this->email ) );
return ( $user instanceof WP_User ) ? $user->ID : false;
}
return ! empty( absint( $this->user_id ) ) ? absint( $this->user_id ) : false;
}
/**
* Set global data for all the merge tags which are supported by this event.
*
* @param $task_meta
*/
public function set_merge_tags_data( $task_meta ) {
$get_data = BWFAN_Merge_Tag_Loader::get_data( 'field_id' );
if ( ( empty( $get_data ) || $get_data !== $task_meta['global']['field_id'] ) ) {
$set_data = array(
'field_id' => $task_meta['global']['field_id'],
'email' => $task_meta['global']['email'],
'contact_id' => intval( $task_meta['global']['contact_id'] ),
'new_value' => $task_meta['global']['new_value'],
'old_value' => $task_meta['global']['old_value'],
);
BWFAN_Merge_Tag_Loader::set_data( $set_data );
}
}
/**
* Set up rules data
*
* @param $value
*/
public function pre_executable_actions( $value ) {
BWFAN_Core()->rules->setRulesData( $this->field_id, 'field_id' );
BWFAN_Core()->rules->setRulesData( $this->contact_id, 'contact_id' );
BWFAN_Core()->rules->setRulesData( $this->email, 'email' );
BWFAN_Core()->rules->setRulesData( $this->new_value, 'new_value' );
BWFAN_Core()->rules->setRulesData( $this->old_value, 'old_value' );
}
/**
* Validating form id after submission with the selected form id in the event
*
* @param $automations_arr
*
* @return mixed
*/
public function validate_event_data_before_creating_task( $automations_arr ) {
$automations_arr_temp = $automations_arr;
foreach ( $automations_arr as $automation_id => $automation_data ) {
$field = $automation_data['event_meta']['field'];
$runs = $automation_data['event_meta']['runs'];
$field_from = $automation_data['event_meta']['bwfan_field_from'];
$field_to = $automation_data['event_meta']['bwfan_field_to'];
$field_from_value = $automation_data['event_meta']['bwfan_from_specific_value'];
$field_to_value = $automation_data['event_meta']['bwfan_to_specific_value'];
$run_count = 0;
if ( 'once' === $runs ) {
$run_count = BWFAN_Model_Automations::get_contact_automation_run_count( $automation_id, $this->contact_id );
}
/** checking condition for every time */
if ( $this->field_id === $field && 'every_time' === $runs && 'any' === $field_from && 'any' === $field_to ) {
continue;
}
if ( $this->field_id === $field && 'every_time' === $runs && 'specific' === $field_from && $field_from_value === $this->old_value && 'specific' === $field_to && $field_to_value === $this->new_value ) {
continue;
}
if ( $this->field_id === $field && 'every_time' === $runs && 'specific' === $field_from && $field_from_value === $this->old_value && 'any' === $field_to ) {
continue;
}
if ( $this->field_id === $field && 'every_time' === $runs && 'any' === $field_from && 'specific' === $field_to && $field_to_value === $this->new_value ) {
continue;
}
/** checking condition for first time */
if ( $this->field_id === $field && 'first_time' === $runs && 'any' === $field_from && 'any' === $field_to && 0 === $run_count ) {
continue;
}
if ( $this->field_id === $field && 'first_time' === $runs && 'specific' === $field_from && $field_from_value === $this->old_value && 'specific' === $field_to && $field_to_value === $this->new_value && 0 === $run_count ) {
continue;
}
if ( $this->field_id === $field && 'first_time' === $runs && 'specific' === $field_from && $field_from_value === $this->old_value && 'any' === $field_to && 0 === $run_count ) {
continue;
}
if ( $this->field_id === $field && 'first_time' === $runs && 'any' === $field_from && 'specific' === $field_to && $field_to_value === $this->new_value && 0 === $run_count ) {
continue;
}
unset( $automations_arr_temp[ $automation_id ] );
}
return $automations_arr_temp;
}
public function validate_event_data_before_executing_task( $data ) {
return $this->validate_field( $data );
}
public function validate_field( $data ) {
if ( ! isset( $data['field_id'] ) || ! isset( $data['contact_id'] ) ) {
return false;
}
if ( ! BWFCRM_Fields::is_field_exists( $data['field_id'] ) ) {
$this->message_validate_event = __( 'Updated field not exist.', 'wp-marketing-automations-pro' );
return false;
}
$contact = new BWFCRM_Contact( $data['contact_id'] );
if ( ! $contact->is_contact_exists() ) {
$this->message_validate_event = __( 'Contact not exist.', 'wp-marketing-automations-pro' );
return false;
}
return true;
}
/**
* Capture v2 event.
* @return array|bool
*/
public function capture_v2_data( $automation_data ) {
$this->field_id = BWFAN_Common::$events_async_data['field_id'];
$this->contact_id = BWFAN_Common::$events_async_data['contact_id'];
$this->old_value = BWFAN_Common::$events_async_data['old_value'];
$this->new_value = BWFAN_Common::$events_async_data['new_value'];
$this->email = BWFAN_Common::$events_async_data['email'];
$automation_data['field_id'] = $this->field_id;
$automation_data['contact_id'] = $this->contact_id;
$automation_data['email'] = $this->email;
$automation_data['old_value'] = $this->old_value;
$automation_data['new_value'] = $this->new_value;
return $automation_data;
}
/**
* v2 Method: Validate event settings
*
* @param $automation_data
*
* @return bool
*/
public function validate_v2_event_settings( $automation_data ) {
return $this->validate_field( $automation_data );
}
/**
* v2 Method: Get field schema
* @return array[][]
*/
public function get_fields_schema() {
$field_options = $this->get_view_data();
return [
[
'id' => 'bwfan-crm_select_field',
'type' => 'wp_select',
'options' => $field_options,
'label' => __( 'Field', 'wp-marketing-automations-pro' ),
"class" => 'bwfan-input-wrapper',
"required" => true,
"description" => ""
],
[
'id' => 'bwfan_from_crm_field_value',
'label' => __( "FROM", 'wp-marketing-automations-pro' ),
'type' => 'radio',
'options' => [
[
'label' => __( "Any Value", 'wp-marketing-automations-pro' ),
'value' => 'any'
],
[
'label' => __( " A Specific Value", 'wp-marketing-automations-pro' ),
'value' => 'specific',
'tooltip' => __( "This will attach the image of highest price product of a cart/ order in the message.", 'wp-marketing-automations-pro' )
]
],
'description' => ""
],
[
'id' => 'bwfan_to_crm_field_value',
'label' => __( "TO", 'wp-marketing-automations-pro' ),
'type' => 'radio',
'options' => [
[
'label' => __( "Any Value", 'wp-marketing-automations-pro' ),
'value' => 'any'
],
[
'label' => __( " A Specific Value", 'wp-marketing-automations-pro' ),
'value' => 'specific',
'tooltip' => __( "This will attach the image of highest price product of a cart/ order in the message.", 'wp-marketing-automations-pro' )
]
],
'description' => ""
],
];
}
}
/**
* Register this event to a source.
* This will show the current event in dropdown in single automation screen.
*/
if ( class_exists( 'BWFCRM_Fields' ) ) {
//return 'BWFAN_CRM_Field_Updated';
}