|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* GIVE WP_CLI commands |
|
4
|
|
|
* |
|
5
|
|
|
* @package give |
|
6
|
|
|
* @since 1.7 |
|
7
|
|
|
*/ |
|
8
|
|
|
|
|
9
|
|
|
// Exit if accessed directly. |
|
10
|
|
|
if ( ! defined( 'ABSPATH' ) ) { |
|
11
|
|
|
exit; |
|
12
|
|
|
} |
|
13
|
|
|
|
|
14
|
|
|
// Add give command. |
|
15
|
|
|
WP_CLI::add_command( 'give', 'GIVE_CLI_COMMAND' ); |
|
16
|
|
|
|
|
17
|
|
|
|
|
18
|
|
|
/** |
|
19
|
|
|
* Work with Give through WP-CLI |
|
20
|
|
|
* |
|
21
|
|
|
* Adds CLI support to Give through WP-CLI |
|
22
|
|
|
* |
|
23
|
|
|
* @since 1.7 |
|
24
|
|
|
*/ |
|
25
|
|
|
class GIVE_CLI_COMMAND { |
|
26
|
|
|
|
|
27
|
|
|
/** |
|
28
|
|
|
* This param uses to count process/step inside loop. |
|
29
|
|
|
* |
|
30
|
|
|
* @var int $counter Counter. |
|
31
|
|
|
*/ |
|
32
|
|
|
private static $counter; |
|
33
|
|
|
|
|
34
|
|
|
/** |
|
35
|
|
|
* This helps to get information give plugin data. |
|
36
|
|
|
* |
|
37
|
|
|
* @var Give_API Object. |
|
38
|
|
|
*/ |
|
39
|
|
|
private $api; |
|
40
|
|
|
|
|
41
|
|
|
/** |
|
42
|
|
|
* This helps to get unique name. |
|
43
|
|
|
* |
|
44
|
|
|
* @since 1.8.17 |
|
45
|
|
|
* @var array |
|
46
|
|
|
*/ |
|
47
|
|
|
private $new_donor_names = array(); |
|
48
|
|
|
|
|
49
|
|
|
|
|
50
|
|
|
/** |
|
51
|
|
|
* GIVE_CLI_Command constructor. |
|
52
|
|
|
*/ |
|
53
|
|
|
public function __construct() { |
|
54
|
|
|
$this->api = new Give_API(); |
|
55
|
|
|
} |
|
56
|
|
|
|
|
57
|
|
|
|
|
58
|
|
|
/** |
|
59
|
|
|
* Get Give logo |
|
60
|
|
|
* |
|
61
|
|
|
* ## OPTIONS |
|
62
|
|
|
* |
|
63
|
|
|
* None. for a fun surprise. |
|
64
|
|
|
* |
|
65
|
|
|
* ## EXAMPLES |
|
66
|
|
|
* |
|
67
|
|
|
* wp give logo |
|
68
|
|
|
* |
|
69
|
|
|
* @since 1.7 |
|
70
|
|
|
* @access public |
|
71
|
|
|
* |
|
72
|
|
|
* @param string $args Command Data. |
|
73
|
|
|
* @param array $assoc_args List of command data. |
|
74
|
|
|
* |
|
75
|
|
|
* @return void |
|
76
|
|
|
* |
|
77
|
|
|
* @subcommand logo |
|
78
|
|
|
*/ |
|
79
|
|
|
public function ascii( $args, $assoc_args ) { |
|
|
|
|
|
|
80
|
|
|
WP_CLI::log( file_get_contents( GIVE_PLUGIN_DIR . 'assets/images/give-ascii-logo.txt' ) ); |
|
|
|
|
|
|
81
|
|
|
} |
|
82
|
|
|
|
|
83
|
|
|
|
|
84
|
|
|
/** |
|
85
|
|
|
* Get Give details |
|
86
|
|
|
* |
|
87
|
|
|
* ## OPTIONS |
|
88
|
|
|
* |
|
89
|
|
|
* None. Returns basic info regarding your Give instance. |
|
90
|
|
|
* |
|
91
|
|
|
* ## EXAMPLES |
|
92
|
|
|
* |
|
93
|
|
|
* wp give details |
|
94
|
|
|
* |
|
95
|
|
|
* @since 1.7 |
|
96
|
|
|
* @access public |
|
97
|
|
|
* |
|
98
|
|
|
* @param string $args Command Data. |
|
99
|
|
|
* @param array $assoc_args List of command data. |
|
100
|
|
|
* |
|
101
|
|
|
* @return void |
|
102
|
|
|
* |
|
103
|
|
|
* @subcommand details |
|
104
|
|
|
*/ |
|
105
|
|
|
public function details( $args, $assoc_args ) { |
|
|
|
|
|
|
106
|
|
|
|
|
107
|
|
|
/** |
|
108
|
|
|
* Plugin Information |
|
109
|
|
|
*/ |
|
110
|
|
|
WP_CLI::log( $this->color_message( __( 'Give Version: ', 'give' ) ) . GIVE_VERSION ); |
|
|
|
|
|
|
111
|
|
|
|
|
112
|
|
|
/** |
|
113
|
|
|
* General Information. |
|
114
|
|
|
*/ |
|
115
|
|
|
WP_CLI::log( "\n#### " . $this->color_message( __( 'General information', 'give' ) ) . ' ####' ); |
|
116
|
|
|
|
|
117
|
|
|
$success_page = give_get_option( 'success_page' ); |
|
118
|
|
|
$failure_page = give_get_option( 'failure_page' ); |
|
119
|
|
|
$history_page = give_get_option( 'history_page' ); |
|
120
|
|
|
|
|
121
|
|
|
WP_CLI::log( $this->color_message( sprintf( __( 'Success Page: ', 'give' ) ) ) . ( $success_page ? "[{$success_page}] " . get_permalink( $success_page ) : __( 'Not Set', 'give' ) ) ); |
|
|
|
|
|
|
122
|
|
|
WP_CLI::log( $this->color_message( __( 'Failed Donation Page: ', 'give' ) ) . ( $failure_page ? "[{$failure_page}] " . get_permalink( $failure_page ) : __( 'Not Set', 'give' ) ) ); |
|
|
|
|
|
|
123
|
|
|
WP_CLI::log( $this->color_message( __( 'Donation History Page: ', 'give' ) ) . ( $history_page ? "[{$history_page}] " . get_permalink( $history_page ) : __( 'Not Set', 'give' ) ) ); |
|
|
|
|
|
|
124
|
|
|
WP_CLI::log( $this->color_message( __( 'Country: ', 'give' ) ) . give_get_country() ); |
|
|
|
|
|
|
125
|
|
|
|
|
126
|
|
|
/** |
|
127
|
|
|
* Currency Information. |
|
128
|
|
|
*/ |
|
129
|
|
|
$default_gateway = give_get_option( 'default_gateway' ); |
|
130
|
|
|
|
|
131
|
|
|
WP_CLI::log( "\n#### " . $this->color_message( __( 'Currency Information', 'give' ) ) . ' ####' ); |
|
132
|
|
|
|
|
133
|
|
|
WP_CLI::log( $this->color_message( __( 'Currency: ', 'give' ), give_get_currency() ) ); |
|
134
|
|
|
WP_CLI::log( $this->color_message( __( 'Currency Position: ', 'give' ), give_get_currency_position() ) ); |
|
135
|
|
|
WP_CLI::log( $this->color_message( __( 'Thousand Separator: ', 'give' ), give_get_price_thousand_separator() ) ); |
|
136
|
|
|
WP_CLI::log( $this->color_message( __( 'Decimal Separator: ', 'give' ), give_get_price_decimal_separator() ) ); |
|
137
|
|
|
WP_CLI::log( $this->color_message( __( 'Number of Decimals: ', 'give' ), give_get_price_decimals() ) ); |
|
138
|
|
|
WP_CLI::log( $this->color_message( __( 'Test Mode: ', 'give' ), ( give_get_option( 'test_mode' ) ? __( 'Yes', 'give' ) : __( 'No', 'give' ) ) ) ); |
|
139
|
|
|
WP_CLI::log( $this->color_message( __( 'Default Gateway: ', 'give' ), ( $default_gateway ? $default_gateway : __( 'Not Set', 'give' ) ) ) ); |
|
140
|
|
|
|
|
141
|
|
|
// Payment gateways Information. |
|
142
|
|
|
$gateways = give_get_ordered_payment_gateways( give_get_payment_gateways() ); |
|
143
|
|
|
WP_CLI::log( $this->color_message( __( 'Enabled Gateways: ', 'give' ) ) ); |
|
144
|
|
|
|
|
145
|
|
|
if ( ! empty( $gateways ) ) { |
|
146
|
|
|
self::$counter = 1; |
|
147
|
|
|
foreach ( $gateways as $gateway ) { |
|
148
|
|
|
WP_CLI::log( ' ' . $this->color_message( self::$counter, $gateway['admin_label'] ) ); |
|
149
|
|
|
self::$counter ++; |
|
150
|
|
|
} |
|
151
|
|
|
} else { |
|
152
|
|
|
WP_CLI::log( __( 'Not any payment gateways found', 'give' ) ); |
|
153
|
|
|
} |
|
154
|
|
|
} |
|
155
|
|
|
|
|
156
|
|
|
|
|
157
|
|
|
/** |
|
158
|
|
|
* Get the forms currently posted on your Give site |
|
159
|
|
|
* |
|
160
|
|
|
* ## OPTIONS |
|
161
|
|
|
* |
|
162
|
|
|
* [--id=<form_id>] |
|
163
|
|
|
* : A specific form ID to retrieve |
|
164
|
|
|
* |
|
165
|
|
|
* [--number=<form_count>] |
|
166
|
|
|
* : Number of form to retrieve |
|
167
|
|
|
* |
|
168
|
|
|
* ## EXAMPLES |
|
169
|
|
|
* |
|
170
|
|
|
* wp give forms |
|
171
|
|
|
* wp give forms --id=103 |
|
172
|
|
|
* wp give forms --number=103 |
|
173
|
|
|
* |
|
174
|
|
|
* @since 1.7 |
|
175
|
|
|
* @access public |
|
176
|
|
|
* |
|
177
|
|
|
* @param string $args Command Data. |
|
178
|
|
|
* @param array $assoc_args List of command data. |
|
179
|
|
|
* |
|
180
|
|
|
* @return void |
|
181
|
|
|
* |
|
182
|
|
|
* @subcommand forms |
|
183
|
|
|
*/ |
|
184
|
|
|
public function forms( $args, $assoc_args ) { |
|
|
|
|
|
|
185
|
|
|
global $wp_query; |
|
186
|
|
|
$form_id = isset( $assoc_args ) && array_key_exists( 'id', $assoc_args ) ? absint( $assoc_args['id'] ) : false; |
|
187
|
|
|
$number = isset( $assoc_args ) && array_key_exists( 'number', $assoc_args ) ? absint( $assoc_args['number'] ) : 10; |
|
188
|
|
|
$start = time(); |
|
|
|
|
|
|
189
|
|
|
|
|
190
|
|
|
// Cache previous number query var. |
|
191
|
|
|
$is_set_number = $cache_per_page = false; |
|
192
|
|
View Code Duplication |
if ( isset( $wp_query->query_vars['number'] ) ) { |
|
|
|
|
|
|
193
|
|
|
$cache_per_page = $wp_query->query_vars['number']; |
|
194
|
|
|
$is_set_number = true; |
|
195
|
|
|
} |
|
196
|
|
|
|
|
197
|
|
|
// Change number query var. |
|
198
|
|
|
$wp_query->query_vars['number'] = $number; |
|
199
|
|
|
|
|
200
|
|
|
// Get forms. |
|
201
|
|
|
$forms = $form_id ? $this->api->get_forms( $form_id ) : $this->api->get_forms(); |
|
202
|
|
|
|
|
203
|
|
|
// Reset number query var. |
|
204
|
|
|
if ( $is_set_number ) { |
|
205
|
|
|
$wp_query->query_vars['number'] = $cache_per_page; |
|
206
|
|
|
} |
|
207
|
|
|
|
|
208
|
|
|
// Bailout. |
|
209
|
|
|
if ( array_key_exists( 'error', $forms ) ) { |
|
210
|
|
|
|
|
211
|
|
|
WP_CLI::warning( $forms['error'] ); |
|
212
|
|
|
|
|
213
|
|
|
return; |
|
214
|
|
|
} elseif ( empty( $forms['forms'] ) ) { |
|
215
|
|
|
|
|
216
|
|
|
WP_CLI::error( __( 'No forms found.', 'give' ) ); |
|
217
|
|
|
|
|
218
|
|
|
return; |
|
219
|
|
|
} |
|
220
|
|
|
|
|
221
|
|
|
// Param to check if form typeis already showed or not. |
|
222
|
|
|
$is_show_form_type = false; |
|
223
|
|
|
|
|
224
|
|
|
if ( 1 === count( $forms ) && $form_id ) { |
|
225
|
|
|
// Show single form. |
|
226
|
|
|
foreach ( $forms['forms'][0] as $key => $info ) { |
|
227
|
|
|
switch ( $key ) { |
|
228
|
|
|
case 'stats': |
|
229
|
|
|
$this->color_main_heading( ucfirst( $key ) ); |
|
230
|
|
|
|
|
231
|
|
|
foreach ( $info as $heading => $data ) { |
|
232
|
|
|
$this->color_sub_heading( ucfirst( $heading ) ); |
|
233
|
|
|
switch ( $heading ) { |
|
234
|
|
|
default: |
|
|
|
|
|
|
235
|
|
|
foreach ( $data as $subheading => $subdata ) { |
|
236
|
|
|
|
|
237
|
|
|
switch ( $subheading ) { |
|
238
|
|
|
case 'earnings': |
|
239
|
|
|
WP_CLI::log( $this->color_message( $subheading . ': ', give_currency_filter( $subdata ) ) ); |
|
240
|
|
|
break; |
|
241
|
|
|
default: |
|
242
|
|
|
WP_CLI::log( $this->color_message( $subheading . ': ', $subdata ) ); |
|
243
|
|
|
} |
|
244
|
|
|
} |
|
245
|
|
|
} |
|
246
|
|
|
} |
|
247
|
|
|
break; |
|
248
|
|
|
|
|
249
|
|
|
case 'pricing': |
|
250
|
|
|
case 'info': |
|
251
|
|
|
default: |
|
252
|
|
|
$this->color_main_heading( ucfirst( $key ) ); |
|
253
|
|
|
|
|
254
|
|
|
// Show form type. |
|
255
|
|
|
if ( ! $is_show_form_type ) { |
|
256
|
|
|
$form = new Give_Donate_Form( $form_id ); |
|
257
|
|
|
$is_show_form_type = true; |
|
258
|
|
|
|
|
259
|
|
|
WP_CLI::log( $this->color_message( __( 'form type', 'give' ), $form->get_type() ) ); |
|
260
|
|
|
} |
|
261
|
|
|
|
|
262
|
|
|
foreach ( $info as $heading => $data ) { |
|
263
|
|
|
|
|
264
|
|
|
switch ( $heading ) { |
|
265
|
|
|
case 'id': |
|
266
|
|
|
WP_CLI::log( $this->color_message( $heading, $data ) ); |
|
267
|
|
|
break; |
|
268
|
|
|
|
|
269
|
|
|
default: |
|
270
|
|
|
$data = empty( $data ) ? __( 'Not set', 'give' ) : $data; |
|
271
|
|
|
WP_CLI::log( $this->color_message( $heading, $data ) ); |
|
272
|
|
|
} |
|
273
|
|
|
} |
|
274
|
|
|
}// End switch(). |
|
275
|
|
|
}// End foreach(). |
|
276
|
|
|
} else { |
|
277
|
|
|
// Show multiple form. |
|
278
|
|
|
$table_data = array(); |
|
279
|
|
|
$is_table_first_row_set = false; |
|
280
|
|
|
$table_column_count = 0; |
|
|
|
|
|
|
281
|
|
|
|
|
282
|
|
|
WP_CLI::line( $this->color_message( sprintf( __( '%d donation forms found', 'give' ), count( $forms['forms'] ) ), '', false ) ); |
|
283
|
|
|
|
|
284
|
|
|
foreach ( $forms['forms'] as $index => $form_data ) { |
|
285
|
|
|
|
|
286
|
|
|
// Default table data. |
|
287
|
|
|
$table_first_row = array(); |
|
288
|
|
|
$table_row = array(); |
|
289
|
|
|
|
|
290
|
|
|
foreach ( $form_data['info'] as $key => $form ) { |
|
291
|
|
|
|
|
292
|
|
|
// Do not show thumbnail, content and link in table. |
|
293
|
|
|
if ( in_array( $key, array( 'content', 'thumbnail', 'link' ), true ) ) { |
|
294
|
|
|
continue; |
|
295
|
|
|
} |
|
296
|
|
|
|
|
297
|
|
|
if ( ! $is_table_first_row_set ) { |
|
298
|
|
|
$table_first_row[] = $key; |
|
299
|
|
|
} |
|
300
|
|
|
|
|
301
|
|
|
$table_row[] = $form; |
|
302
|
|
|
|
|
303
|
|
|
if ( 'status' === $key ) { |
|
304
|
|
|
// First array item will be an form id in our case. |
|
305
|
|
|
$form = new Give_Donate_Form( absint( $table_row[0] ) ); |
|
306
|
|
|
|
|
307
|
|
|
$table_row[] = $form->get_type(); |
|
308
|
|
|
} |
|
309
|
|
|
} |
|
310
|
|
|
|
|
311
|
|
|
// Set table first row. |
|
312
|
|
|
if ( ! $is_table_first_row_set ) { |
|
313
|
|
|
|
|
314
|
|
|
// Add extra column to table. |
|
315
|
|
|
$table_first_row[] = 'type'; |
|
316
|
|
|
|
|
317
|
|
|
$table_data[] = $table_first_row; |
|
318
|
|
|
$is_table_first_row_set = true; |
|
319
|
|
|
} |
|
320
|
|
|
|
|
321
|
|
|
// set table data. |
|
322
|
|
|
$table_data[] = $table_row; |
|
323
|
|
|
}// End foreach(). |
|
324
|
|
|
|
|
325
|
|
|
$this->display_table( $table_data ); |
|
326
|
|
|
}// End if(). |
|
327
|
|
|
} |
|
328
|
|
|
|
|
329
|
|
|
|
|
330
|
|
|
/** |
|
331
|
|
|
* Get the donors currently on your Give site. Can also be used to create donors records |
|
332
|
|
|
* |
|
333
|
|
|
* ## OPTIONS |
|
334
|
|
|
* |
|
335
|
|
|
* [--id=<donor_id>] |
|
336
|
|
|
* : A specific donor ID to retrieve |
|
337
|
|
|
* |
|
338
|
|
|
* [--email=<donor_email>] |
|
339
|
|
|
* : The email address of the donor to retrieve |
|
340
|
|
|
* |
|
341
|
|
|
* [--number=<donor_count>] |
|
342
|
|
|
* : The number of donor to retrieve |
|
343
|
|
|
* |
|
344
|
|
|
* [--create=<number>] |
|
345
|
|
|
* : The number of arbitrary donors to create. Leave as 1 or blank to create a |
|
346
|
|
|
* donor with a specific email |
|
347
|
|
|
* |
|
348
|
|
|
* [--form-id=<donation_form_id>] |
|
349
|
|
|
* : Get list of donors of specific donation form |
|
350
|
|
|
* |
|
351
|
|
|
* [--name=<name_of_donor>] |
|
352
|
|
|
* : Name with which you want to create new donor |
|
353
|
|
|
* |
|
354
|
|
|
* [--format=<output_format>] |
|
355
|
|
|
* : In which format you want to see results. Valid formats: table, json, csv |
|
356
|
|
|
* |
|
357
|
|
|
* ## EXAMPLES |
|
358
|
|
|
* |
|
359
|
|
|
* wp give donors |
|
360
|
|
|
* wp give donors --id=103 |
|
361
|
|
|
* wp give donors [email protected] |
|
362
|
|
|
* wp give donors --create=1 [email protected] |
|
363
|
|
|
* wp give donors --create=1 [email protected] --name="John Doe" |
|
364
|
|
|
* wp give donors --create=1000 |
|
365
|
|
|
* wp give donors --number=1000 |
|
366
|
|
|
* wp give donors --form-id=1024 |
|
367
|
|
|
* |
|
368
|
|
|
* @since 1.7 |
|
369
|
|
|
* @access public |
|
370
|
|
|
* |
|
371
|
|
|
* @param string $args Command Data. |
|
372
|
|
|
* @param array $assoc_args List of command data. |
|
373
|
|
|
* |
|
374
|
|
|
* @return void |
|
375
|
|
|
* |
|
376
|
|
|
* @subcommand donors |
|
377
|
|
|
*/ |
|
378
|
|
|
public function donors( $args, $assoc_args ) { |
|
|
|
|
|
|
379
|
|
|
global $wp_query; |
|
380
|
|
|
$donor_id = isset( $assoc_args ) && array_key_exists( 'id', $assoc_args ) ? absint( $assoc_args['id'] ) : false; |
|
381
|
|
|
$email = isset( $assoc_args ) && array_key_exists( 'email', $assoc_args ) ? $assoc_args['email'] : false; |
|
382
|
|
|
$name = isset( $assoc_args ) && array_key_exists( 'name', $assoc_args ) ? $assoc_args['name'] : ''; |
|
383
|
|
|
$create = isset( $assoc_args ) && array_key_exists( 'create', $assoc_args ) ? $assoc_args['create'] : false; |
|
384
|
|
|
$number = isset( $assoc_args ) && array_key_exists( 'number', $assoc_args ) ? $assoc_args['number'] : 10; |
|
385
|
|
|
$form_id = isset( $assoc_args ) && array_key_exists( 'form-id', $assoc_args ) ? $assoc_args['form-id'] : 0; |
|
386
|
|
|
$format = isset( $assoc_args ) && array_key_exists( 'format', $assoc_args ) ? $assoc_args['format'] : 'table'; |
|
387
|
|
|
$start = time(); |
|
388
|
|
|
|
|
389
|
|
|
if ( $create ) { |
|
390
|
|
|
if ( 80 < $create ) { |
|
391
|
|
|
WP_CLI::warning( 'Currently we can only generate maximum 80 donors.', 'give' ); |
|
392
|
|
|
$create = 80; |
|
393
|
|
|
} |
|
394
|
|
|
|
|
395
|
|
|
$number = 1; |
|
396
|
|
|
|
|
397
|
|
|
if ( isset( $assoc_args['email'] ) && ! is_email( $email ) ) { |
|
398
|
|
|
WP_CLI::warning( 'Wrong email address provided.', 'give' ); |
|
399
|
|
|
|
|
400
|
|
|
return; |
|
401
|
|
|
} |
|
402
|
|
|
|
|
403
|
|
|
// Create one or more donors. |
|
404
|
|
|
if ( ! $email ) { |
|
405
|
|
|
// If no email is specified, look to see if we are generating arbitrary donor accounts. |
|
406
|
|
|
$number = is_numeric( $create ) ? absint( $create ) : 1; |
|
407
|
|
|
} |
|
408
|
|
|
|
|
409
|
|
|
for ( $i = 0; $i < $number; $i ++ ) { |
|
410
|
|
|
$name = $name ? $name : $this->get_random_name(); |
|
411
|
|
|
$email = $email ? $email : $this->get_random_email( $name ); |
|
412
|
|
|
|
|
413
|
|
|
$args = array( |
|
414
|
|
|
'email' => $email, |
|
415
|
|
|
'name' => $name, |
|
416
|
|
|
); |
|
417
|
|
|
|
|
418
|
|
|
$donor_id = Give()->donors->add( $args ); |
|
419
|
|
|
|
|
420
|
|
|
if ( $donor_id ) { |
|
421
|
|
|
WP_CLI::line( $this->color_message( sprintf( __( 'Donor #%d created successfully', 'give' ), $donor_id ) ) ); |
|
422
|
|
|
} else { |
|
423
|
|
|
WP_CLI::error( __( 'Failed to create donor', 'give' ) ); |
|
424
|
|
|
} |
|
425
|
|
|
|
|
426
|
|
|
// Reset email and name to false so it is generated on the next loop (if creating donors). |
|
427
|
|
|
$email = $name = false; |
|
428
|
|
|
} |
|
429
|
|
|
|
|
430
|
|
|
WP_CLI::line( $this->color_message( sprintf( __( '%1$d donors created in %2$d seconds', 'give' ), $number, time() - $start ) ) ); |
|
431
|
|
|
|
|
432
|
|
|
} else { |
|
433
|
|
|
// Counter. |
|
434
|
|
|
self::$counter = 1; |
|
435
|
|
|
|
|
436
|
|
|
// Search for customers. |
|
437
|
|
|
$search = $donor_id ? $donor_id : $email; |
|
438
|
|
|
|
|
439
|
|
|
/** |
|
440
|
|
|
* Get donors. |
|
441
|
|
|
*/ |
|
442
|
|
|
// Cache previous number query var. |
|
443
|
|
|
$is_set_number = $cache_per_page = false; |
|
444
|
|
View Code Duplication |
if ( isset( $wp_query->query_vars['number'] ) ) { |
|
|
|
|
|
|
445
|
|
|
$cache_per_page = $wp_query->query_vars['number']; |
|
446
|
|
|
$is_set_number = true; |
|
447
|
|
|
} |
|
448
|
|
|
|
|
449
|
|
|
// Change number query var. |
|
450
|
|
|
$wp_query->query_vars['number'] = $number; |
|
451
|
|
|
|
|
452
|
|
|
// Get donors. |
|
453
|
|
|
if ( $form_id ) { |
|
454
|
|
|
// @TODO: Allow user to get a list of donors by donation status. |
|
455
|
|
|
$donors = $this->get_donors_by_form_id( $form_id ); |
|
456
|
|
|
} else { |
|
457
|
|
|
$donors = $this->api->get_donors( $search ); |
|
458
|
|
|
} |
|
459
|
|
|
|
|
460
|
|
|
// Reset number query var. |
|
461
|
|
|
if ( $is_set_number ) { |
|
462
|
|
|
$wp_query->query_vars['number'] = $cache_per_page; |
|
463
|
|
|
} |
|
464
|
|
|
|
|
465
|
|
|
if ( isset( $donors['error'] ) ) { |
|
466
|
|
|
WP_CLI::error( $donors['error'] ); |
|
467
|
|
|
} |
|
468
|
|
|
|
|
469
|
|
|
if ( empty( $donors ) ) { |
|
470
|
|
|
WP_CLI::error( __( 'No donors found.', 'give' ) ); |
|
471
|
|
|
|
|
472
|
|
|
return; |
|
473
|
|
|
} |
|
474
|
|
|
|
|
475
|
|
|
$table_data = array(); |
|
476
|
|
|
$is_table_first_row_set = false; |
|
477
|
|
|
|
|
478
|
|
|
foreach ( $donors['donors'] as $donor_data ) { |
|
479
|
|
|
// Set default table row data. |
|
480
|
|
|
$table_first_row = array( __( 's_no', 'give' ) ); |
|
481
|
|
|
$table_row = array( self::$counter ); |
|
482
|
|
|
|
|
483
|
|
|
foreach ( $donor_data as $key => $donor ) { |
|
484
|
|
|
switch ( $key ) { |
|
485
|
|
|
case 'stats': |
|
486
|
|
|
foreach ( $donor as $heading => $data ) { |
|
487
|
|
|
|
|
488
|
|
|
// Get first row. |
|
489
|
|
|
if ( ! $is_table_first_row_set ) { |
|
490
|
|
|
$table_first_row[] = $heading; |
|
491
|
|
|
} |
|
492
|
|
|
|
|
493
|
|
|
switch ( $heading ) { |
|
494
|
|
|
case 'total_spent': |
|
495
|
|
|
$table_row[] = give_currency_filter( $data ); |
|
496
|
|
|
break; |
|
497
|
|
|
|
|
498
|
|
|
default: |
|
499
|
|
|
$table_row[] = $data; |
|
500
|
|
|
} |
|
501
|
|
|
} |
|
502
|
|
|
break; |
|
503
|
|
|
|
|
504
|
|
|
case 'info': |
|
505
|
|
|
default: |
|
506
|
|
|
foreach ( $donor as $heading => $data ) { |
|
507
|
|
|
|
|
508
|
|
|
// Get first row. |
|
509
|
|
|
if ( ! $is_table_first_row_set ) { |
|
510
|
|
|
$table_first_row[] = $heading; |
|
511
|
|
|
} |
|
512
|
|
|
|
|
513
|
|
|
$table_row[] = $data; |
|
514
|
|
|
} |
|
515
|
|
|
} |
|
516
|
|
|
} |
|
517
|
|
|
|
|
518
|
|
|
// Add first row data to table data. |
|
519
|
|
|
if ( ! $is_table_first_row_set ) { |
|
520
|
|
|
$table_data[] = $table_first_row; |
|
521
|
|
|
$is_table_first_row_set = true; |
|
522
|
|
|
} |
|
523
|
|
|
|
|
524
|
|
|
// Add table row data. |
|
525
|
|
|
$table_data[] = $table_row; |
|
526
|
|
|
|
|
527
|
|
|
// Increase counter. |
|
528
|
|
|
self::$counter ++; |
|
529
|
|
|
}// End foreach(). |
|
530
|
|
|
|
|
531
|
|
|
switch ( $format ) { |
|
532
|
|
|
case 'json': |
|
533
|
|
|
$table_column_name = $table_data[0]; |
|
534
|
|
|
unset( $table_data[0] ); |
|
535
|
|
|
|
|
536
|
|
|
$new_table_data = array(); |
|
537
|
|
|
foreach ( $table_data as $index => $data ) { |
|
538
|
|
|
foreach ( $data as $key => $value ) { |
|
539
|
|
|
$new_table_data[ $index ][ $table_column_name[ $key ] ] = $value; |
|
540
|
|
|
} |
|
541
|
|
|
} |
|
542
|
|
|
|
|
543
|
|
|
WP_CLI::log( json_encode( $new_table_data ) ); |
|
544
|
|
|
break; |
|
545
|
|
|
|
|
546
|
|
|
case 'csv': |
|
547
|
|
|
$file_path = trailingslashit( WP_CONTENT_DIR ) . 'uploads/give_donors_' . date( 'Y_m_d_s', current_time( 'timestamp' ) ) . '.csv'; |
|
548
|
|
|
$fp = fopen( $file_path, 'w' ); |
|
549
|
|
|
|
|
550
|
|
|
if ( is_writable( $file_path ) ) { |
|
|
|
|
|
|
551
|
|
|
foreach ( $table_data as $fields ) { |
|
552
|
|
|
fputcsv( $fp, $fields ); |
|
|
|
|
|
|
553
|
|
|
} |
|
554
|
|
|
|
|
555
|
|
|
fclose( $fp ); |
|
556
|
|
|
|
|
557
|
|
|
WP_CLI::success( "Donors list csv created successfully: {$file_path}" ); |
|
558
|
|
|
} else { |
|
559
|
|
|
WP_CLI::warning( "Unable to create donors list csv file: {$file_path} (May folder do not have write permission)" ); |
|
560
|
|
|
} |
|
561
|
|
|
|
|
562
|
|
|
break; |
|
563
|
|
|
|
|
564
|
|
|
default: |
|
565
|
|
|
$this->display_table( $table_data ); |
|
566
|
|
|
}// End switch(). |
|
567
|
|
|
}// End if(). |
|
568
|
|
|
} |
|
569
|
|
|
|
|
570
|
|
|
|
|
571
|
|
|
/** |
|
572
|
|
|
* Get the recent donations for your Give site |
|
573
|
|
|
* |
|
574
|
|
|
* ## OPTIONS |
|
575
|
|
|
* |
|
576
|
|
|
* [--number=<donation_count>] |
|
577
|
|
|
* : The number of donations to retrieve |
|
578
|
|
|
* |
|
579
|
|
|
* |
|
580
|
|
|
* ## EXAMPLES |
|
581
|
|
|
* |
|
582
|
|
|
* wp give donations |
|
583
|
|
|
* wp give donations --number=100 |
|
584
|
|
|
* |
|
585
|
|
|
* @since 1.7 |
|
586
|
|
|
* @access public |
|
587
|
|
|
* |
|
588
|
|
|
* @param string $args Command Data. |
|
589
|
|
|
* @param array $assoc_args List of command data. |
|
590
|
|
|
* |
|
591
|
|
|
* @return void |
|
592
|
|
|
* |
|
593
|
|
|
* @subcommand donations |
|
594
|
|
|
*/ |
|
595
|
|
|
public function donations( $args, $assoc_args ) { |
|
|
|
|
|
|
596
|
|
|
global $wp_query; |
|
597
|
|
|
$number = isset( $assoc_args ) && array_key_exists( 'number', $assoc_args ) ? $assoc_args['number'] : 10; |
|
598
|
|
|
|
|
599
|
|
|
// Cache previous number query var. |
|
600
|
|
|
$is_set_number = $cache_per_page = false; |
|
601
|
|
View Code Duplication |
if ( isset( $wp_query->query_vars['number'] ) ) { |
|
|
|
|
|
|
602
|
|
|
$cache_per_page = $wp_query->query_vars['number']; |
|
603
|
|
|
$is_set_number = true; |
|
604
|
|
|
} |
|
605
|
|
|
|
|
606
|
|
|
// Change number query var. |
|
607
|
|
|
$wp_query->query_vars['number'] = $number; |
|
608
|
|
|
|
|
609
|
|
|
// Get donations. |
|
610
|
|
|
$donations = $this->api->get_recent_donations(); |
|
611
|
|
|
|
|
612
|
|
|
// Reset number query var. |
|
613
|
|
|
if ( $is_set_number ) { |
|
614
|
|
|
$wp_query->query_vars['number'] = $cache_per_page; |
|
615
|
|
|
} |
|
616
|
|
|
|
|
617
|
|
|
if ( empty( $donations ) ) { |
|
618
|
|
|
WP_CLI::error( __( 'No donations found.', 'give' ) ); |
|
619
|
|
|
|
|
620
|
|
|
return; |
|
621
|
|
|
} |
|
622
|
|
|
|
|
623
|
|
|
self::$counter = 1; |
|
624
|
|
|
|
|
625
|
|
|
foreach ( $donations['donations'] as $key => $donation ) { |
|
626
|
|
|
$this->color_main_heading( sprintf( __( '%1$s. Donation #%2$s', 'give' ), self::$counter, $donation['ID'] ), 'Y' ); |
|
627
|
|
|
self::$counter ++; |
|
628
|
|
|
|
|
629
|
|
|
foreach ( $donation as $column => $data ) { |
|
630
|
|
|
|
|
631
|
|
|
if ( is_array( $data ) ) { |
|
632
|
|
|
$this->color_sub_heading( $column ); |
|
633
|
|
|
foreach ( $data as $subcolumn => $subdata ) { |
|
634
|
|
|
|
|
635
|
|
|
// Decode html codes. |
|
636
|
|
|
switch ( $subcolumn ) { |
|
637
|
|
|
case 'name': |
|
638
|
|
|
$subdata = html_entity_decode( $subdata ); |
|
639
|
|
|
break; |
|
640
|
|
|
} |
|
641
|
|
|
|
|
642
|
|
|
// @TODO Check if multi dimension array information is importent to show or not. For example inside donation array we have array for fees data inside payment meta. |
|
643
|
|
|
if ( is_array( $subdata ) ) { |
|
644
|
|
|
continue; |
|
645
|
|
|
} |
|
646
|
|
|
|
|
647
|
|
|
WP_CLI::log( $this->color_message( $subcolumn, $subdata ) ); |
|
648
|
|
|
} |
|
649
|
|
|
continue; |
|
650
|
|
|
} |
|
651
|
|
|
|
|
652
|
|
|
WP_CLI::log( $this->color_message( $column, $data ) ); |
|
653
|
|
|
} |
|
654
|
|
|
} |
|
655
|
|
|
} |
|
656
|
|
|
|
|
657
|
|
|
/** |
|
658
|
|
|
* Get give plugin report. |
|
659
|
|
|
* |
|
660
|
|
|
* ## OPTIONS |
|
661
|
|
|
* |
|
662
|
|
|
* [--id=<donation_form_id>] |
|
663
|
|
|
* : The ID of a specific donation_form to retrieve stats for, or all |
|
664
|
|
|
* |
|
665
|
|
|
* [--date=<range|this_month|last_month|today|yesterday|this_quarter|last_quarter|this_year|last_year>] |
|
666
|
|
|
* : A specific date range to retrieve stats for |
|
667
|
|
|
* |
|
668
|
|
|
* [--start-date=<date>] |
|
669
|
|
|
* : The start date of a date range to retrieve stats for |
|
670
|
|
|
* |
|
671
|
|
|
* [--end-date=<date>] |
|
672
|
|
|
* : The end date of a date range to retrieve stats for |
|
673
|
|
|
* |
|
674
|
|
|
* ## EXAMPLES |
|
675
|
|
|
* |
|
676
|
|
|
* wp give report |
|
677
|
|
|
* wp give report --date=this_month |
|
678
|
|
|
* wp give report --start-date=01/02/2014 --end-date=02/23/2014 |
|
679
|
|
|
* wp give report --date=last_year |
|
680
|
|
|
* wp give report --date=last_year --id=15 |
|
681
|
|
|
* |
|
682
|
|
|
* @since 1.7 |
|
683
|
|
|
* @access public |
|
684
|
|
|
* |
|
685
|
|
|
* @param string $args Command Data. |
|
686
|
|
|
* @param array $assoc_args List of command data. |
|
687
|
|
|
* |
|
688
|
|
|
* @subcommand report |
|
689
|
|
|
* |
|
690
|
|
|
* @return void |
|
691
|
|
|
*/ |
|
692
|
|
|
public function report( $args, $assoc_args ) { |
|
|
|
|
|
|
693
|
|
|
$stats = new Give_Payment_Stats(); |
|
694
|
|
|
$date = isset( $assoc_args ) && array_key_exists( 'date', $assoc_args ) ? $assoc_args['date'] : false; |
|
695
|
|
|
$start_date = isset( $assoc_args ) && array_key_exists( 'start-date', $assoc_args ) ? $assoc_args['start-date'] : false; |
|
696
|
|
|
$end_date = isset( $assoc_args ) && array_key_exists( 'end-date', $assoc_args ) ? $assoc_args['end-date'] : false; |
|
697
|
|
|
$form_id = isset( $assoc_args ) && array_key_exists( 'id', $assoc_args ) ? $assoc_args['id'] : 0; |
|
698
|
|
|
|
|
699
|
|
|
if ( ! empty( $date ) ) { |
|
700
|
|
|
$start_date = $date; |
|
701
|
|
|
$end_date = false; |
|
702
|
|
|
} elseif ( empty( $date ) && empty( $start_date ) ) { |
|
703
|
|
|
$start_date = 'this_month'; |
|
704
|
|
|
$end_date = false; |
|
705
|
|
|
} |
|
706
|
|
|
|
|
707
|
|
|
// Get stats. |
|
708
|
|
|
$earnings = $stats->get_earnings( $form_id, $start_date, $end_date ); |
|
709
|
|
|
$sales = $stats->get_sales( $form_id, $start_date, $end_date ); |
|
710
|
|
|
|
|
711
|
|
|
WP_CLI::line( $this->color_message( __( 'Earnings', 'give' ), give_currency_filter( $earnings ) ) ); |
|
712
|
|
|
WP_CLI::line( $this->color_message( __( 'Sales', 'give' ), $sales ) ); |
|
713
|
|
|
} |
|
714
|
|
|
|
|
715
|
|
|
|
|
716
|
|
|
/** |
|
717
|
|
|
* Delete cache (transient). |
|
718
|
|
|
* |
|
719
|
|
|
* ## OPTIONS |
|
720
|
|
|
* |
|
721
|
|
|
* --action=<cache_action> |
|
722
|
|
|
* : Value of this parameter can be delete (in case you want to delete all stat cache). |
|
723
|
|
|
* |
|
724
|
|
|
* ## EXAMPLES |
|
725
|
|
|
* |
|
726
|
|
|
* # See form report |
|
727
|
|
|
* wp give cache --action=delete |
|
728
|
|
|
* |
|
729
|
|
|
* @since 1.7 |
|
730
|
|
|
* @access public |
|
731
|
|
|
* |
|
732
|
|
|
* @param string $args Command Data. |
|
733
|
|
|
* @param array $assoc_args List of command data. |
|
734
|
|
|
* |
|
735
|
|
|
* @return void |
|
736
|
|
|
* |
|
737
|
|
|
* @subcommand cache |
|
738
|
|
|
*/ |
|
739
|
|
|
public function cache( $args, $assoc_args ) { |
|
|
|
|
|
|
740
|
|
|
$action = isset( $assoc_args ) && array_key_exists( 'action', $assoc_args ) ? $assoc_args['action'] : false; |
|
741
|
|
|
|
|
742
|
|
|
// Bailout. |
|
743
|
|
|
if ( ! $action || ! in_array( $action, array( 'delete' ), true ) ) { |
|
744
|
|
|
WP_CLI::warning( __( 'Type wp give cache --action=delete to delete all stat transients', 'give' ) ); |
|
745
|
|
|
|
|
746
|
|
|
return; |
|
747
|
|
|
} |
|
748
|
|
|
|
|
749
|
|
|
switch ( $action ) { |
|
750
|
|
|
case 'delete': |
|
751
|
|
|
// Reset counter. |
|
752
|
|
|
self::$counter = 1; |
|
753
|
|
|
|
|
754
|
|
|
if ( $this->delete_stats_transients() ) { |
|
755
|
|
|
// Report .eading. |
|
756
|
|
|
WP_CLI::success( 'Give cache deleted.' ); |
|
757
|
|
|
} else { |
|
758
|
|
|
// Report .eading. |
|
759
|
|
|
WP_CLI::warning( 'We did not find any Give plugin cache to delete :)' ); |
|
760
|
|
|
} |
|
761
|
|
|
break; |
|
762
|
|
|
} |
|
763
|
|
|
|
|
764
|
|
|
} |
|
765
|
|
|
|
|
766
|
|
|
/** |
|
767
|
|
|
* Delete all form stat transient |
|
768
|
|
|
* |
|
769
|
|
|
* @since 1.7 |
|
770
|
|
|
* @access private |
|
771
|
|
|
* |
|
772
|
|
|
* @return bool |
|
773
|
|
|
*/ |
|
774
|
|
|
private function delete_stats_transients() { |
|
775
|
|
|
global $wpdb; |
|
776
|
|
|
|
|
777
|
|
|
$stat_option_names = $wpdb->get_results( |
|
|
|
|
|
|
778
|
|
|
$wpdb->prepare( |
|
779
|
|
|
"SELECT option_name FROM {$wpdb->options} where (option_name LIKE '%%%s%%' OR option_name LIKE '%%%s%%')", |
|
780
|
|
|
array( |
|
781
|
|
|
'_transient_give_stats_', |
|
782
|
|
|
'give_cache', |
|
783
|
|
|
) |
|
784
|
|
|
), |
|
785
|
|
|
ARRAY_A |
|
786
|
|
|
); |
|
787
|
|
|
|
|
788
|
|
|
if ( ! empty( $stat_option_names ) ) { |
|
789
|
|
|
|
|
790
|
|
|
foreach ( $stat_option_names as $option_name ) { |
|
791
|
|
|
$error = false; |
|
|
|
|
|
|
792
|
|
|
$option_name = $option_name['option_name']; |
|
793
|
|
|
|
|
794
|
|
View Code Duplication |
switch ( true ) { |
|
|
|
|
|
|
795
|
|
|
case ( false !== strpos( $option_name, 'transient' ) ): |
|
796
|
|
|
$option_name = str_replace( '_transient_', '', $option_name ); |
|
797
|
|
|
$error = delete_transient( $option_name ); |
|
798
|
|
|
break; |
|
799
|
|
|
|
|
800
|
|
|
default: |
|
801
|
|
|
$error = delete_option( $option_name ); |
|
802
|
|
|
} |
|
803
|
|
|
|
|
804
|
|
|
if ( $error ) { |
|
805
|
|
|
WP_CLI::log( $this->color_message( self::$counter, $option_name ) ); |
|
806
|
|
|
self::$counter ++; |
|
807
|
|
|
} else { |
|
808
|
|
|
WP_CLI::log( $this->color_message( __( 'Error while deleting this transient', 'give' ), $option_name ) ); |
|
809
|
|
|
} |
|
810
|
|
|
} |
|
811
|
|
|
|
|
812
|
|
|
return true; |
|
813
|
|
|
} |
|
814
|
|
|
|
|
815
|
|
|
return false; |
|
816
|
|
|
} |
|
817
|
|
|
|
|
818
|
|
|
|
|
819
|
|
|
/** |
|
820
|
|
|
* Return colored message |
|
821
|
|
|
* |
|
822
|
|
|
* @param string $heading Message heading. |
|
823
|
|
|
* @param string $message Message content. |
|
824
|
|
|
* @param bool $colon Check if add colon between heading and message. |
|
825
|
|
|
* @param string $color Heading color. |
|
826
|
|
|
* |
|
827
|
|
|
* @return string |
|
828
|
|
|
*/ |
|
829
|
|
|
private function color_message( $heading, $message = '', $colon = true, $color = 'g' ) { |
|
830
|
|
|
// Add colon. |
|
831
|
|
|
if ( $colon ) { |
|
832
|
|
|
$heading = $heading . ': '; |
|
833
|
|
|
} |
|
834
|
|
|
|
|
835
|
|
|
return WP_CLI::colorize( "%{$color}" . $heading . '%n' ) . $message; |
|
836
|
|
|
} |
|
837
|
|
|
|
|
838
|
|
|
|
|
839
|
|
|
/** |
|
840
|
|
|
* Output section heading. |
|
841
|
|
|
* |
|
842
|
|
|
* @since 1.7 |
|
843
|
|
|
* @access private |
|
844
|
|
|
* |
|
845
|
|
|
* @param string $heading Heading. |
|
846
|
|
|
* @param string $color Color. |
|
847
|
|
|
* |
|
848
|
|
|
* @return void |
|
849
|
|
|
*/ |
|
850
|
|
|
private function color_main_heading( $heading, $color = 'g' ) { |
|
851
|
|
|
WP_CLI::log( "\n###### " . $this->color_message( $heading, '', false, $color ) . ' ######' ); |
|
852
|
|
|
} |
|
853
|
|
|
|
|
854
|
|
|
/** |
|
855
|
|
|
* Output section sub heading. |
|
856
|
|
|
* |
|
857
|
|
|
* @since 1.7 |
|
858
|
|
|
* @access private |
|
859
|
|
|
* |
|
860
|
|
|
* @param string $subheading Sub heading. |
|
861
|
|
|
* |
|
862
|
|
|
* @return void |
|
863
|
|
|
*/ |
|
864
|
|
|
private function color_sub_heading( $subheading ) { |
|
865
|
|
|
WP_CLI::log( "\n--->" . $subheading . '', '', false ); |
|
866
|
|
|
} |
|
867
|
|
|
|
|
868
|
|
|
|
|
869
|
|
|
/** |
|
870
|
|
|
* Display data in table format. |
|
871
|
|
|
* |
|
872
|
|
|
* @since 1.7 |
|
873
|
|
|
* @access private |
|
874
|
|
|
* |
|
875
|
|
|
* @param array $data Array of table data. |
|
876
|
|
|
* |
|
877
|
|
|
* @return void |
|
878
|
|
|
*/ |
|
879
|
|
|
private function display_table( $data ) { |
|
880
|
|
|
$table = new \cli\Table(); |
|
881
|
|
|
|
|
882
|
|
|
// Set table header. |
|
883
|
|
|
$table->setHeaders( $data[0] ); |
|
884
|
|
|
|
|
885
|
|
|
// Remove table header. |
|
886
|
|
|
unset( $data[0] ); |
|
887
|
|
|
|
|
888
|
|
|
// Set table data. |
|
889
|
|
|
$table->setRows( $data ); |
|
890
|
|
|
|
|
891
|
|
|
// Display table. |
|
892
|
|
|
$table->display(); |
|
893
|
|
|
} |
|
894
|
|
|
|
|
895
|
|
|
|
|
896
|
|
|
/** |
|
897
|
|
|
* Get donors by form id. |
|
898
|
|
|
* |
|
899
|
|
|
* @since 1.8 |
|
900
|
|
|
* |
|
901
|
|
|
* @param int $form_id From id. |
|
902
|
|
|
* |
|
903
|
|
|
* @return array |
|
904
|
|
|
*/ |
|
905
|
|
|
|
|
906
|
|
|
private function get_donors_by_form_id( $form_id ) { |
|
907
|
|
|
$donors = array(); |
|
908
|
|
|
|
|
909
|
|
|
$donations = new Give_Payments_Query( |
|
910
|
|
|
array( |
|
911
|
|
|
'give_forms' => array( $form_id ), |
|
912
|
|
|
'number' => - 1, |
|
913
|
|
|
'status' => array( 'publish' ), |
|
914
|
|
|
) |
|
915
|
|
|
); |
|
916
|
|
|
|
|
917
|
|
|
$donations = $donations->get_payments(); |
|
918
|
|
|
$skip_donors = array(); |
|
919
|
|
|
|
|
920
|
|
|
/* @var Give_Payment|object $donation Payment object. */ |
|
921
|
|
|
foreach ( $donations as $donation ) { |
|
922
|
|
|
|
|
923
|
|
|
if ( in_array( $donation->customer_id, $skip_donors, true ) ) { |
|
924
|
|
|
continue; |
|
925
|
|
|
} |
|
926
|
|
|
|
|
927
|
|
|
if ( ! empty( $donors ) ) { |
|
928
|
|
|
$donors['donors'][] = current( current( $this->api->get_donors( (int) $donation->customer_id ) ) ); |
|
929
|
|
|
} else { |
|
930
|
|
|
$donors = array_merge( $donors, $this->api->get_donors( (int) $donation->customer_id ) ); |
|
931
|
|
|
} |
|
932
|
|
|
|
|
933
|
|
|
$skip_donors[] = $donation->customer_id; |
|
934
|
|
|
} |
|
935
|
|
|
|
|
936
|
|
|
return $donors; |
|
937
|
|
|
} |
|
938
|
|
|
|
|
939
|
|
|
/** |
|
940
|
|
|
* Get random user name |
|
941
|
|
|
* |
|
942
|
|
|
* @since 1.8.17 |
|
943
|
|
|
* @return string |
|
944
|
|
|
*/ |
|
945
|
|
|
private function get_random_name() { |
|
946
|
|
|
// First names. |
|
947
|
|
|
$names = array( |
|
948
|
|
|
'Devin', |
|
949
|
|
|
'Christopher', |
|
950
|
|
|
'Ryan', |
|
951
|
|
|
'Ethan', |
|
952
|
|
|
'John', |
|
953
|
|
|
'Zoey', |
|
954
|
|
|
'Sarah', |
|
955
|
|
|
'Michelle', |
|
956
|
|
|
'Samantha', |
|
957
|
|
|
); |
|
958
|
|
|
|
|
959
|
|
|
// Surnames. |
|
960
|
|
|
$surnames = array( |
|
961
|
|
|
'Walker', |
|
962
|
|
|
'Josh', |
|
963
|
|
|
'Thompson', |
|
964
|
|
|
'Anderson', |
|
965
|
|
|
'Johnson', |
|
966
|
|
|
'Tremblay', |
|
967
|
|
|
'Peltier', |
|
968
|
|
|
'Cunningham', |
|
969
|
|
|
'Simpson', |
|
970
|
|
|
'Mercado', |
|
971
|
|
|
'Sellers', |
|
972
|
|
|
); |
|
973
|
|
|
|
|
974
|
|
|
// Generate a random forename. |
|
975
|
|
|
$random_name = $names[ mt_rand( 0, sizeof( $names ) - 1 ) ]; |
|
976
|
|
|
|
|
977
|
|
|
// Generate a random surname. |
|
978
|
|
|
$random_surname = $surnames[ mt_rand( 0, sizeof( $surnames ) - 1 ) ]; |
|
979
|
|
|
|
|
980
|
|
|
// Generate name. |
|
981
|
|
|
$name = "{$random_name} {$random_surname}"; |
|
982
|
|
|
|
|
983
|
|
|
if ( in_array( $name, $this->new_donor_names ) ) { |
|
984
|
|
|
$name = $this->get_random_name(); |
|
985
|
|
|
} |
|
986
|
|
|
|
|
987
|
|
|
// Collect new donor names. |
|
988
|
|
|
$this->new_donor_names[] = $name; |
|
989
|
|
|
|
|
990
|
|
|
return $name; |
|
991
|
|
|
} |
|
992
|
|
|
|
|
993
|
|
|
/** |
|
994
|
|
|
* Get random email |
|
995
|
|
|
* |
|
996
|
|
|
* @since 1.8.17 |
|
997
|
|
|
* |
|
998
|
|
|
* @param string $name |
|
999
|
|
|
* |
|
1000
|
|
|
* @return string |
|
1001
|
|
|
*/ |
|
1002
|
|
|
private function get_random_email( $name ) { |
|
1003
|
|
|
return implode( '.', explode( ' ', strtolower( $name ) ) ) . '@gmail.com'; |
|
1004
|
|
|
} |
|
1005
|
|
|
} |
|
1006
|
|
|
|
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.