-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGravityFormsDataSource.php
359 lines (305 loc) · 7.88 KB
/
GravityFormsDataSource.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
<?php
namespace DataKit\Plugin\Data;
use Closure;
use DataKit\DataViews\Data\BaseDataSource;
use DataKit\DataViews\Data\MutableDataSource;
use DataKit\DataViews\Data\Exception\DataSourceNotFoundException;
use DataKit\DataViews\DataView\Operator;
use GF_Field;
use GFAPI;
use GFExport;
use WP_Error;
/**
* Data source backed by a Gravity Forms form.
*
* @since $ver$
*/
final class GravityFormsDataSource extends BaseDataSource implements MutableDataSource {
/**
* Fields that are top-level search keys.
*
* Note: These filters are handled differently by the Gravity Forms search API.
*
* @since $ver$
*
* @var string[]
*/
private static array $top_level_filters = [ 'status', 'start_date', 'end_date' ];
/**
* The form object.
*
* @since $ver$
*
* @var array<string|int, mixed>
*/
private array $form;
/**
* Microcache for the "current" entries.
*
* @since $ver$
*
* @var array[]
*/
private array $entries;
/**
* Microcache for the data source fields.
*
* @since $ver$
*
* @var array<string, string>
*/
private array $fields;
/**
* Creates the data source.
*
* @since $ver$
*
* @param int $form_id The form ID.
* @throws DataSourceNotFoundException When the data source could not be instantiated.
*/
public function __construct( int $form_id ) {
if ( ! class_exists( 'GFAPI' ) ) {
throw new DataSourceNotFoundException( esc_html__( 'Data source can not be used, as Gravity Forms is not available.', 'datakit' ) );
}
$form = GFAPI::get_form( $form_id );
if ( ! is_array( $form ) ) {
// translators: %d is the form ID.
throw new DataSourceNotFoundException( sprintf( esc_html__( 'Gravity Forms data source (%d) not found', 'datakit' ), $form_id ) ); // phpcs:ignore WordPress.Security.EscapeOutput.ExceptionNotEscaped
}
require_once \GFCommon::get_base_path() . '/export.php';
$this->form = GFExport::add_default_export_fields( $form );
}
/**
* @inheritDoc
*
* @since $ver$
*/
public function id(): string {
return sprintf( 'gravity-forms-%d', $this->form['id'] );
}
/**
* @inheritDoc
*
* @since $ver$
*/
public function can_delete(): bool {
// phpcs:ignore WordPress.WP.Capabilities.Unknown
return current_user_can( 'gform_full_access' ) || current_user_can( 'gravityforms_delete_entries' );
}
/**
* @inheritDoc
*
* @since $ver$
*/
public function delete_data_by_id( string ...$ids ): void {
// Loop through each ID and delete the entry.
foreach ( $ids as $id ) {
GFAPI::delete_entry( (int) $id );
}
}
/**
* @inheritDoc
*
* @since $ver$
*/
public function get_data_ids( int $limit = 100, int $offset = 0 ): array {
$entries = GFAPI::get_entries(
$this->form['id'],
$this->get_search_criteria(),
$this->get_sorting(),
[
'offset' => $offset,
'page_size' => $limit,
],
);
if ( $entries instanceof WP_Error ) {
return [];
}
// Microcache entries on their ID.
$this->entries = array_column( $entries, null, 'id' );
// Return IDs for the current set.
return array_column( $entries, 'id' );
}
/**
* @inheritDoc
*
* @since $ver$
*/
public function get_data_by_id( string $id ): array {
$entry = $this->entries[ $id ] ?? GFAPI::get_entry( (int) $id );
if ( ! is_array( $entry ) ) {
return [];
}
foreach ( $this->get_form_fields() as $field ) {
// Inputs aren't guaranteed to be set and can be unexpected types.
$field_inputs = isset( $field->inputs ) && is_array( $field->inputs ) ? $field->inputs : [];
// Returns the values for the entire field, as well as all sub input separately (e.g., 1, 1.1, 1.2, etc.).
$inputs = [ $field->id, ...array_column( $field_inputs, 'id' ) ];
foreach ( $inputs as $input_id ) {
$entry[ $input_id ] = $field->get_value_export( $entry, $input_id );
}
}
return $entry;
}
/**
* @inheritDoc
*
* @since $ver$
*/
public function count(): int {
return GFAPI::count_entries( $this->form['id'], $this->get_search_criteria() );
}
/**
* Returns the search criteria based on the filters.
*
* @since $ver$
*
* @return array The search criteria.
*/
private function get_search_criteria(): array {
if ( ! $this->filters && ( ! $this->search || $this->search->is_empty() ) ) {
return [];
}
$filters = [];
if ( $this->filters ) {
$filters = $this->top_level_filters();
$filters['field_filters'] = array_merge(
...array_filter(
array_map(
Closure::fromCallable( [ $this, 'transform_filter_to_field_filters' ] ),
$this->filters->to_array(),
),
),
);
}
if ( $this->search ) {
$filters['field_filters'] ??= [];
$filters['field_filters'][] = [
'field' => '0', // All fields.
'operator' => 'contains',
'value' => (string) $this->search,
];
}
return $filters;
}
/**
* Transforms a filter into a Gravity Forms field filters.
*
* Note: Returns an array of arrays, as a single DataView Filter can be comprised of multiple Gravity Forms filters.
*
* @since $ver$
*
* @param array $filter The filter.
*
* @return null|array{array{key: string, value:string|int|float|array, operator:string}} The field filter criteria.
*/
private function transform_filter_to_field_filters( array $filter ): ?array {
if ( in_array( $filter['field'], self::$top_level_filters, true ) ) {
return null;
}
return [
[
'key' => $filter['field'],
'value' => $filter['value'],
'operator' => $this->map_operator( $filter['operator'] ),
],
];
}
/**
* Maps the field operator to a Gravity Forms search operator.
*
* @since $ver$
*
* @param string $operator The field operator.
*
* @return string The Gravity Forms search operator.
* @todo this needs to be fixed for all cases.
*/
private function map_operator( string $operator ): string {
$case = Operator::try_from( $operator );
$lookup = [
(string) Operator::is() => 'IS',
(string) Operator::isNot() => 'IS NOT',
(string) Operator::isAny() => 'IN',
(string) Operator::isAll() => 'IS',
(string) Operator::isNotAll() => 'IN',
(string) Operator::isNone() => 'NOT IN',
];
return $lookup[ (string) $case ] ?? 'IS NOT';
}
/**
* Returns the top level filters for the Gravity Forms API.
*
* @since $ver$
*
* @return array<string, mixed> The filters.
*/
private function top_level_filters(): array {
$filters = [];
foreach ( $this->filters->to_array() as $filter ) {
if ( ! in_array( $filter['field'], self::$top_level_filters, true ) ) {
continue;
}
$filters[ $filter['field'] ] = $filter['value'];
}
return $filters;
}
/**
* Returns the sorting for Gravity Forms based on the sort object.
*
* @since $ver$
*
* @return array The Gravity Forms sorting.
*/
private function get_sorting(): array {
if ( ! $this->sort ) {
return [];
}
$sort = $this->sort->to_array();
return [
'key' => $sort['field'],
'direction' => $sort['direction'],
];
}
/**
* @inheritDoc
*
* @since $ver$
*/
public function get_fields(): array {
if ( isset( $this->fields ) ) {
return $this->fields;
}
$output = [];
foreach ( $this->get_form_fields() as $field ) {
$label = $field->get_field_label( true, '' );
$output[ (string) $field->id ] = $label;
if ( ! is_array( $field->inputs ) ) {
continue;
}
foreach ( $field->inputs as $input ) {
$key = $input['id'] ?? null;
$sub_label = $input['label'] ?? null;
if ( ! isset( $key, $sub_label ) ) {
continue;
}
$output[ $key ] = $sub_label;
}
}
$this->fields = $output;
return $output;
}
/**
* Returns the form fields.
*
* @since $ver$
*
* @return GF_Field[] The form fields.
*/
private function get_form_fields(): array {
return array_filter(
$this->form['fields'],
static fn( $value ) => $value instanceof GF_Field,
);
}
}