PluginProbe
AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI / 6.0.2
AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI v6.0.2
6.0.2 6.0.1 6.0.0 5.8.6 5.8.5 5.8.4 5.8.3 5.8.2 5.8.1 5.8.0 5.7.9.2 5.7.9.1 5.7.8 5.7.9 5.7.6 5.7.7 5.7.5 5.7.4 5.7.3 5.7.2 5.7.1 trunk 5.6.0 5.6.1 5.6.2 All 33 releases
automatorwp / integrations / weforms / includes / triggers / anonymous-submit-form.php

anonymous-submit-form.php in AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI 6.0.2, at integrations/weforms/includes/triggers/anonymous-submit-form.php

197 lines 6.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Anonymous Submit Form
4 *
5 * @package AutomatorWP\Integrations\weForms\Triggers\Anonymous_Submit_Form
6 * @author AutomatorWP <contact@automatorwp.com>, Ruben Garcia <rubengcdev@gmail.com>
7 * @since 1.0.0
8 */
9 // Exit if accessed directly
10 if( !defined( 'ABSPATH' ) ) exit;
11
12 class AutomatorWP_weForms_Anonymous_Submit_Form extends AutomatorWP_Integration_Trigger {
13
14 public $integration = 'weforms';
15 public $trigger = 'weforms_anonymous_submit_form';
16
17 /**
18 * Register the trigger
19 *
20 * @since 1.0.0
21 */
22 public function register() {
23
24 automatorwp_register_trigger( $this->trigger, array(
25 'integration' => $this->integration,
26 'anonymous' => true,
27 'label' => __( 'Guest submits a form', 'automatorwp' ),
28 'select_option' => __( 'Guest submits <strong>a form</strong>', 'automatorwp' ),
29 /* translators: %1$s: Post title. */
30 'edit_label' => sprintf( __( 'Guest submits %1$s', 'automatorwp' ), '{post}' ),
31 /* translators: %1$s: Post title. */
32 'log_label' => sprintf( __( 'Guest submits %1$s', 'automatorwp' ), '{post}' ),
33 'action' => 'weforms_entry_submission',
34 'function' => array( $this, 'listener' ),
35 'priority' => 10,
36 'accepted_args' => 4,
37 'options' => array(
38 'post' => automatorwp_utilities_post_option( array(
39 'name' => __( 'Form:', 'automatorwp' ),
40 'option_none_label' => __( 'any form', 'automatorwp' ),
41 'post_type' => 'wpuf_contact_form',
42 ) ),
43 'times' => automatorwp_utilities_times_option(),
44 ),
45 'tags' => array_merge(
46 array(
47 'form_field:FIELD_NAME' => array(
48 'label' => __( 'Form field value', 'automatorwp' ),
49 'type' => 'text',
50 'preview' => __( 'Form field value, replace "FIELD_NAME" by the field name', 'automatorwp' ),
51 ),
52 ),
53 automatorwp_utilities_times_tag()
54 )
55 ) );
56
57 }
58
59 /**
60 * Trigger listener
61 *
62 * @since 1.0.0
63 *
64 * @param int $entry_id
65 * @param array $form_id
66 * @param int $page_id
67 * @param array $form_settings
68 */
69 public function listener( $entry_id, $form_id, $page_id, $form_settings ) {
70
71 $user_id = get_current_user_id();
72
73 // Bail if user is logged
74 if ( $user_id !== 0 ) {
75 return;
76 }
77
78 $form = get_post( $form_id);
79
80 $form_fields = automatorwp_weforms_get_form_fields_values( $form, $entry_id );
81
82 // Trigger submit form field value event
83 automatorwp_trigger_event( array(
84 'trigger' => $this->trigger,
85 'form_id' => $form_id,
86 'form_fields' => $form_fields,
87 ) );
88
89 }
90
91 /**
92 * Anonymous deserves check
93 *
94 * @since 1.0.0
95 *
96 * @param bool $deserves_trigger True if anonymous deserves trigger, false otherwise
97 * @param stdClass $trigger The trigger object
98 * @param array $event Event information
99 * @param array $trigger_options The trigger's stored options
100 * @param stdClass $automation The trigger's automation object
101 *
102 * @return bool True if anonymous deserves trigger, false otherwise
103 */
104 public function anonymous_deserves_trigger( $deserves_trigger, $trigger, $event, $trigger_options, $automation ) {
105
106 // Don't deserve if post is not received
107 if( ! isset( $event['form_id'] ) ) {
108 return false;
109 }
110
111 // Bail if post doesn't match with the trigger option
112 if( $trigger_options['post'] !== 'any' && absint( $event['form_id'] ) !== absint( $trigger_options['post'] ) ) {
113 return false;
114 }
115
116 return $deserves_trigger;
117
118 }
119
120 /**
121 * Register the required hooks
122 *
123 * @since 1.0.0
124 */
125 public function hooks() {
126
127 // Log meta data
128 add_filter( 'automatorwp_anonymous_completed_trigger_log_meta', array( $this, 'log_meta' ), 10, 5 );
129
130 // Log fields
131 add_filter( 'automatorwp_log_fields', array( $this, 'log_fields' ), 10, 5 );
132
133 parent::hooks();
134 }
135
136 /**
137 * Trigger custom log meta
138 *
139 * @since 1.0.0
140 *
141 * @param array $log_meta Log meta data
142 * @param stdClass $trigger The trigger object
143 * @param array $event Event information
144 * @param array $trigger_options The trigger's stored options
145 * @param stdClass $automation The trigger's automation object
146 *
147 * @return array
148 */
149 function log_meta( $log_meta, $trigger, $event, $trigger_options, $automation ) {
150
151 // Bail if action type don't match this action
152 if( $trigger->type !== $this->trigger ) {
153 return $log_meta;
154 }
155
156 $log_meta['form_fields'] = ( isset( $event['form_fields'] ) ? $event['form_fields'] : array() );
157
158 return $log_meta;
159
160 }
161
162 /**
163 * Action custom log fields
164 *
165 * @since 1.0.0
166 *
167 * @param array $log_fields The log fields
168 * @param stdClass $log The log object
169 * @param stdClass $object The trigger/action/automation object attached to the log
170 *
171 * @return array
172 */
173 public function log_fields( $log_fields, $log, $object ) {
174
175 // Bail if log is not assigned to an trigger
176 if( $log->type !== 'trigger' ) {
177 return $log_fields;
178 }
179
180 // Bail if trigger type don't match this trigger
181 if( $object->type !== $this->trigger ) {
182 return $log_fields;
183 }
184
185 $log_fields['form_fields'] = array(
186 'name' => __( 'Fields Submitted', 'automatorwp' ),
187 'desc' => __( 'Information about the fields values sent on this form submission.', 'automatorwp' ),
188 'type' => 'text',
189 );
190
191 return $log_fields;
192
193 }
194
195 }
196
197 new AutomatorWP_weForms_Anonymous_Submit_Form();