/var/www/html_us/wp-content/plugins/woocommerce/src/StoreApi/Utilities/ProductQuery.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
<?php
namespace Automattic\WooCommerce\StoreApi\Utilities;

use 
Automattic\WooCommerce\Enums\ProductStatus;
use 
Automattic\WooCommerce\Enums\ProductType;
use 
WC_Tax;

/**
 * Product Query class.
 *
 * Helper class to handle product queries for the API.
 */
class ProductQuery {
    
/**
     * Prepare query args to pass to WP_Query for a REST API request.
     *
     * @param \WP_REST_Request $request Request data.
     * @return array
     */
    
public function prepare_objects_query$request ) {
        
$args = array(
            
'offset'              => $request['offset'],
            
'order'               => $request['order'],
            
'orderby'             => $request['orderby'],
            
'paged'               => $request['page'],
            
'post__in'            => $request['include'],
            
'post__not_in'        => $request['exclude'],
            
'posts_per_page'      => $request['per_page'] ? $request['per_page'] : -1,
            
'post_parent__in'     => $request['parent'],
            
'post_parent__not_in' => $request['parent_exclude'],
            
'search'              => $request['search'], // This uses search rather than s intentionally to handle searches internally.
            
'slug'                => $request['slug'],
            
'fields'              => 'ids',
            
'ignore_sticky_posts' => true,
            
'post_status'         => ProductStatus::PUBLISH,
            
'date_query'          => array(),
            
'post_type'           => 'product',
        );

        
// If searching for a specific SKU or slug, allow any post type.
        
if ( ! empty( $request['sku'] ) || ! empty( $request['slug'] ) ) {
            
$args['post_type'] = array( 'product''product_variation' );
        }

        
// Taxonomy query to filter products by type, category, tag, shipping class, and attribute.
        
$tax_query = array();

        
// Filter product type by slug.
        
if ( ! empty( $request['type'] ) ) {
            if ( 
ProductType::VARIATION === $request['type'] ) {
                
$args['post_type'] = 'product_variation';
            } else {
                
$args['post_type'] = 'product';
                
$tax_query[]       = array(
                    
'taxonomy' => 'product_type',
                    
'field'    => 'slug',
                    
'terms'    => $request['type'],
                );
            }
        }

        if ( 
'date' === $args['orderby'] ) {
            
$args['orderby'] = 'date ID';
        }

        
// Set before into date query. Date query must be specified as an array of an array.
        
if ( isset( $request['before'] ) ) {
            
$args['date_query'][0]['before'] = $request['before'];
        }

        
// Set after into date query. Date query must be specified as an array of an array.
        
if ( isset( $request['after'] ) ) {
            
$args['date_query'][0]['after'] = $request['after'];
        }

        
// Set date query column. Defaults to post_date.
        
if ( isset( $request['date_column'] ) && ! empty( $args['date_query'][0] ) ) {
            
$args['date_query'][0]['column'] = 'post_' $request['date_column'];
        }

        
// Set custom args to handle later during clauses.
        
$custom_keys = array(
            
'sku',
            
'min_price',
            
'max_price',
            
'stock_status',
        );

        foreach ( 
$custom_keys as $key ) {
            if ( ! empty( 
$request$key ] ) ) {
                
$args$key ] = $request$key ];
            }
        }

        
$operator_mapping = array(
            
'in'     => 'IN',
            
'not_in' => 'NOT IN',
            
'and'    => 'AND',
        );

        
// Gets all registered product taxonomies and prefixes them with `tax_`.
        // This is needed to avoid situations where a user registers a new product taxonomy with the same name as default field.
        // eg an `sku` taxonomy will be mapped to `tax_sku`.
        
$all_product_taxonomies array_map(
            function ( 
$value ) {
                return 
'_unstable_tax_' $value;
            },
            
get_taxonomies( array( 'object_type' => array( 'product' ) ), 'names' )
        );

        
// Map between taxonomy name and arg key.
        
$default_taxonomies = array(
            
'product_cat' => 'category',
            
'product_tag' => 'tag',
        );

        
$taxonomies array_merge$all_product_taxonomies$default_taxonomies );

        
// Set tax_query for each passed arg.
        
