HEX
Server: Apache/2.4.57 (Unix) OpenSSL/1.1.1k
System: Linux tam.zee-supreme-vps.net 4.18.0-513.9.1.el8_9.x86_64 #1 SMP Sat Dec 2 05:23:44 EST 2023 x86_64
User: adltc (1070)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/adltc/public_html/wp-content/plugins/jet-engine/includes/classes/posts-search.php
<?php
/**
 * Posts search handler class
 */

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

class Jet_Engine_Posts_Search_Handler {

	public function __construct() {
		// Force search posts control to work
		add_action( 'wp_ajax_cx_search_posts', array( $this, 'process_posts_search' ) );
		add_action( 'wp_ajax_jet_engine_meta_box_posts', array( $this, 'process_posts_search' ) );
	}

	/**
	 * Perform posts search by arguments list
	 *
	 * @param  array  $args [description]
	 * @return [type]       [description]
	 */
	public function search_posts( $args = array() ) {

		add_filter( 'posts_where', array( $this, 'force_search_by_title' ), 10, 2 );

		$type    = ! empty( $args['post_type'] ) ? $args['post_type'] : false;
		$query   = ! empty( $args['q'] ) ? $args['q'] : false;
		$exclude = ! empty( $args['exclude'] ) ? $args['exclude'] : false;

		if ( $type && ! is_array( $type ) ) {
			$type = explode( ',', $type );
		}

		if ( $exclude && ! is_array( $exclude ) ) {
			$exclude = explode( ',', $exclude );
		}

		$query_args = array(
			'ignore_sticky_posts' => true,
			'posts_per_page'      => -1,
			'suppress_filters'    => false,
			's_title'             => $query,
		);

		if ( $type && in_array( 'attachment', $type ) ) {
			$query_args['post_status'] = array( 'publish', 'inherit' );
		}

		if ( $exclude ) {
			$query_args['post__not_in'] = $exclude;
		}

		if ( $type ) {
			$query_args['post_type'] = $type;
		} else {
			$query_args['post_type'] = 'any';
		}

		$posts = get_posts( $query_args );

		remove_filter( 'posts_where', array( $this, 'force_search_by_title' ), 10, 2 );

		$result = array();

		if ( ! empty( $posts ) ) {
			foreach ( $posts as $post ) {
				$result[] = array(
					'id'   => $post->ID,
					'text' => $post->post_title,
				);
			}
		}

		return $result;

	}

	/**
	 * Ajax callback to search posts from request and send result as JSON
	 *
	 * @return void
	 */
	public function process_posts_search() {

		$type    = $_REQUEST['post_type'];
		$query   = isset( $_GET['q'] ) ? esc_attr( $_GET['q'] ) : '';
		$type    = explode( ',', $type );
		$exclude = ! empty( $_GET['exclude'] ) ? explode( ',', $_GET['exclude'] ) : false;

		wp_send_json( array(
			'results' => $this->search_posts( array(
				'post_type' => $type,
				'exclude'   => $exclude,
				'q'         => $query,
			) ),
		) );

	}

	/**
	 * Force query to look in post title while searching
	 *
	 * @return [type] [description]
	 */
	public function force_search_by_title( $where, $query ) {

		$args = $query->query;

		if ( ! isset( $args['s_title'] ) ) {
			return $where;
		} else {
			global $wpdb;

			$searh = esc_sql( $wpdb->esc_like( $args['s_title'] ) );
			$where .= " AND {$wpdb->posts}.post_title LIKE '%$searh%'";

		}

		return $where;

	}

}