-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathclass-gf-cli-form.php
640 lines (566 loc) · 17 KB
/
class-gf-cli-form.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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
<?php
defined( 'ABSPATH' ) || defined( 'WP_CLI' ) || die();
/**
* Manage Gravity Forms.
*
* @since 1.0
* @package GravityForms/CLI
* @category CLI
* @author Rockegenius
* @copyright Copyright (c) 2016-2018, Rocketgenius
*/
class GF_CLI_Form extends WP_CLI_Command {
/**
* Lists the forms with entry count and view counts.
*
* @since 1.0-beta-1
*
* ## OPTIONS
*
* [--active]
* : List active forms. Default: true
*
* [--trash>]
* : List forms in the trash. Default: false
*
* [--sort_column=<sort_column>]
* : The column on which to sort the list.
* id|title|date_created|is_active|is_trash
*
* [--sort_dir=<sort_dir>]
* : The direction to use when sorting. Accepts ASC or DESC. Defaults to ASC.
*
* [--format=<format>]
* : Accepted values: table, csv, json, count. Default: table.
*
* ## EXAMPLES
*
* wp gf form list
* wp gf form list --trash
* wp gf form list --active
* wp gf form list --no-active
*
* @synopsis [--active] [--trash] [--sort_column=<sort_column>] [--sort_dir=<sort_dir>] [--format=<format>]
* @alias list
*/
function form_list( $args, $assoc_args ) {
// Check if the active flag is passed
$is_active = WP_CLI\Utils\get_flag_value( $assoc_args, 'active', null );
// Check for the sort column. If not passed, default to title
$sort_column = isset( $assoc_args['sort_column'] ) ? $assoc_args['sort_column'] : 'title';
// Check for the sorting direction. If not set, use ascending
$sort_dir = isset( $assoc_args['sort_dir'] ) ? $assoc_args['sort_dir'] : 'ASC';
// Check if the --trash flag is set. Default to false
$is_trash = WP_CLI\Utils\get_flag_value( $assoc_args, 'trash', false );
// Check if the format is passed. Default to table
$format = isset( $assoc_args['format'] ) ? $assoc_args['format'] : 'table';
// Get all forms based on the parameters set
$forms = GFFormsModel::get_forms( $is_active, $sort_column, $sort_dir, $is_trash );
// If the format is set as 'ids'
if ( $format == 'ids' ) {
// Start our array
$form_ids = array();
// For each form found, add its ID to the array
foreach ( $forms as $form ) {
$form_ids[] = $form->id;
}
// Space separate the IDs
echo implode( ' ', $form_ids );
return;
}
// Encode the JSON into an array, then decode it
$forms_array = json_decode( json_encode( $forms ), ARRAY_A );
// Run through each of the forms
foreach ( $forms_array as &$form ) {
// Change the label
if ( ! isset( $form['entry_count'] ) ) {
$form['entry_count'] = $form['lead_count'];
}
}
// Define each of the columns displayed
$fields = array(
'id',
'title',
'date_created',
'is_active',
'entry_count',
'view_count',
);
// Format and output the results
WP_CLI\Utils\format_items( $format, $forms_array, $fields );
}
/**
* Exports forms to a Gravity Forms Form export file.
*
* @since 1.0-beta-1
* @since 1.2 Added the optional filename arg.
*
* ## OPTIONS
*
* [<form-id>]
* : The ID of the form to export. Defaults to all forms.
*
* [--dir=<dir>]
* : The directory for the form to export. Defaults to the current working directory.
*
* [--filename=<filename>]
* : The filename for the form to export. Defaults to the current date.
*
* [--porcelain]
* : Overrides the standard success message with just the export file path
*
* ## EXAMPLES
*
* wp gf form export 1
* wp gf form export
*
* @synopsis [<form-id>] [--dir=<dir>] [--filename=<filename>] [--porcelain]
*/
function export( $args, $assoc_args ) {
// Needs GFExport
require_once( GFCommon::get_base_path() . '/export.php' );
// If the form ID is passed, use it. Otherwise, get all form IDs
$form_ids = isset( $args[0] ) ? array( $args[0] ) : GFFormsModel::get_form_ids();
// Get all form meta for our selected forms
$forms = RGFormsModel::get_form_meta_by_id( $form_ids );
// Prep for export
$forms = GFExport::prepare_forms_for_export( $forms );
// JSON encode it
$forms_json = json_encode( $forms );
// Set the filename of the export
if ( isset( $assoc_args['filename'] ) ) {
$filename = $assoc_args['filename'];
} else {
$filename = 'gravityforms-export-' . date( 'Y-m-d' ) . '.json';
}
$filename = sanitize_file_name( $filename );
// If the export directory is set
if ( isset( $assoc_args['dir'] ) ) {
// If the directory isn't writable, throw an error
if ( ! is_writable( $assoc_args['dir'] ) ) {
WP_CLI::error( 'Not writable: ' . $assoc_args['dir'] );
}
// Set the path, based on the directory and file name
$filename = $assoc_args['dir'] . DIRECTORY_SEPARATOR . $filename;
} else {
// If the directory isn't writable, throw an error
if ( ! is_writable( '.' ) ) {
WP_CLI::error( 'The current working directory is not writable' );
}
}
// Write the export output to the file
file_put_contents( $filename, $forms_json );
// Check if porcelain is set. If not, default to false.
$porcelain = isset( $assoc_args['porcelain'] ) ? $assoc_args['porcelain'] : false;
if ( $porcelain ) {
// If porcelain is set, output the file name
WP_CLI::line( $filename );
} else {
// If not, display the standard success message
WP_CLI::success( 'Forms exported successfully to ' . $filename );
}
}
/**
* Imports forms from a Gravity Forms Form export file.
*
* @since 1.0-beta-1
*
* ## OPTIONS
*
* <path_to_json_file>
* : The path to the JSON file with the form.
*
* ## EXAMPLES
*
* wp gf form import /path/to/forms.json
*
* @synopsis <path_to_json_file>
* @alias import
*/
function import( $args, $assoc_args ) {
// Get the path to the import file
list( $path ) = $args;
// Needs GFExport
require_once( GFCommon::get_base_path() . '/export.php' );
// Import the forms
$count = GFExport::import_file( $path );
// Display the success message
WP_CLI::success( 'Forms imported: ' . absint( $count ) );
}
/**
* Creates a new form.
*
* @since 1.0-beta-1
*
* ## OPTIONS
*
* <title>
* : The title of the new form. Overrides form JSON values.
*
* [<description>]
* : The description form setting. Overrides form JSON values.
*
* [--form-json=<form-json>]
* : Optionally pass the new form details with JSON
*
* [--porcelain]
* : If used, outputs just the form ID instead of the standard success message
*
* ## EXAMPLES
*
* wp gf form create "My New Form" "The description"
*
* @synopsis [<title>] [<description>] [--form-json=<form-json>] [--porcelain]
* @subcommand create
* @alias create-form
*/
function create( $args, $assoc_args ) {
// Check if the form details are passed via JSON
if ( isset( $assoc_args['form-json'] ) ) {
// Set the form JSON
$form_json = $assoc_args['form-json'];
// Decode the JSON to an array
$form = json_decode( $form_json, ARRAY_A );
// Check if the title had been set and override the JSON setting
if ( isset( $args[0] ) ) {
$form['title'] = $args[0];
}
// Check if the description has been set and override the JSON setting
if ( isset( $args[1] ) ) {
$form['description'] = $args[1];
}
if ( ! isset( $form['fields'] ) ) {
$form['fields'] = array();
}
$field_ids = wp_list_pluck( $form['fields'], 'id' );
$field_ids = array_map( 'absint', $field_ids );
$next_field_id = max( $field_ids ) + 1;
foreach( $form['fields'] as &$field ) {
if ( ! isset( $field['id'] ) ) {
$field['id'] = $next_field_id++;
}
}
} else {
// Set the title based on the passed argument
$title = $args[0];
// Set the description based on the passed argument
$description = isset( $args[1] ) ? $args[1] : '';
// Create the form object
$form = array(
'title' => $title,
'description' => $description,
'labelPlacement' => 'top_label',
'descriptionPlacement' => 'below',
'button' => array(
'type' => 'text',
'text' => esc_html__( 'Submit', 'gravityforms' ),
'imageUrl' => '',
),
'fields' => array(),
);
// Create the default notification
if ( apply_filters( 'gform_default_notification', true ) ) {
$default_notification = array(
'id' => uniqid(),
'to' => '{admin_email}',
'name' => __( 'Admin Notification', 'gravityforms' ),
'event' => 'form_submission',
'toType' => 'email',
'subject' => __( 'New submission from', 'gravityforms' ) . ' {form_title}',
'message' => '{all_fields}',
);
$notifications = array( $default_notification['id'] => $default_notification );
// Store it in the form object
$form['notifications'] = $notifications;
}
}
// If confirmations aren't already passed (they shouldn't be)
if ( ! isset( $form['confirmations'] ) ) {
// Set the confirmation ID
$confirmation_id = uniqid();
// Initialize our empty array
$confirmations = array();
// Build the confirmation
$confirmations[ $confirmation_id ] = array(
'id' => $confirmation_id,
'name' => __( 'Default Confirmation', 'gravityforms' ),
'isDefault' => true,
'type' => 'message',
'message' => __( 'Thanks for contacting us! We will get in touch with you shortly.', 'gravityforms' ),
'url' => '',
'pageId' => '',
'queryString' => '',
);
// Add the confirmation to the form object
$form['confirmations'] = $confirmations;
}
// Create the form using the created form object
$form_id = GFAPI::add_form( $form );
// If there's an error creating the form, throw an error
if ( is_wp_error( $form_id ) ) {
WP_CLI::error( $form_id->get_error_message() );
}
// Check if porcelain is set. Default to false.
$porcelain = isset( $assoc_args['porcelain'] ) ? $assoc_args['porcelain'] : false;
if ( $porcelain ) {
// If porcelain is set, only display the form ID
WP_CLI::line( $form_id );
} else {
// Otherwise, set our success message
WP_CLI::success( 'Created Form with ID: ' . $form_id );
}
}
/**
* Returns the form JSON.
*
* @since 1.0-beta-1
*
* ## OPTIONS
*
* <form-id>
* : The Form ID
*
* ## EXAMPLES
*
* wp gf form get 1
*
* @synopsis <form-id>
* @subcommand get
* @alias get-form
*/
function get( $args, $assoc_args ) {
// Get the form ID passed
$form_id = $args[0];
// Get the form based on the form ID
$form = GFAPI::get_form( $form_id );
if ( empty( $form ) ) {
// If not found, throw an error
WP_CLI::error( 'Form not found' );
} else {
// Otherwise, output the form JSON
WP_CLI::line( json_encode( $form ) );
}
}
/**
* Deletes a form.
*
* @since 1.0-beta-1
*
* ## OPTIONS
*
* <form-id>...
* : One or more IDs of the forms to delete.
*
* [--force]
* : Skip the trash
*
* ## EXAMPLES
*
* wp gf form delete 1
*
* @synopsis <form-id>... [--force]
*/
function delete( $args, $assoc_args ) {
// Run through each of the passed form IDs
foreach ( $args as $form_id ) {
// Get the form, based on the ID
$form = GFAPI::get_form( $form_id );
// If the form is already in the trash or --force is passed, set force to true. Otherwise, false.
$force = $form['is_trash'] ? true : WP_CLI\Utils\get_flag_value( $assoc_args, 'force', false );
// If the force flag is set to true
if ( $force ) {
// Delete the form and store the result
$result = GFAPI::delete_form( $form_id );
// If the result is an error, throw an error message
if ( is_wp_error( $result ) ) {
/* @var WP_Error $result */
WP_CLI::error( $result->get_error_message(), false );
} else {
// If there isn't an error, display success message
WP_CLI::success( 'Deleted form ' . $form_id );
}
} else {
// If force is not set, move it to trash instead
$success = GFFormsModel::trash_form( $form_id );
if ( $success ) {
// If there was an issue, throw an error
WP_CLI::error( 'Error deleting form: ' . $form_id, false );
} else {
// If all went well, display the success message
WP_CLI::success( 'Trashed form ' . $form_id );
}
}
}
}
/**
* Duplicates a form.
*
* @since 1.0-beta-1
*
* ## OPTIONS
*
* <form-id>
* : The Form ID
*
* ## EXAMPLES
*
* wp gf form duplicate 1
*
* @synopsis <form-id> [--porcelain]
* @subcommand duplicate
* @alias duplicate-form
*/
function duplicate( $args, $assoc_args ) {
// Set the form ID that was passed
$form_id = $args[0];
// Override the user capabilities
add_filter( 'user_has_cap', function ( $all_caps, $cap, $args ) {
$all_caps['gform_full_access'] = true;
return $all_caps;
}, 9, 3 );
// Duplicate the form, and store the new form ID
$new_form_id = GFFormsModel::duplicate_form( $form_id );
// If porcelain is set, use it. Otherwise, set as false
$porcelain = isset( $assoc_args['porcelain'] ) ? $assoc_args['porcelain'] : false;
// If the porcelain flag is set, do stuff
if ( $porcelain ) {
// If set, only return the new form ID
WP_CLI::line( $new_form_id );
} else {
// Otherwise, display the success message
WP_CLI::success( 'Form duplicated successfully. New Form ID: ' . $new_form_id );
}
}
/**
* Updates a form.
*
* @since 1.0-beta-1
*
* ## OPTIONS
*
* <form-id>
* : The Form ID
*
* [--form-json=<form-json>]
* : The JSON representation of the form
*
* [--file=<file>]
* : The path to a file containing JSON representation of the form
*
* ## EXAMPLES
*
* wp gf form update 1 --form-json='{snip}'
*
* @synopsis <form-id> [--form-json=<form-json>] [--file=<file>]
*/
function update( $args, $assoc_args ) {
$form_id = intval( $args[0] );
if ( isset( $assoc_args['form-json'] ) ) {
$json_config = $assoc_args['form-json'];
} elseif ( isset( $assoc_args['file'] ) ) {
if ( ! file_exists( $assoc_args['file'] ) ) {
WP_CLI::error( 'Please check the path: ' . $assoc_args['file'] );
}
$json_config = file_get_contents( $assoc_args['file'] );
} else {
WP_CLI::error( 'Either --form-json or --file must be set' );
return;
}
$form = json_decode( $json_config, ARRAY_A );
// If the form data passed is empty, throw an error
if ( empty( $form ) ) {
WP_CLI::error( 'Invalid JSON' );
}
if ( ! isset( $form['id'] ) && isset( $form['0'] ) && is_array( $form['0'] ) ) {
// Looks like an export file. Take the first form.
if ( isset( $form['1'] ) && is_array( $form['1'] ) ) {
WP_CLI::confirm( 'It looks like there are multiple Forms in the file. Should we use the first one and ignore the rest?' );
}
$form = $form['0'];
}
$existing_form = GFAPI::get_form( $form_id );
if ( ! $existing_form ) {
WP_CLI::error( 'Form not found' );
return;
}
// Ensure the active flag is set.
if ( ! isset( $form['is_active'] ) ) {
$form['is_active'] = (bool) rgar( $existing_form, 'is_active' );
}
// Add the form ID to the form object
$form['id'] = $form_id;
// Ensure the confirmations and notifications are associative arrays with the ID as the key.
if ( isset( $form['confirmations'] ) ) {
$form['confirmations'] = self::set_property_as_key( $form['confirmations'], 'id' );
}
if ( isset( $form['notifications'] ) ) {
$form['notifications'] = self::set_property_as_key( $form['notifications'], 'id' );
}
// Pass the form object to update_form and store the result
$result = GFAPI::update_form( $form, $form_id );
if ( is_wp_error( $result ) ) {
// If there was an error, throw an error
WP_CLI::error( $result );
} else {
// Otherwise, display the success message
WP_CLI::success( 'Form updated successfully' );
}
}
/**
* Launch system editor to edit the Form configuration.
*
* @since 1.0-beta-1
*
* ## OPTIONS
*
* <form-id>
* : The ID of the form to edit.
*
* ## EXAMPLES
*
* wp gf form edit 123
*/
public function edit( $args, $assoc_args ) {
// Set the form ID from the passed arguments
$form_id = $args[0];
// Get the form object based on the form ID
$form = GFAPI::get_form( $form_id );
// If nothing was returned, throw an error
if ( empty( $form ) ) {
WP_CLI::error( 'Form not found' );
}
// Encode the form object to JSON
$form_json = json_encode( $form, JSON_PRETTY_PRINT );
// Opern the editor, setting the content and title
$r = $this->_edit( $form_json, "WP-CLI gf form {$form_id}" );
if ( $r === false ) {
// If no changes were made, throw a warning
\WP_CLI::warning( 'No change made to form.', 'Aborted' );
} else {
// Otherwise, update the form using the edited content
$this->update( $args, array( 'form-json' => $r ) );
}
}
/**
* Launches the editor, setting the content and title
*
* @since 1.0-beta-1
* @access protected
*
* @param string $content
* @param string $title
*
* @return mixed
*/
protected function _edit( $content, $title ) {
$output = \WP_CLI\Utils\launch_editor_for_input( $content, $title );
return $output;
}
private static function set_property_as_key( $array, $property ) {
$new_array = array();
foreach ( $array as $item ) {
$new_array[ $item[ $property ] ] = $item;
}
return $new_array;
}
}