Completed
Pull Request — dev/2.5.0 (#244)
by Sudar
15:53 queued 09:51
created

TableManager::get_logs_count()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 0
loc 6
ccs 0
cts 4
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php namespace EmailLog\Core\DB;
2
3
/**
4
 * Handle installation and db table creation.
5
 */
6
use EmailLog\Core\Loadie;
7
use EmailLog\Util;
8
9
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
10
11
/**
12
 * Helper class to create table.
13
 *
14
 * @since 2.0.0
15
 */
16
class TableManager implements Loadie {
17
18
	/* Database table name */
19
	const LOG_TABLE_NAME = 'email_log';
20
21
	/* Database option name */
22
	const DB_OPTION_NAME = 'email-log-db';
23
24
	/* Database version */
25
	const DB_VERSION = '0.3';
26
27
	/**
28
	 * Setup hooks.
29
	 */
30
	public function load() {
31
		add_action( 'wpmu_new_blog', array( $this, 'create_table_for_new_blog' ) );
32
33
		add_filter( 'wpmu_drop_tables', array( $this, 'delete_table_from_deleted_blog' ) );
34
35
		// Do any DB upgrades.
36
		$this->update_table_if_needed();
37
	}
38
39
	/**
40
	 * On plugin activation, create table if needed.
41
	 *
42
	 * @param bool $network_wide True if the plugin was network activated.
43
	 */
44
	public function on_activate( $network_wide ) {
45
		if ( is_multisite() && $network_wide ) {
46
			// Note: if there are more than 10,000 blogs or
47
			// if `wp_is_large_network` filter is set, then this may fail.
48
			$sites = get_sites();
49
50
			foreach ( $sites as $site ) {
51
				switch_to_blog( $site->blog_id );
52
				$this->create_table_if_needed();
53
				restore_current_blog();
54
			}
55
		} else {
56
			$this->create_table_if_needed();
57
		}
58
	}
59
60
	/**
61
	 * Create email log table when a new blog is created.
62
	 *
63
	 * @param int $blog_id Blog Id.
64
	 */
65
	public function create_table_for_new_blog( $blog_id ) {
66
		if ( is_plugin_active_for_network( 'email-log/email-log.php' ) ) {
67
			switch_to_blog( $blog_id );
68
			$this->create_table_if_needed();
69
			restore_current_blog();
70
		}
71
	}
72
73
	/**
74
	 * Add email log table to the list of tables deleted when a blog is deleted.
75
	 *
76
	 * @param array $tables List of tables to be deleted.
77
	 *
78
	 * @return string[] $tables Modified list of tables to be deleted.
79
	 */
80 1
	public function delete_table_from_deleted_blog( $tables ) {
81 1
		$tables[] = $this->get_log_table_name();
82
83 1
		return $tables;
84
	}
85
86
	/**
87
	 * Get email log table name.
88
	 *
89
	 * @return string Email Log Table name.
90
	 */
91 2
	public function get_log_table_name() {
92 2
		global $wpdb;
93
94 2
		return $wpdb->prefix . self::LOG_TABLE_NAME;
95
	}
96
97
	/**
98
	 * Insert log data into DB.
99
	 *
100
	 * @param array $data Data to be inserted.
101
	 */
102
	public function insert_log( $data ) {
103
		global $wpdb;
104
105
		$table_name = $this->get_log_table_name();
106
		$wpdb->insert( $table_name, $data );
107
	}
108
109
	/**
110
	 * Delete log entries by ids.
111
	 *
112
	 * @param string $ids Comma separated list of log ids.
113
	 *
114
	 * @return false|int Number of log entries that got deleted. False on failure.
115
	 */
116
	public function delete_logs( $ids ) {
117
		global $wpdb;
118
119
		$table_name = $this->get_log_table_name();
120
121
		// Can't use wpdb->prepare for the below query. If used it results in this bug // https://github.com/sudar/email-log/issues/13.
122
		$ids = esc_sql( $ids );
123
124
		return $wpdb->query( "DELETE FROM {$table_name} where id IN ( {$ids} )" ); //@codingStandardsIgnoreLine
125
	}
126
127
	/**
128
	 * Delete all log entries.
129
	 *
130
	 * @return false|int Number of log entries that got deleted. False on failure.
131
	 */
132
	public function delete_all_logs() {
133
		global $wpdb;
134
135
		$table_name = $this->get_log_table_name();
136
137
		return $wpdb->query( "DELETE FROM {$table_name}" ); //@codingStandardsIgnoreLine
138
	}
139
140
	/**
141
	 * Deletes Email Logs older than the specified interval.
142
	 *
143
	 * @param int $interval_in_days No. of days beyond which logs are to be deleted.
144
	 *
145
	 * @return int $deleted_rows_count  Count of rows deleted.
146
	 */
147
	public function delete_logs_older_than( $interval_in_days ) {
148
		global $wpdb;
149
		$table_name = $this->get_log_table_name();
150
151
		$query              = $wpdb->prepare( "DELETE FROM {$table_name} WHERE sent_date < DATE_SUB( CURDATE(), INTERVAL %d DAY )", $interval_in_days );
152
		$deleted_rows_count = $wpdb->query( $query );
153
154
		return $deleted_rows_count;
155
	}
156
157
	/**
158
	 * Fetch log item by ID.
159
	 *
160
	 * @param array $ids             Optional. Array of IDs of the log items to be retrieved.
161
	 * @param array $additional_args {
162
	 *                               Optional. Array of additional args.
163
	 *
164
	 * @type string $date_column_format MySQL date column format. Refer
165
	 *
166
	 * @link  https://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_date-format
167
	 * @type int $current_page_no    Current Page number.
168
	 * @type int $per_page           Per Page count.
169
	 *           }
170
	 *
171
	 * @return array Log item(s).
172
	 */
173
	public function fetch_log_items_by_id( $ids = array(), $additional_args = array() ) {
174
		global $wpdb;
175
		$table_name      = $this->get_log_table_name();
176
		$current_page_no = Util\el_array_get( $additional_args, 'current_page_no', false );
0 ignored issues
show
Bug introduced by
The function el_array_get was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

176
		$current_page_no = /** @scrutinizer ignore-call */ Util\el_array_get( $additional_args, 'current_page_no', false );
Loading history...
177
		$per_page        = Util\el_array_get( $additional_args, 'per_page', false );
178
179
		$query = "SELECT * FROM {$table_name}";
180
181
		// When `date_column_format` exists, should replace the `$query` var.
182
		$date_column_format_key = 'date_column_format';
183
		if ( array_key_exists( $date_column_format_key, $additional_args ) && ! empty( $additional_args[ $date_column_format_key ] ) ) {
184
			$query = "SELECT DATE_FORMAT(sent_date, \"{$additional_args[ $date_column_format_key ]}\") as sent_date_custom, el.* FROM {$table_name} as el";
185
		}
186
187
		if ( ! empty( $ids ) ) {
188
			$ids = array_map( 'absint', $ids );
189
190
			// Can't use wpdb->prepare for the below query. If used it results in this bug https://github.com/sudar/email-log/issues/13.
191
			$ids_list = esc_sql( implode( ',', $ids ) );
192
193
			$query .= " where id IN ( {$ids_list} )";
194
		}
195
196
		// Ordering parameters.
197
		$orderby = ! empty( $additional_args['orderby'] ) ? esc_sql( $additional_args['orderby'] ) : 'sent_date';
198
		$order   = ! empty( $additional_args['order'] ) ? esc_sql( $additional_args['order'] ) : 'DESC';
199
200
		$query .= " ORDER BY {$orderby} {$order}";
201
202
		// Adjust the query to take pagination into account.
203
		if ( ! empty( $current_page_no ) && ! empty( $per_page ) ) {
204
			$offset = ( $current_page_no - 1 ) * $per_page;
205
			$query .= ' LIMIT ' . (int) $offset . ',' . (int) $per_page;
206
		}
207
		error_log( '$query' . $query );
208
		if ( ! empty( $additional_args['output_type'] )
209
		     && in_array( $additional_args['output_type'], array(
210
				OBJECT,
211
				OBJECT_K,
212
				ARRAY_A,
213
				ARRAY_N,
214
			) ) ) {
215
			return $wpdb->get_results( $query, $additional_args['output_type'] );
216
		}
217
218
		return $wpdb->get_results( $query, 'ARRAY_A' ); //@codingStandardsIgnoreLine
219
	}
220
221
	/**
222
	 * Fetch log items.
223
	 *
224
	 * @since 2.3.0 Implemented Advanced Search. Search queries could look like the following.
225
	 *              Example:
226
	 *              id: 2
227
	 *              to: [email protected]
228
	 *
229
	 * @param array $request         Request object.
230
	 * @param int   $per_page        Entries per page.
231
	 * @param int   $current_page_no Current page no.
232
	 *
233
	 * @return array Log entries and total items count.
234
	 */
235
	public function fetch_log_items( $request, $per_page, $current_page_no ) {
236
		global $wpdb;
237
		$table_name = $this->get_log_table_name();
238
239
		$query       = 'SELECT * FROM ' . $table_name;
240
		$count_query = 'SELECT count(*) FROM ' . $table_name;
241
		$query_cond  = '';
242
243
		if ( isset( $request['s'] ) && is_string( $request['s'] ) && $request['s'] !== '' ) {
244
			$search_term = trim( esc_sql( $request['s'] ) );
0 ignored issues
show
Bug introduced by
It seems like esc_sql($request['s']) can also be of type array; however, parameter $str of trim() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

244
			$search_term = trim( /** @scrutinizer ignore-type */ esc_sql( $request['s'] ) );
Loading history...
245
246
			if ( Util\is_advanced_search_term( $search_term ) ) {
0 ignored issues
show
Bug introduced by
The function is_advanced_search_term was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

246
			if ( /** @scrutinizer ignore-call */ Util\is_advanced_search_term( $search_term ) ) {
Loading history...
247
				$predicates = Util\get_advanced_search_term_predicates( $search_term );
0 ignored issues
show
Bug introduced by
The function get_advanced_search_term_predicates was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

247
				$predicates = /** @scrutinizer ignore-call */ Util\get_advanced_search_term_predicates( $search_term );
Loading history...
248
249
				foreach ( $predicates as $column => $email ) {
250
					switch ( $column ) {
251
						case 'id':
252
							$query_cond .= empty( $query_cond ) ? ' WHERE ' : ' AND ';
253
							$query_cond .= "id = '$email'";
254
							break;
255
						case 'to':
256
							$query_cond .= empty( $query_cond ) ? ' WHERE ' : ' AND ';
257
							$query_cond .= "to_email LIKE '%$email%'";
258
							break;
259
						case 'email':
260
							$query_cond .= empty( $query_cond ) ? ' WHERE ' : ' AND ';
261
							$query_cond .= ' ( '; /* Begin 1st */
262
							$query_cond .= " ( to_email LIKE '%$email%' OR subject LIKE '%$email%' ) "; /* Begin 2nd & End 2nd */
263
							$query_cond .= ' OR ';
264
							$query_cond .= ' ( '; /* Begin 3rd */
265
							$query_cond .= "headers <> ''";
266
							$query_cond .= ' AND ';
267
							$query_cond .= ' ( '; /* Begin 4th */
268
							$query_cond .= "headers REGEXP '[F|f]rom:.*$email' OR ";
269
							$query_cond .= "headers REGEXP '[CC|Cc|cc]:.*$email' OR ";
270
							$query_cond .= "headers REGEXP '[BCC|Bcc|bcc]:.*$email' OR ";
271
							$query_cond .= "headers REGEXP '[R|r]eply-[T|t]o:.*$email'";
272
							$query_cond .= ' ) '; /* End 4th */
273
							$query_cond .= ' ) '; /* End 3rd */
274
							$query_cond .= ' ) '; /* End 1st */
275
							break;
276
						case 'cc':
277
							$query_cond .= empty( $query_cond ) ? ' WHERE ' : ' AND ';
278
							$query_cond .= ' ( '; /* Begin 1st */
279
							$query_cond .= "headers <> ''";
280
							$query_cond .= ' AND ';
281
							$query_cond .= ' ( '; /* Begin 2nd */
282
							$query_cond .= "headers REGEXP '[CC|Cc|cc]:.*$email' ";
283
							$query_cond .= ' ) '; /* End 2nd */
284
							$query_cond .= ' ) '; /* End 1st */
285
							break;
286
						case 'bcc':
287
							$query_cond .= empty( $query_cond ) ? ' WHERE ' : ' AND ';
288
							$query_cond .= ' ( '; /* Begin 1st */
289
							$query_cond .= "headers <> ''";
290
							$query_cond .= ' AND ';
291
							$query_cond .= ' ( '; /* Begin 2nd */
292
							$query_cond .= "headers REGEXP '[BCC|Bcc|bcc]:.*$email' ";
293
							$query_cond .= ' ) '; /* End 2nd */
294
							$query_cond .= ' ) '; /* End 1st */
295
							break;
296
						case 'reply-to':
297
							$query_cond .= empty( $query_cond ) ? ' WHERE ' : ' AND ';
298
							$query_cond .= ' ( '; /* Begin 1st */
299
							$query_cond .= "headers <> ''";
300
							$query_cond .= ' AND ';
301
							$query_cond .= ' ( '; /* Begin 2nd */
302
							$query_cond .= "headers REGEXP '[R|r]eply-to:.*$email' ";
303
							$query_cond .= ' ) '; /* End 2nd */
304
							$query_cond .= ' ) '; /* End 1st */
305
							break;
306
					}
307
				}
308
			} else {
309
				$query_cond .= " WHERE ( to_email LIKE '%$search_term%' OR subject LIKE '%$search_term%' ) ";
310
			}
311
		}
312
313
		if ( isset( $request['d'] ) && $request['d'] !== '' ) {
314
			$search_date = trim( esc_sql( $request['d'] ) );
315
			if ( '' === $query_cond ) {
316
				$query_cond .= " WHERE sent_date BETWEEN '$search_date 00:00:00' AND '$search_date 23:59:59' ";
317
			} else {
318
				$query_cond .= " AND sent_date BETWEEN '$search_date 00:00:00' AND '$search_date 23:59:59' ";
319
			}
320
		}
321
322
		// Ordering parameters.
323
		$orderby = ! empty( $request['orderby'] ) ? esc_sql( $request['orderby'] ) : 'sent_date';
324
		$order   = ! empty( $request['order'] ) ? esc_sql( $request['order'] ) : 'DESC';
325
326
		if ( ! empty( $orderby ) & ! empty( $order ) ) {
0 ignored issues
show
Bug introduced by
Are you sure you want to use the bitwise & or did you mean &&?
Loading history...
327
			$query_cond .= ' ORDER BY ' . $orderby . ' ' . $order;
0 ignored issues
show
Bug introduced by
Are you sure $orderby of type array|string can be used in concatenation? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

327
			$query_cond .= ' ORDER BY ' . /** @scrutinizer ignore-type */ $orderby . ' ' . $order;
Loading history...
Bug introduced by
Are you sure $order of type array|string can be used in concatenation? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

327
			$query_cond .= ' ORDER BY ' . $orderby . ' ' . /** @scrutinizer ignore-type */ $order;
Loading history...
328
		}
329
330
		// Find total number of items.
331
		$count_query = $count_query . $query_cond;
332
		$total_items = $wpdb->get_var( $count_query );
333
334
		// Adjust the query to take pagination into account.
335
		if ( ! empty( $current_page_no ) && ! empty( $per_page ) ) {
336
			$offset     = ( $current_page_no - 1 ) * $per_page;
337
			$query_cond .= ' LIMIT ' . (int) $offset . ',' . (int) $per_page;
338
		}
339
340
		// Fetch the items.
341
		$query = $query . $query_cond;
342
		$items = $wpdb->get_results( $query );
343
344
		return array( $items, $total_items );
345
	}
346
347
	/**
348
	 * Create email log table.
349
	 *
350
	 * @global object $wpdb
351
	 */
352
	public function create_table_if_needed() {
353
		global $wpdb;
354
355
		$table_name = $this->get_log_table_name();
356
357
		if ( $wpdb->get_var( "show tables like '{$table_name}'" ) != $table_name ) {
358
359
			$sql = $this->get_create_table_query();
360
361
			require_once ABSPATH . 'wp-admin/includes/upgrade.php';
362
			dbDelta( $sql );
363
364
			add_option( self::DB_OPTION_NAME, self::DB_VERSION );
365
		}
366
	}
367
368
	/**
369
	 * Get the total number of email logs.
370
	 *
371
	 * @return int Total email log count
372
	 */
373
	public function get_logs_count() {
374
		global $wpdb;
375
376
		$query = 'SELECT count(*) FROM ' . $this->get_log_table_name();
377
378
		return $wpdb->get_var( $query );
379
	}
380
381
	/**
382
	 * Fetches the log id by item data.
383
	 *
384
	 * Use this method to get the log item id when the error instance only returns the log item data.
385
	 *
386
	 * @param array        $data Array of Email information {
387
	 * @type  array|string to
388
	 * @type  string       subject
389
	 * @type  string       message
390
	 * @type  array|string headers
391
	 * @type  array|string attachments
392
	 *                          }
393
	 *
394
	 * @return int Log item id.
395
	 */
396
	public function fetch_log_id_by_data( $data ) {
397
		if ( empty( $data ) || ! is_array( $data ) ) {
398
			return 0;
399
		}
400
401
		global $wpdb;
402
		$table_name = $this->get_log_table_name();
403
404
		$query      = "SELECT ID FROM {$table_name}";
405
		$query_cond = '';
406
		$where      = array();
407
408
		// Execute the following `if` conditions only when $data is array.
409
		if ( array_key_exists( 'to', $data ) ) {
410
			// Since the value is stored as CSV in DB, convert the values from error data to CSV to compare.
411
			$to_email = Util\stringify( $data['to'] );
0 ignored issues
show
Bug introduced by
The function stringify was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

411
			$to_email = /** @scrutinizer ignore-call */ Util\stringify( $data['to'] );
Loading history...
412
413
			$to_email = trim( esc_sql( $to_email ) );
0 ignored issues
show
Bug introduced by
It seems like esc_sql($to_email) can also be of type array; however, parameter $str of trim() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

413
			$to_email = trim( /** @scrutinizer ignore-type */ esc_sql( $to_email ) );
Loading history...
414
			$where[]  = "to_email = '$to_email'";
415
		}
416
417
		if ( array_key_exists( 'subject', $data ) ) {
418
			$subject = trim( esc_sql( $data['subject'] ) );
419
			$where[] = "subject = '$subject'";
420
		}
421
422
		if ( array_key_exists( 'attachments', $data ) ) {
423
			if ( is_array( $data['attachments'] ) ) {
424
				$attachments = count( $data['attachments'] ) > 0 ? 'true' : 'false';
425
			} else {
426
				$attachments = empty( $data['attachments'] ) ? 'false' : 'true';
427
			}
428
			$attachments = trim( esc_sql( $attachments ) );
429
			$where[]     = "attachments = '$attachments'";
430
		}
431
432
		foreach ( $where as $index => $value ) {
433
			$query_cond .= 0 === $index ? ' WHERE ' : ' AND ';
434
			$query_cond .= $value;
435
		}
436
437
		// Get only the latest logged item when multiple rows match.
438
		$query_cond .= ' ORDER BY id DESC LIMIT 1';
439
440
		$query = $query . $query_cond;
441
442
		return absint( $wpdb->get_var( $query ) );
443
	}
444
445
	/**
446
	 * Sets email sent status and error message for the given log item when email fails.
447
	 *
448
	 * @param int    $log_item_id ID of the log item whose email sent status should be set to failed.
449
	 * @param string $message     Error message.
450
	 *
451
	 * @since 2.4.0 Include error message during update.
452
	 * @since 2.3.0
453
	 *
454
	 * @global \wpdb $wpdb
455
	 *
456
	 * @see  TableManager::get_log_table_name()
457
	 */
458
	public function mark_log_as_failed( $log_item_id, $message ) {
459
		global $wpdb;
460
		$table_name = $this->get_log_table_name();
461
462
		$wpdb->update(
463
			$table_name,
464
			array(
465
				'result'        => '0',
466
				'error_message' => $message,
467
			),
468
			array( 'ID' => $log_item_id ),
469
			array(
470
				'%d', // `result` format.
471
				'%s', // `error_message` format.
472
			),
473
			array(
474
				'%d', // `ID` format.
475
			)
476
		);
477
	}
478
479
	/**
480
	 * Updates the DB schema.
481
	 *
482
	 * Adds new columns to the Database as of v0.2.
483
	 *
484
	 * @since 2.3.0
485
	 */
486
	private function update_table_if_needed() {
487
		if ( get_option( self::DB_OPTION_NAME, false ) === self::DB_VERSION ) {
488
			return;
489
		}
490
491
		$sql = $this->get_create_table_query();
492
493
		require_once ABSPATH . 'wp-admin/includes/upgrade.php';
494
		dbDelta( $sql );
495
496
		update_option( self::DB_OPTION_NAME, self::DB_VERSION );
497
	}
498
499
	/**
500
	 * Gets the Create Table query.
501
	 *
502
	 * @since 2.4.0 Added error_message column.
503
	 * @since 2.3.0
504
	 *
505
	 * @return string
506
	 */
507
	private function get_create_table_query() {
508
		global $wpdb;
509
		$table_name      = $this->get_log_table_name();
510
		$charset_collate = $wpdb->get_charset_collate();
511
512
		$sql = 'CREATE TABLE ' . $table_name . ' (
513
				id mediumint(9) NOT NULL AUTO_INCREMENT,
514
				to_email VARCHAR(500) NOT NULL,
515
				subject VARCHAR(500) NOT NULL,
516
				message TEXT NOT NULL,
517
				headers TEXT NOT NULL,
518
				attachments TEXT NOT NULL,
519
				sent_date timestamp NOT NULL,
520
				attachment_name VARCHAR(1000),
521
				ip_address VARCHAR(15),
522
				result TINYINT(1),
523
				error_message VARCHAR(1000),
524
				PRIMARY KEY  (id)
525
			) ' . $charset_collate . ';';
526
527
		return $sql;
528
	}
529
530
	/**
531
	 * Callback for the Array filter.
532
	 *
533
	 * @since 2.3.0
534
	 *
535
	 * @param string $column A column from the array Columns.
536
	 *
537
	 * @return bool
538
	 */
539
	private function validate_columns( $column ) {
540
		return in_array( $column, array( 'to' ), true );
541
	}
542
543
	/**
544
	 * Query log items by column.
545
	 *
546
	 * @since 2.3.0
547
	 *
548
	 * @param array $columns Key value pair based on which items should be retrieved.
549
	 *
550
	 * @uses \EmailLog\Core\DB\TableManager::validate_columns()
551
	 *
552
	 * @return array|object|null
553
	 */
554
	public function query_log_items_by_column( $columns ) {
555
		if ( ! is_array( $columns ) ) {
0 ignored issues
show
introduced by
The condition is_array($columns) is always true.
Loading history...
556
			return;
557
		}
558
559
		// Since we support PHP v5.2.4, we cannot use ARRAY_FILTER_USE_KEY
560
		// TODO: PHP v5.5: Once WordPress updates minimum PHP version to v5.5, start using ARRAY_FILTER_USE_KEY.
561
		$columns_keys = array_keys( $columns );
562
		if ( ! array_filter( $columns_keys, array( $this, 'validate_columns' ) ) ) {
563
			return;
564
		}
565
566
		global $wpdb;
567
568
		$table_name = $this->get_log_table_name();
569
		$query      = "SELECT id, sent_date, to_email, subject FROM {$table_name}";
570
		$query_cond = '';
571
		$where      = array();
572
573
		// Execute the following `if` conditions only when $data is array.
574
		if ( array_key_exists( 'to', $columns ) ) {
575
			// Since the value is stored as CSV in DB, convert the values from error data to CSV to compare.
576
			$to_email = Util\stringify( $columns['to'] );
0 ignored issues
show
Bug introduced by
The function stringify was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

576
			$to_email = /** @scrutinizer ignore-call */ Util\stringify( $columns['to'] );
Loading history...
577
578
			$to_email = trim( esc_sql( $to_email ) );
0 ignored issues
show
Bug introduced by
It seems like esc_sql($to_email) can also be of type array; however, parameter $str of trim() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

578
			$to_email = trim( /** @scrutinizer ignore-type */ esc_sql( $to_email ) );
Loading history...
579
			$where[]  = "to_email = '$to_email'";
580
581
			foreach ( $where as $index => $value ) {
582
				$query_cond .= 0 === $index ? ' WHERE ' : ' AND ';
583
				$query_cond .= $value;
584
			}
585
586
			// Get only the latest logged item when multiple rows match.
587
			$query_cond .= ' ORDER BY id DESC';
588
589
			$query = $query . $query_cond;
590
591
			return $wpdb->get_results( $query );
592
		}
593
	}
594
}
595