-
-
Notifications
You must be signed in to change notification settings - Fork 270
Expand file tree
/
Copy pathPods_CLI_Command.php
More file actions
392 lines (322 loc) · 10.1 KB
/
Pods_CLI_Command.php
File metadata and controls
392 lines (322 loc) · 10.1 KB
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
<?php
/**
* Implements Pods command for WP-CLI
*/
class Pods_CLI_Command extends WP_CLI_Command {
/**
* Add a pod item.
*
* ## OPTIONS
*
* --pod=<pod>
* : The pod name.
*
* --<field>=<value>
* : The field => value pair(s) to save.
*
* ## EXAMPLES
*
* wp pods-legacy add --pod=my_pod --my_field_name1=Value --my_field_name2="Another Value"
*
* @param $args
* @param $assoc_args
*/
public function add( $args, $assoc_args ) {
$pod_name = $assoc_args['pod'];
unset( $assoc_args['pod'] );
$pod = pods_get_instance( $pod_name, null, false );
if ( ! $pod->valid() ) {
WP_CLI::error( sprintf( __( 'Pod "%s" does not exist.', 'pods' ), $assoc_args['pod'] ) );
}
if ( ! empty( $assoc_args ) ) {
$id = 0;
try {
$id = $pod->add( $assoc_args );
} catch ( Exception $exception ) {
WP_CLI::error( sprintf( __( 'Error saving pod item: %s', 'pods' ), $exception->getMessage() ) );
}
if ( 0 < $id ) {
WP_CLI::success( __( 'Pod item added.', 'pods' ) );
WP_CLI::line( sprintf( __( 'New ID: %s', 'pods' ), $id ) );
} else {
WP_CLI::error( __( 'Pod item not added.', 'pods' ) );
}
} else {
WP_CLI::error( __( 'No data sent for saving.', 'pods' ) );
}
}
/**
* Save a pod item.
*
* ## OPTIONS
*
* --pod=<pod>
* : The pod name.
*
* [--item=<item>]
* : The item to save for, it is not used for a settings pod.
*
* --<field>=<value>
* : The field => value pair(s) to save.
*
* ## EXAMPLES
*
* wp pods-legacy save --pod=my_pod --item=123 --my_field_name1=Value2 --my_field_name2="Another Value2"
* wp pods-legacy save --pod=my_settings_pod --my_option_field_name1=Value --my_option_field_name2="Another Value2"
*
* @param $args
* @param $assoc_args
*/
public function save( $args, $assoc_args ) {
$pod_name = $assoc_args['pod'];
$item = pods_v( 'item', $assoc_args );
unset( $assoc_args['pod'] );
if ( null !== $item ) {
unset( $assoc_args['item'] );
}
$pod = pods_get_instance( $pod_name, $item, false );
if ( ! $pod->valid() ) {
WP_CLI::error( sprintf( __( 'Pod "%s" does not exist.', 'pods' ), $assoc_args['pod'] ) );
}
if ( null !== $item && ! $pod->exists() ) {
WP_CLI::error( sprintf( __( 'Pod "%1$s" item "%2$s" does not exist.', 'pods' ), $assoc_args['pod'], $assoc_args['item'] ) );
}
if ( ! empty( $assoc_args ) ) {
$id = 0;
try {
$id = $pod->save( $assoc_args );
} catch ( Exception $exception ) {
WP_CLI::error( sprintf( __( 'Error saving pod item: %s', 'pods' ), $exception->getMessage() ) );
}
if ( 0 < $id ) {
WP_CLI::success( __( 'Pod item saved.', 'pods' ) );
WP_CLI::line( sprintf( __( 'ID: %s', 'pods' ), $id ) );
} else {
WP_CLI::error( __( 'Pod item not saved.', 'pods' ) );
}
} else {
WP_CLI::error( __( 'No data sent for saving.', 'pods' ) );
}
}
/**
* Duplicate a pod item.
*
* ## OPTIONS
*
* --pod=<pod>
* : The pod name.
*
* --item=<item>
* : The pod item to delete.
*
* ## EXAMPLES
*
* wp pods-legacy duplicate --pod=my_pod --item=123
*
* @param $args
* @param $assoc_args
*/
public function duplicate( $args, $assoc_args ) {
$pod = pods_get_instance( $assoc_args['pod'], $assoc_args['item'], false );
if ( ! $pod->valid() ) {
WP_CLI::error( sprintf( __( 'Pod "%s" does not exist.', 'pods' ), $assoc_args['pod'] ) );
}
if ( ! $pod->exists() ) {
WP_CLI::error( sprintf( __( 'Pod "%1$s" item "%2$s" does not exist.', 'pods' ), $assoc_args['pod'], $assoc_args['item'] ) );
}
$id = 0;
try {
$id = $pod->duplicate( $assoc_args );
} catch ( Exception $exception ) {
WP_CLI::error( sprintf( __( 'Error saving pod item: %s', 'pods' ), $exception->getMessage() ) );
}
if ( 0 < $id ) {
WP_CLI::success( __( 'Pod item duplicated.', 'pods' ) );
WP_CLI::line( sprintf( __( 'New ID: %s', 'pods' ), $id ) );
} else {
WP_CLI::error( __( 'Pod item not duplicated.', 'pods' ) );
}
}
/**
* Delete a pod item.
*
* ## OPTIONS
*
* --pod=<pod>
* : The pod name.
*
* --item=<item>
* : The pod item to delete.
*
* ## EXAMPLES
*
* wp pods-legacy delete --pod=my_pod --item=123
*
* @param $args
* @param $assoc_args
*/
public function delete( $args, $assoc_args ) {
$pod = pods_get_instance( $assoc_args['pod'], $assoc_args['item'], false );
if ( ! $pod->valid() ) {
WP_CLI::error( sprintf( __( 'Pod "%s" does not exist.', 'pods' ), $assoc_args['pod'] ) );
}
if ( ! $pod->exists() ) {
WP_CLI::error( sprintf( __( 'Pod "%1$s" item "%2$s" does not exist.', 'pods' ), $assoc_args['pod'], $assoc_args['item'] ) );
}
$deleted = false;
try {
$deleted = $pod->delete();
} catch ( Exception $exception ) {
WP_CLI::error( sprintf( __( 'Error saving pod item: %s', 'pods' ), $exception->getMessage() ) );
}
if ( $deleted ) {
WP_CLI::success( __( 'Pod item deleted.', 'pods' ) );
} else {
WP_CLI::error( __( 'Pod item not deleted.', 'pods' ) );
}
}
/**
* Export a single pod item to a file.
*
* ## OPTIONS
*
* --pod=<pod>
* : The pod name.
*
* --file=<file>
* : The file to save to including path (defaults to current path).
*
* [--item=<item>]
* : The item to save for, it is not used for a settings pod.
*
* [--fields=<fields>]
* : The comma-separated list of fields to export (defaults to all fields).
*
* [--depth=<depth>]
* : The depth of related objects to recursively export (default is 1 level deep, only returns IDs for related objects).
*
* ## EXAMPLES
*
* wp pods-legacy export-item --pod=my_pod --item=123 --file="item-data.json"
* wp pods-legacy export-item --pod=my_pod --item=123 --file="/path/to/item-data.json"
* wp pods-legacy export-item --pod=my_pod --item=123 --file="item-data.json" --fields="ID,post_title,post_content,my_field_name1,my_field_name2"
* wp pods-legacy export-item --pod=my_pod --item=123 --file="item-data.json" --depth=2
*
* @subcommand export-item
*/
public function export_item( $args, $assoc_args ) {
$pod_name = $assoc_args['pod'];
$item = pods_v( 'item', $assoc_args );
unset( $assoc_args['pod'] );
if ( null !== $item ) {
unset( $assoc_args['item'] );
}
$pod = pods_get_instance( $pod_name, $item, false );
if ( ! $pod->valid() ) {
WP_CLI::error( sprintf( __( 'Pod "%s" does not exist.', 'pods' ), $assoc_args['pod'] ) );
}
if ( null !== $item && ! $pod->exists() ) {
WP_CLI::error( sprintf( __( 'Pod "%1$s" item "%2$s" does not exist.', 'pods' ), $assoc_args['pod'], $assoc_args['item'] ) );
}
$params = array(
'fields' => pods_v( 'fields', $assoc_args, null, true ),
'depth' => (int) pods_v( 'depth', $assoc_args, 1, true ),
);
$data = false;
try {
$data = $pod->export( $params );
} catch ( Exception $exception ) {
WP_CLI::error( sprintf( __( 'Error exporting pod item: %s', 'pods' ), $exception->getMessage() ) );
}
if ( ! empty( $data ) ) {
// Load PodsMigrate class file for use.
pods_migrate();
$file = $assoc_args['file'];
$export_file = PodsMigrate::export_data_to_file( $file, $data, true );
if ( $export_file ) {
WP_CLI::success( sprintf( __( 'Pod item exported: %s', 'pods' ), $export_file ) );
} else {
WP_CLI::error( __( 'Pod item not exported.', 'pods' ) );
}
} else {
WP_CLI::error( __( 'No export data found.', 'pods' ) );
}
}
/**
* Export all pod items to a file.
*
* ## OPTIONS
*
* --pod=<pod>
* : The pod name.
*
* --file=<file>
* : The file to save to including path (defaults to current path).
*
* [--fields=<fields>]
* : The comma-separated list of fields to export (defaults to all fields).
*
* [--depth=<depth>]
* : The depth of related objects to recursively export (default is 1 level deep, only returns IDs for related objects).
*
* [--params=<params>]
* : The params to pass into the Pods::find() call, provided in arg1=A&arg2=B or JSON format (default is limit=-1).
*
* ## EXAMPLES
*
* wp pods-legacy export --pod=my_pod --file="items.json"
* wp pods-legacy export --pod=my_pod --file="/path/to/items.json"
* wp pods-legacy export --pod=my_pod --file="items.json" --fields="ID,post_title,post_content,my_field_name1,my_field_name2"
* wp pods-legacy export --pod=my_pod --file="items.json" --depth=2
* wp pods-legacy export --pod=my_pod --file="items.json" --params="{\"limit\":10,\"orderby\":\"t.ID DESC\"}"
* wp pods-legacy export --pod=my_pod --file="items.json" --params="limit=10&orderby=t.ID DESC"
*/
public function export( $args, $assoc_args ) {
$pod_name = $assoc_args['pod'];
unset( $assoc_args['pod'] );
$pod = pods_get_instance( $pod_name, array( 'limit' => -1 ), false );
if ( ! $pod->valid() ) {
WP_CLI::error( sprintf( __( 'Pod "%s" does not exist.', 'pods' ), $assoc_args['pod'] ) );
}
$params = array(
'fields' => pods_v( 'fields', $assoc_args, null, true ),
'depth' => (int) pods_v( 'depth', $assoc_args, 1, true ),
);
// Handle custom find() params.
$find_params = pods_v( 'params', $assoc_args, null, true );
if ( is_string( $find_params ) ) {
$params['params'] = array();
if ( false !== strpos( $params['params'], '{' ) ) {
// Pull the find params from JSON format.
$params['params'] = json_decode( $params['params'], true );
} else {
// Pull the find params from string argument format.
wp_parse_str( $find_params, $params['params'] );
}
}
$data = false;
try {
$data = $pod->export_data( $params );
} catch ( Exception $exception ) {
WP_CLI::error( sprintf( __( 'Error exporting pod items: %s', 'pods' ), $exception->getMessage() ) );
}
if ( ! empty( $data ) ) {
// Load PodsMigrate class file for use.
pods_migrate();
$file = $assoc_args['file'];
$export_file = PodsMigrate::export_data_to_file( $file, $data );
if ( $export_file ) {
WP_CLI::success( sprintf( __( 'Pod items exported: %s', 'pods' ), $export_file ) );
} else {
WP_CLI::error( __( 'Pod items not exported.', 'pods' ) );
}
} else {
WP_CLI::error( __( 'No pod item export data found.', 'pods' ) );
}
}
}
if ( defined( 'WP_CLI' ) && WP_CLI ) {
WP_CLI::add_hook( 'after_wp_load', function() {
WP_CLI::add_command( 'pods-legacy', 'Pods_CLI_Command' );
} );
}