-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathclass-wds-react-post-search.php
434 lines (368 loc) · 11.1 KB
/
class-wds-react-post-search.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
<?php
/**
* Plugin Name: WDS React Post Search
* Description: Power up the basic WordPress search with React.
* Plugin URI: https://www.webdevstudios.com
* Version: 1.0.6
*
* With help from:
* https://www.ibenic.com/wordpress-react-search/
* https://torquemag.io/2017/08/how-to-query-multiple-post-types-with-one-request-to-the-wordpress-rest-api/
*
* @package wds-react-post-search
*/
if ( ! defined( 'ABSPATH' ) ) {
return;
}
/**
* Initiate our class.
*
* @author Corey Collins
*/
final class WDS_React_Post_Search {
/**
* Current version.
*
* @var string
* @since 0.0.0
*/
const VERSION = '1.0.6';
/**
* URL of plugin directory.
*
* @var string
* @since 0.0.0
*/
protected $url = '';
/**
* Path of plugin directory.
*
* @var string
* @since 0.0.0
*/
protected $path = '';
/**
* Plugin basename.
*
* @var string
* @since 0.0.0
*/
protected $basename = '';
/**
* Detailed activation error messages.
*
* @var array
* @since 0.0.0
*/
protected $activation_errors = array();
/**
* Singleton instance of plugin.
*
* @var WDS_React_Post_Search
* @since 0.0.0
*/
protected static $single_instance = null;
/**
* Creates or returns an instance of this class.
*
* @since 0.0.0
* @return WDS_React_Post_Search A single instance of this class.
*/
public static function get_instance() {
if ( null === self::$single_instance ) {
self::$single_instance = new self();
}
return self::$single_instance;
}
/**
* Sets up our plugin.
*
* @since 0.0.0
*/
protected function __construct() {
$this->basename = plugin_basename( __FILE__ );
$this->url = plugin_dir_url( __FILE__ );
$this->path = plugin_dir_path( __FILE__ );
}
/**
* Activate the plugin.
*
* @since 0.0.0
*/
public function _activate() {
// Bail early if requirements aren't met.
if ( ! $this->check_requirements() ) {
return;
}
// Make sure any rewrite functionality has been loaded.
flush_rewrite_rules();
}
/**
* Deactivate the plugin.
* Uninstall routines should be in uninstall.php.
*
* @since 0.0.0
*/
public function _deactivate() {
// Add deactivation cleanup functionality here.
}
/**
* Init hooks
*
* @since 0.0.0
*/
public function init() {
// Bail early if requirements aren't met.
if ( ! $this->check_requirements() ) {
return;
}
// Load translated strings for plugin.
load_plugin_textdomain( 'wds-react-post-search', false, dirname( $this->basename ) . '/languages/' );
// Initialize plugin classes.
$this->plugin_classes();
}
/**
* Check if the plugin meets requirements and
* disable it if they are not present.
*
* @since 0.0.0
*
* @return boolean True if requirements met, false if not.
*/
public function check_requirements() {
// Bail early if plugin meets requirements.
if ( $this->meets_requirements() ) {
return true;
}
// Add a dashboard notice.
add_action( 'all_admin_notices', array( $this, 'requirements_not_met_notice' ) );
// Deactivate our plugin.
add_action( 'admin_init', array( $this, 'deactivate_me' ) );
// Didn't meet the requirements.
return false;
}
/**
* Deactivates this plugin, hook this function on admin_init.
*
* @since 0.0.0
*/
public function deactivate_me() {
// We do a check for deactivate_plugins before calling it, to protect
// any developers from accidentally calling it too early and breaking things.
if ( function_exists( 'deactivate_plugins' ) ) {
deactivate_plugins( $this->basename );
}
}
/**
* Check that all plugin requirements are met.
*
* @since 0.0.0
*
* @return boolean True if requirements are met.
*/
public function meets_requirements() {
// Do checks for required classes / functions or similar.
// Add detailed messages to $this->activation_errors array.
return true;
}
/**
* Adds a notice to the dashboard if the plugin requirements are not met.
*
* @since 0.0.0
*/
public function requirements_not_met_notice() {
// Translators: get the plugins admin URL.
$default_message = sprintf( __( 'WDS React Post Search is missing requirements and has been <a href="%s">deactivated</a>. Please make sure all requirements are available.', 'wds-react-post-search' ), admin_url( 'plugins.php' ) );
// Default details to null.
$details = null;
// Add details if any exist.
if ( $this->activation_errors && is_array( $this->activation_errors ) ) {
$details = '<small>' . implode( '</small><br /><small>', $this->activation_errors ) . '</small>';
}
// Output errors.
?>
<div id="message" class="error">
<p><?php echo wp_kses_post( $default_message ); ?></p>
<?php echo wp_kses_post( $details ); ?>
</div>
<?php
}
/**
* Add hooks and filters.
* Priority needs to be
* < 10 for CPT_Core,
* < 5 for Taxonomy_Core,
* and 0 for Widgets because widgets_init runs at init priority 1.
*
* @since 0.0.0
*/
public function hooks() {
add_filter( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 );
add_action( 'rest_api_init', array( $this, 'rest_api_init' ), 10, 2 );
add_action( 'rest_post_query', array( $this, 'add_post_types_to_query' ), 10, 2 );
}
/**
* Enqueue our plugin scripts.
*
* @author Corey Collins
*/
public function enqueue_scripts() {
wp_register_script( 'wds-react-post-search', $this->url . 'assets/js/public.js', array( 'jquery' ), self::VERSION, true );
wp_register_style( 'wds-react-post-search-styles', $this->url . 'assets/css/wds-react-post-search.css', array(), self::VERSION );
wp_enqueue_script( 'wds-react-post-search' );
wp_enqueue_style( 'wds-react-post-search-styles' );
wp_localize_script( 'wds-react-post-search', 'wds_react_post_search', array(
'rest_search_posts' => rest_url( 'wds-react-post-search/v1/search' ),
'loading_text' => apply_filters( 'wds_react_post_search_loading_text', esc_html__( 'Loading results...', 'wds-react-post-search' ) ),
'no_results_text' => apply_filters( 'wds_react_post_search_no_results_text', esc_html__( 'No results found.', 'wds-react-post-search' ) ),
'length_error' => apply_filters( 'wds_react_post_search_length_error_text', esc_html__( 'Please enter at least 3 characters.', 'wds-react-post-search' ) ),
'minimum_character_count' => apply_filters( 'wds_react_post_search_minimum_character_count', intval( 3 ) ),
'search_form_class' => apply_filters( 'wds_react_post_search_search_form_class', esc_attr( 'search-form' ) ),
'placeholder_text' => apply_filters( 'wds_react_post_search_placeholder_text', esc_html__( 'Search', 'wds-react-post-search' ) ),
) );
}
/**
* Adds post types to the WP REST API query if searchable.
*
* @param array $args Default query arguments.
* @param WP_REST_Request $request The request from the WP REST API.
* @return array $args The arguments to pass to the query.
* @author Corey Collins
*/
public function add_post_types_to_query( $args, $request ) {
// Get our requested post types.
$post_types = $request->get_param( 'type' );
// If we have no post types, return our default args.
if ( empty( $post_types ) ) {
return $args;
}
if ( is_string( $post_types ) ) {
$post_types_array = array( $post_types );
foreach ( $post_types_array as $i => $post_type ) {
$object = get_post_type_object( $post_type );
if ( ! $object || ! $object->show_in_rest ) {
unset( $post_types_array[ $i ] );
}
}
}
$post_types[] = $args['post_type'];
$args['post_type'] = $post_types;
return $args;
}
/**
* Set the default post types (just posts) to be searched by the query.
*
* How do you filter these for your own theme? Like this!
*
* function _s_filter_post_types_to_query() {
* return array(
* 'post_type_slug',
* 'page',
* );
* }
* add_filter( 'wds_react_post_search_filter_post_types', '_s_filter_post_types_to_query' );
*
* @author Corey Collins
*/
public function post_types_to_search() {
$post_types = array(
'any',
);
$all_post_types = apply_filters( 'wds_react_post_search_filter_post_types', $post_types );
return $all_post_types;
}
/**
* Register REST API search results route.
*
* @return void
*/
public function rest_api_init() {
register_rest_route('wds-react-post-search/v1', '/search', [
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'search_posts' ),
'args' => $this->get_search_args(),
]);
}
/**
* Define the arguments our endpoint receives.
*/
public function get_search_args() {
$args = [];
$args['s'] = [
'description' => esc_html__( 'The search term.', 'wds-react-post-search' ),
'type' => 'string',
];
$args['type'] = [
'description' => esc_html__( 'Post Types.', 'wds-react-post-search' ),
'type' => 'array',
'default' => [],
'items' => [
'type' => 'string',
],
];
return $args;
}
/**
* Get search post types.
*
* @param array $request HTTP request variables.
* @return mixed
*/
public function get_valid_search_post_types( $request ) {
if ( is_array( $request['type'] ) && ! empty( $request['type'] ) ) {
return array_map( 'sanitize_text_field', $request['type'] );
} elseif ( $request['type'] ) {
return sanitize_text_field( $request['type'] );
} else {
return $this->post_types_to_search();
}
}
/**
* Search posts.
*
* @param array $request HTTP request variables.
* @return array Search results or error.
*/
public function search_posts( $request ) {
$posts = [];
$results = [];
if ( isset( $request['s'] ) ) :
$filter = [
'posts_per_page' => -1,
'post_type' => $this->get_valid_search_post_types( $request ),
's' => sanitize_text_field( $request['s'] ),
'tax_query' => apply_filters( 'wds_react_post_search_tax_query', array() ),
'order' => apply_filters( 'wds_react_post_search_order', 'DESC' ),
'orderby' => apply_filters( 'wds_react_post_search_orderby', 'date' ),
];
// Get posts.
$posts = get_posts( $filter );
// Return title and link.
foreach ( $posts as $post ) :
$results[] = [
'title' => $post->post_title,
'link' => get_permalink( $post->ID ),
];
endforeach;
endif;
if ( empty( $results ) ) :
return new WP_Error( 'wds-react-post-search-results', apply_filters( 'wds_react_post_search_no_results_text', esc_html__( 'No results found.', 'wds-react-post-search' ) ) );
endif;
return rest_ensure_response( $results );
}
}
/**
* Grab the WDS_React_Post_Search object and return it.
* Wrapper for WDS_React_Post_Search::get_instance().
*
* @since 0.0.0
* @return WDS_React_Post_Search Singleton instance of plugin class.
*/
function wds_react_post_search() {
return WDS_React_Post_Search::get_instance();
}
// Kick it off.
add_action( 'plugins_loaded', array( wds_react_post_search(), 'hooks' ) );
// Activation and deactivation.
register_activation_hook( __FILE__, array( wds_react_post_search(), '_activate' ) );
register_deactivation_hook( __FILE__, array( wds_react_post_search(), '_deactivate' ) );