foreach ( $taxonomies as $taxonomy => $key ) {
            if ( ! empty( 
$request$key ] ) ) {
                
$operator    $request->get_param$key '_operator' ) && isset( $operator_mapping$request->get_param$key '_operator' ) ] ) ? $operator_mapping$request->get_param$key '_operator' ) ] : 'IN';
                
$tax_query[] = array(
                    
'taxonomy' => $taxonomy,
                    
'field'    => 'term_id',
                    
'terms'    => $request$key ],
                    
'operator' => $operator,
                );
            }
        }

        
// Filter by attributes.
        
if ( ! empty( $request['attributes'] ) ) {
            
$att_queries = array();

            foreach ( 
$request['attributes'] as $attribute ) {
                if ( empty( 
$attribute['term_id'] ) && empty( $attribute['slug'] ) ) {
                    continue;
                }
                if ( 
in_array$attribute['attribute'], wc_get_attribute_taxonomy_names(), true ) ) {
                    
$operator      = isset( $attribute['operator'], $operator_mapping$attribute['operator'] ] ) ? $operator_mapping$attribute['operator'] ] : 'IN';
                    
$att_queries[] = array(
                        
'taxonomy' => $attribute['attribute'],
                        
'field'    => ! empty( $attribute['term_id'] ) ? 'term_id' 'slug',
                        
'terms'    => ! empty( $attribute['term_id'] ) ? $attribute['term_id'] : $attribute['slug'],
                        
'operator' => $operator,
                    );
                }
            }

            if ( 
count$att_queries ) ) {
                
// Add relation arg when using multiple attributes.
                
$relation    $request->get_param'attribute_relation' ) && isset( $operator_mapping$request->get_param'attribute_relation' ) ] ) ? $operator_mapping$request->get_param'attribute_relation' ) ] : 'IN';
                
$tax_query[] = array(
                    
'relation' => $relation,
                    
$att_queries,
                );
            } else {
                
$tax_query array_merge$tax_query$att_queries );
            }
        }

        
// Build tax_query if taxonomies are set.
        
if ( ! empty( $tax_query ) && 'product_variation' !== $args['post_type'] ) {
            if ( ! empty( 
$args['tax_query'] ) ) {
                
$args['tax_query'] = array_merge$tax_query$args['tax_query'] ); // phpcs:ignore
            
} else {
                
$args['tax_query'] = $tax_query// phpcs:ignore
            
}
        } else {
            
// For product_variantions we need to convert the tax_query to a meta_query.
            
if ( ! empty( $args['tax_query'] ) ) {
                
$args['meta_query'] = $this->convert_tax_query_to_meta_queryarray_merge$tax_query$args['tax_query'] ) ); // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_query
            
} else {
                
$args['meta_query'] = $this->convert_tax_query_to_meta_query$tax_query ); // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_query
            
}
        }

        
// Filter featured.
        
if ( is_bool$request['featured'] ) ) {
            
$args['tax_query'][] = array(
                
'taxonomy' => 'product_visibility',
                
'field'    => 'name',
                
'terms'    => 'featured',
                
'operator' => true === $request['featured'] ? 'IN' 'NOT IN',
            );
        }

        
// Filter by on sale products.
        
if ( is_bool$request['on_sale'] ) ) {
            
$on_sale_key $request['on_sale'] ? 'post__in' 'post__not_in';
            
$on_sale_ids wc_get_product_ids_on_sale();

            
// Use 0 when there's no on sale products to avoid return all products.
            
$on_sale_ids = empty( $on_sale_ids ) ? array( ) : $on_sale_ids;

            
$args$on_sale_key ] += $on_sale_ids;
        }

        
$catalog_visibility $request->get_param'catalog_visibility' );
        
$rating             $request->get_param'rating' );
        
$visibility_options wc_get_product_visibility_options();

        if ( 
in_array$catalog_visibilityarray_keys$visibility_options ), true ) ) {
            
$exclude_from_catalog 'search' === $catalog_visibility '' 'exclude-from-catalog';
            
$exclude_from_search  'catalog' === $catalog_visibility '' 'exclude-from-search';

            
$args['tax_query'][] = array(
                
'taxonomy'      => 'product_visibility',
                
'field'         => 'name',
                
'terms'         => array( $exclude_from_catalog$exclude_from_search ),
                
'operator'      => 'hidden' === $catalog_visibility 'AND' 'NOT IN',
                
'rating_filter' => true,
            );
        }

        if ( 
$rating ) {
            
$rating_terms = array();
            foreach ( 
$rating as $value ) {
                
$rating_terms[] = 'rated-' $value;
            }
            
$args['tax_query'][] = array(
                
'taxonomy' => 'product_visibility',
                
'field'    => 'name',
                
'terms'    => $rating_terms,
            );
        }

        
