PluginProbe
WCPOS – Point of Sale (POS) plugin for WooCommerce / 1.10.13
WCPOS – Point of Sale (POS) plugin for WooCommerce v1.10.13
1.10.19 1.10.18 1.10.17 1.10.16 1.10.15 1.10.13 1.10.14 1.10.12 1.10.11 1.10.10 1.10.9 1.10.8 untagged-3d9b7ccddc54df87c672 1.10.7 1.10.6 1.10.5 1.10.3 1.10.4 1.10.2 1.10.1 1.10.0 1.9.17 1.9.15 1.9.16 1.9.14 All 163 releases
woocommerce-pos / includes / API / Product_Search.php

Product_Search.php in WCPOS – Point of Sale (POS) plugin for WooCommerce 1.10.13, at includes/API/Product_Search.php

113 lines 3.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Shared product search SQL filters.
4 *
5 * @package WCPOS\WooCommercePOS\API
6 */
7
8 namespace WCPOS\WooCommercePOS\API;
9
10 use WCPOS\WooCommercePOS\Services\Barcode_Field;
11 use WP_Query;
12
13 /**
14 * Keeps v1 and v2 product search fields identical.
15 */
16 final class Product_Search {
17 /**
18 * Search product titles, SKUs, and the configured barcode field.
19 *
20 * @param string $search Search SQL.
21 * @param WP_Query $wp_query Query instance.
22 * @return string
23 */
24 public static function posts_search( string $search, WP_Query $wp_query ): string {
25 global $wpdb;
26 if ( empty( $search ) ) {
27 return $search;
28 }
29 $q = $wp_query->query_vars;
30 $n = ! empty( $q['exact'] ) ? '' : '%';
31 $meta_fields = Barcode_Field::search_keys();
32 $meta_placeholders = implode( ', ', array_fill( 0, \count( $meta_fields ), '%s' ) );
33 $search_conditions = array();
34 foreach ( (array) $q['search_terms'] as $term ) {
35 $term = $n . $wpdb->esc_like( $term ) . $n;
36 // phpcs:disable WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Table names come from $wpdb; $meta_placeholders is a generated list of %s placeholders, and the keys themselves are passed to prepare() as arguments.
37 $search_conditions[] = $wpdb->prepare(
38 "( {$wpdb->posts}.post_title LIKE %s OR EXISTS (
39 SELECT 1 FROM {$wpdb->postmeta} AS wcpos_search_meta WHERE wcpos_search_meta.post_id = {$wpdb->posts}.ID AND wcpos_search_meta.meta_key IN ($meta_placeholders) AND wcpos_search_meta.meta_value LIKE %s
40 ) )",
41 array_merge( array( $term ), $meta_fields, array( $term ) )
42 );
43 // phpcs:enable WordPress.DB.PreparedSQL.InterpolatedNotPrepared
44 }
45
46 if ( ! empty( $search_conditions ) ) {
47 $search = ' AND (' . implode( ' AND ', $search_conditions ) . ') ';
48 if ( ! is_user_logged_in() ) {
49 $search .= " AND ($wpdb->posts.post_password = '') ";
50 }
51 }
52 return $search;
53 }
54
55 /**
56 * Join product meta while searching.
57 *
58 * @param string $join JOIN SQL.
59 * @param WP_Query $query Query instance.
60 * @return string
61 */
62 public static function posts_join( string $join, WP_Query $query ): string {
63 global $wpdb;
64 if ( self::is_searching( $query ) && false === strpos( $join, 'pm1' ) ) {
65 $join .= " LEFT JOIN {$wpdb->postmeta} pm1 ON {$wpdb->posts}.ID = pm1.post_id ";
66 }
67 return $join;
68 }
69
70 /**
71 * Group product search results after joining meta.
72 *
73 * @param string $groupby GROUP BY SQL.
74 * @param WP_Query $query Query instance.
75 * @return string
76 */
77 public static function posts_groupby( string $groupby, WP_Query $query ): string {
78 global $wpdb;
79 if ( self::is_searching( $query ) ) {
80 $groupby = "{$wpdb->posts}.ID";
81 }
82 return $groupby;
83 }
84
85 /**
86 * Rank exact SKU or barcode matches ahead of substring matches.
87 *
88 * @param string $orderby ORDER BY SQL.
89 * @param WP_Query $query Query instance.
90 */
91 public static function posts_orderby( string $orderby, WP_Query $query ): string {
92 global $wpdb;
93 if ( ! self::is_searching( $query ) ) {
94 return $orderby;
95 }
96 $keys = Barcode_Field::search_keys();
97 return $wpdb->prepare(
98 'MIN(CASE WHEN pm1.meta_key IN (' . implode( ', ', array_fill( 0, count( $keys ), '%s' ) ) . ') AND pm1.meta_value = %s THEN 0 ELSE 1 END) ASC',
99 array_merge( $keys, array( trim( (string) $query->query_vars['s'] ) ) )
100 ) . ', ' . ( '' === trim( $orderby ) ? "{$wpdb->posts}.ID DESC" : $orderby );
101 }
102
103 /**
104 * Whether the query carries a search term. Not empty(): the literal term "0" is a search.
105 *
106 * @param WP_Query $query Query instance.
107 * @return bool
108 */
109 private static function is_searching( WP_Query $query ): bool {
110 return isset( $query->query_vars['s'] ) && '' !== (string) $query->query_vars['s'];
111 }
112 }
113