$orderby $request->get_param'orderby' );
        
$order   $request->get_param'order' );

        
$ordering_args   wc()->query->get_catalog_ordering_args$orderby$order );
        
$args['orderby'] = $ordering_args['orderby'];
        
$args['order']   = $ordering_args['order'];

        if ( 
'include' === $orderby ) {
            
$args['orderby'] = 'post__in';
        } elseif ( 
'id' === $orderby ) {
            
$args['orderby'] = 'ID'// ID must be capitalized.
        
} elseif ( 'slug' === $orderby ) {
            
$args['orderby'] = 'name';
        }

        if ( 
$ordering_args['meta_key'] ) {
            
$args['meta_key'] = $ordering_args['meta_key']; // phpcs:ignore
        
}

        return 
$args;
    }

    
/**
     * Convert the tax_query to a meta_query which is needed to support filtering by attributes for variations.
     *
     * @param array $tax_query The tax_query to convert.
     * @return array
     */
    
public function convert_tax_query_to_meta_query$tax_query ) {
        
$meta_query = array();

        foreach ( 
$tax_query as $tax_query_item ) {
            
$taxonomy $tax_query_item['taxonomy'];
            
$terms    $tax_query_item['terms'];

            
$meta_key 'attribute_' $taxonomy;

            
$meta_query[] = array(
                
'key'   => $meta_key,
                
'value' => $terms,
            );

            if ( isset( 
$tax_query_item['operator'] ) ) {
                
$meta_query[0]['compare'] = $tax_query_item['operator'];
            }
        }

        return 
$meta_query;
    }

    
/**
     * Get results of query.
     *
     * @param \WP_REST_Request $request Request data.
     * @return array
     */
    
public function get_results$request ) {
        
$query_args $this->prepare_objects_query$request );

        
add_filter'posts_clauses', array( $this'add_query_clauses' ), 10);

        
$query       = new \WP_Query();
        
$results     $query->query$query_args );
        
$total_posts $query->found_posts;

        
// Out-of-bounds, run the query again without LIMIT for total count.
        
if ( $total_posts && $query_args['paged'] > ) {
            unset( 
$query_args['paged'] );
            
$count_query = new \WP_Query();
            
$count_query->query$query_args );
            
$total_posts $count_query->found_posts;
        }

        
remove_filter'posts_clauses', array( $this'add_query_clauses' ), 10 );

        return array(
            
'results' => $results,
            
'total'   => (int) $total_posts,
            
'pages'   => $query->query_vars['posts_per_page'] > ? (int) ceil$total_posts / (int) $query->query_vars['posts_per_page'] ) : 1,
        );
    }

    
/**
     * Get objects.
     *
     * @param \WP_REST_Request $request Request data.
     * @return array
     */
    
public function get_objects$request ) {
        
$results $this->get_results$request );

        return array(
            
'objects' => array_map'wc_get_product'$results['results'] ),
            
'total'   => $results['total'],
            
'pages'   => $results['pages'],
        );
    }

    
/**
     * Get last modified date for all products.
     *
     * @return int timestamp.
     */
    
public function get_last_modified() {
        global 
$wpdb;

        return 
strtotime$wpdb->get_var"SELECT MAX( post_modified_gmt ) FROM {$wpdb->posts} WHERE post_type IN ( 'product', 'product_variation' );" ) );
    }

    
/**
     * Add in conditional search filters for products.
     *
     * @param array     $args Query args.
     * @param \WC_Query $wp_query WC_Query object.
     * @return array
     */
    
public function add_query_clauses$args$wp_query ) {
        global 
$wpdb;

        if ( 
$wp_query->get'search' ) ) {
            
$search         '%' $wpdb->esc_like$wp_query->get'search' ) ) . '%';
            
$search_query   wc_product_sku_enabled()
                ? 
$wpdb->prepare" AND ( $wpdb->posts.post_title LIKE %s OR wc_product_meta_lookup.sku LIKE %s ) "$search$search )
                : 
$wpdb->prepare" AND $wpdb->posts.post_title LIKE %s "$search );
            
$args['where'] .= $search_query;
            
$args['join']   = $this->append_product_sorting_table_join$args['join'] );
        }

        if ( 
$wp_query->get'sku' ) ) {
            
$skus explode','$wp_query->get'sku' ) );
            
// Include the current string as a SKU too.
            
if ( count$skus ) ) {
                
$skus[] = $wp_query->get'sku' );
            }
            
$args['join']   = $this->append_product_sorting_table_join$args['join'] );
            
$args['where'] .= ' AND wc_product_meta_lookup.sku IN (\'' implode'\',\''array_map'esc_sql'$skus ) ) . '\')';
        }

        if ( 
$wp_query->get'slug' ) ) {
            
$slugs explode','$wp_query->get'slug' ) );
            
// Include the current string as a slug too.
            
if ( count$slugs ) ) {
                
$slugs[] = $wp_query->get'slug' );
            }
            
$args['join']   = $this->append_product_sorting_table_join$args['join'] );
            
$post_name__in  implode'","'array_map'esc_sql'$slugs ) );
            
$args['where'] .= " AND $wpdb->posts.post_name IN (\"$post_name__in\")";
        }

        if ( 
$wp_query->get'stock_status' ) ) {
            
$args['join']   = $this->append_product_sorting_table_join$args['join'] );
            
$args['where'] .= ' AND wc_product_meta_lookup.stock_status IN (\'' implode'\',\''array_map'esc_sql'$wp_query->get'stock_status' ) ) ) . '\')';
        } elseif ( 
'yes' === get_option'woocommerce_hide_out_of_stock_items' ) ) {
            
$args['join']   = $this->append_product_sorting_table_join$args['join'] );
            
$args['where'] .= ' AND wc_product_meta_lookup.stock_status NOT IN (\'outofstock\')';
        }

        if ( 
$wp_query->get'min_price' ) || $wp_query->get'max_price' ) ) {
            
$args $this->add_price_filter_clauses$args$wp_query );
        }

        return 
$args;
    }

    
/**
     * Add in conditional price filters.
     *
     * @param array     $args Query args.
     * @param \WC_Query $wp_query WC_Query object.
     * @return array
     */
    
protected function add_price_filter_clauses$args$wp_query ) {
        global 
$wpdb;

        
$adjust_for_taxes $this->adjust_price_filters_for_displayed_taxes();
        
$args['join']     = $this->append_product_sorting_table_join$args['join'] );

        if ( 
$wp_query->get'min_price' ) ) {
            
$min_price_filter $this->prepare_price_filter$wp_query->get'min_price' ) );

            if ( 
$adjust_for_taxes ) {
                
$args['where'] .= $this->get_price_filter_query_for_displayed_taxes$min_price_filter'max_price''>=' );
            } else {
                
$args['where'] .= $wpdb->prepare' AND wc_product_meta_lookup.max_price >= %f '$min_price_filter );
            }
        }

        if ( 
$wp_query->get'max_price' ) ) {
            
$max_price_filter $this->prepare_price_filter$wp_query->get'max_price' ) );

            if ( 
$adjust_for_taxes ) {
                
$args['where'] .= $this->get_price_filter_query_for_displayed_taxes$max_price_filter'min_price''<=' );
            } else {
                
$args['where'] .= $wpdb->prepare' AND wc_product_meta_lookup.min_price <= %f '$max_price_filter );
            }
        }

        return 
$args;
    }

    
/**
     * Get query for price filters when dealing with displayed taxes.
     *
     * @param float  $price_filter Price filter to apply.
     * @param string $column Price being filtered (min or max).
     * @param string $operator Comparison operator for column.
     * @return string Constructed query.
     */
    
protected function get_price_filter_query_for_displayed_taxes$price_filter$column 'min_price'$operator '>=' ) {
        global 
$wpdb;

        
// Select only used tax classes to avoid unwanted calculations.
        
$product_tax_classes $wpdb->get_col"SELECT DISTINCT tax_class FROM {$wpdb->wc_product_meta_lookup};" );

        if ( empty( 
$product_tax_classes ) ) {
            return 
'';
        }

        
$or_queries = array();

        
// We need to adjust the filter for each possible tax class and combine the queries into one.
        
foreach ( $product_tax_classes as $tax_class ) {
            
$adjusted_price_filter $this->adjust_price_filter_for_tax_class$price_filter$tax_class );
            
$or_queries[]          = $wpdb->prepare(
                
'( wc_product_meta_lookup.tax_class = %s AND wc_product_meta_lookup.`' esc_sql$column ) . '` ' esc_sql$operator ) . ' %f )',
                
$tax_class,
                
$adjusted_price_filter
            
);
        }

        
// phpcs:disable WordPress.DB.PreparedSQL.InterpolatedNotPrepared, WordPress.DB.PreparedSQL.NotPrepared
        
return $wpdb->prepare(
            
' AND (
                wc_product_meta_lookup.tax_status = "taxable" AND ( 0=1 OR ' 
implode' OR '$or_queries ) . ')
                OR ( wc_product_meta_lookup.tax_status != "taxable" AND wc_product_meta_lookup.`' 
esc_sql$column ) . '` ' esc_sql$operator ) . ' %f )
            ) '
,
            
$price_filter
        
);
        
// phpcs:enable WordPress.DB.PreparedSQL.InterpolatedNotPrepared, WordPress.DB.PreparedSQL.NotPrepared
    
}

    
/**
     * If price filters need adjustment to work with displayed taxes, this returns true.
     *
     * This logic is used when prices are stored in the database differently to how they are being displayed, with regards
     * to taxes.
     *
     * @return boolean
     */
    
protected function adjust_price_filters_for_displayed_taxes() {
        
$display  get_option'woocommerce_tax_display_shop' );
        
$database wc_prices_include_tax() ? 'incl' 'excl';

        return 
$display !== $database;
    }

    
/**
     * Converts price filter from subunits to decimal.
     *
     * @param string|int $price_filter Raw price filter in subunit format.
     * @return float Price filter in decimal format.
     */
    
protected function prepare_price_filter$price_filter ) {
        return 
floatval$price_filter / ( 10 ** wc_get_price_decimals() ) );
    }

    
/**
     * Adjusts a price filter based on a tax class and whether or not the amount includes or excludes taxes.
     *
     * This calculation logic is based on `wc_get_price_excluding_tax` and `wc_get_price_including_tax` in core.
     *
     * @param float  $price_filter Price filter amount as entered.
     * @param string $tax_class Tax class for adjustment.
     * @return float
     */
    
protected function adjust_price_filter_for_tax_class$price_filter$tax_class ) {
        
$tax_display    get_option'woocommerce_tax_display_shop' );
        
$tax_rates      WC_Tax::get_rates$tax_class );
        
$base_tax_rates WC_Tax::get_base_tax_rates$tax_class );

        
// If prices are shown incl. tax, we want to remove the taxes from the filter amount to match prices stored excl. tax.
        
if ( 'incl' === $tax_display ) {
            
/**
             * Filters if taxes should be removed from locations outside the store base location.
             *
             * The woocommerce_adjust_non_base_location_prices filter can stop base taxes being taken off when dealing
             * with out of base locations. e.g. If a product costs 10 including tax, all users will pay 10
             * regardless of location and taxes.
             *
             * @since 2.6.0
             *
             * @internal Matches filter name in WooCommerce core.
             *
             * @param boolean $adjust_non_base_location_prices True by default.
             * @return boolean
             */
            
$taxes apply_filters'woocommerce_adjust_non_base_location_prices'true ) ? WC_Tax::calc_tax$price_filter$base_tax_ratestrue ) : WC_Tax::calc_tax$price_filter$tax_ratestrue );
            return 
$price_filter array_sum$taxes );
        }

        
// If prices are shown excl. tax, add taxes to match the prices stored in the DB.
        
$taxes WC_Tax::calc_tax$price_filter$tax_ratesfalse );

        return 
$price_filter array_sum$taxes );
    }

    
/**
     * Join wc_product_meta_lookup to posts if not already joined.
     *
     * @param string $sql SQL join.
     * @return string
     */
    
protected function append_product_sorting_table_join$sql ) {
        global 
$wpdb;

        if ( ! 
strstr$sql'wc_product_meta_lookup' ) ) {
            
$sql .= " LEFT JOIN {$wpdb->wc_product_meta_lookup} wc_product_meta_lookup ON $wpdb->posts.ID = wc_product_meta_lookup.product_id ";
        }
        return 
$sql;
    }
}