-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathPreGetPostsSniff.php
461 lines (396 loc) · 11.1 KB
/
PreGetPostsSniff.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
<?php
/**
* WordPressVIPMinimum Coding Standard.
*
* @package VIPCS\WordPressVIPMinimum
*/
namespace WordPressVIPMinimum\Sniffs\Hooks;
use PHP_CodeSniffer\Util\Tokens;
use PHPCSUtils\Utils\Arrays;
use WordPressVIPMinimum\Sniffs\Sniff;
/**
* This sniff validates a proper usage of pre_get_posts action callback.
*
* It looks for cases when the WP_Query object is being modified without checking for WP_Query::is_main_query().
*/
class PreGetPostsSniff extends Sniff {
/**
* Returns the token types that this sniff is interested in.
*
* @return array<int|string>
*/
public function register() {
return [ T_STRING ];
}
/**
* Processes the tokens that this sniff is interested in.
*
* @param int $stackPtr The position in the stack where the token was found.
*
* @return void
*/
public function process_token( $stackPtr ) {
$functionName = $this->tokens[ $stackPtr ]['content'];
if ( $functionName !== 'add_action' ) {
// We are interested in add_action calls only.
return;
}
$actionNamePtr = $this->phpcsFile->findNext(
array_merge( Tokens::$emptyTokens, [ T_OPEN_PARENTHESIS ] ),
$stackPtr + 1,
null,
true,
null,
true
);
if ( ! $actionNamePtr ) {
// Something is wrong.
return;
}
if ( substr( $this->tokens[ $actionNamePtr ]['content'], 1, -1 ) !== 'pre_get_posts' ) {
// This is not setting a callback for pre_get_posts action.
return;
}
$callbackPtr = $this->phpcsFile->findNext(
array_merge( Tokens::$emptyTokens, [ T_COMMA ] ),
$actionNamePtr + 1,
null,
true,
null,
true
);
if ( ! $callbackPtr ) {
// Something is wrong.
return;
}
if ( $this->tokens[ $callbackPtr ]['code'] === 'PHPCS_T_CLOSURE' ) {
$this->processClosure( $callbackPtr );
} elseif ( $this->tokens[ $callbackPtr ]['code'] === T_ARRAY
|| $this->tokens[ $callbackPtr ]['code'] === T_OPEN_SHORT_ARRAY
) {
$this->processArray( $callbackPtr );
} elseif ( in_array( $this->tokens[ $callbackPtr ]['code'], Tokens::$stringTokens, true ) === true ) {
$this->processString( $callbackPtr );
}
}
/**
* Process array.
*
* @param int $stackPtr The position in the stack where the token was found.
*
* @return void
*/
private function processArray( $stackPtr ) {
$open_close = Arrays::getOpenClose( $this->phpcsFile, $stackPtr );
if ( $open_close === false ) {
return;
}
$previous = $this->phpcsFile->findPrevious(
Tokens::$emptyTokens,
$open_close['closer'] - 1,
null,
true
);
$this->processString( $previous );
}
/**
* Process string.
*
* @param int $stackPtr The position in the stack where the token was found.
*
* @return void
*/
private function processString( $stackPtr ) {
$callbackFunctionName = substr( $this->tokens[ $stackPtr ]['content'], 1, -1 );
$callbackFunctionPtr = $this->phpcsFile->findNext(
T_STRING,
0,
null,
false,
$callbackFunctionName
);
if ( ! $callbackFunctionPtr ) {
// We were not able to find the function callback in the file.
return;
}
$this->processFunction( $callbackFunctionPtr );
}
/**
* Process function.
*
* @param int $stackPtr The position in the stack where the token was found.
*
* @return void
*/
private function processFunction( $stackPtr ) {
$wpQueryObjectNamePtr = $this->phpcsFile->findNext(
[ T_VARIABLE ],
$stackPtr + 1,
null,
false,
null,
true
);
if ( ! $wpQueryObjectNamePtr ) {
// Something is wrong.
return;
}
$wpQueryObjectVariableName = $this->tokens[ $wpQueryObjectNamePtr ]['content'];
$functionDefinitionPtr = $this->phpcsFile->findPrevious( [ T_FUNCTION ], $wpQueryObjectNamePtr - 1 );
if ( ! $functionDefinitionPtr ) {
// Something is wrong.
return;
}
$this->processFunctionBody( $functionDefinitionPtr, $wpQueryObjectVariableName );
}
/**
* Process closure.
*
* @param int $stackPtr The position in the stack where the token was found.
*
* @return void
*/
private function processClosure( $stackPtr ) {
$wpQueryObjectNamePtr = $this->phpcsFile->findNext(
[ T_VARIABLE ],
$stackPtr + 1,
null,
false,
null,
true
);
if ( ! $wpQueryObjectNamePtr ) {
// Something is wrong.
return;
}
$this->processFunctionBody( $stackPtr, $this->tokens[ $wpQueryObjectNamePtr ]['content'] );
}
/**
* Process function's body
*
* @param int $stackPtr The position in the stack where the token was found.
* @param string $variableName Variable name.
*
* @return void
*/
private function processFunctionBody( $stackPtr, $variableName ) {
$functionBodyScopeStart = $this->tokens[ $stackPtr ]['scope_opener'];
$functionBodyScopeEnd = $this->tokens[ $stackPtr ]['scope_closer'];
$wpQueryVarUsed = $this->phpcsFile->findNext(
[ T_VARIABLE ],
$functionBodyScopeStart + 1,
$functionBodyScopeEnd,
false,
$variableName
);
while ( $wpQueryVarUsed ) {
if ( $this->isPartOfIfConditional( $wpQueryVarUsed ) ) {
if ( $this->isEarlyMainQueryCheck( $wpQueryVarUsed ) ) {
return;
}
} elseif ( $this->isInsideIfConditonal( $wpQueryVarUsed ) ) {
if ( ! $this->isParentConditionalCheckingMainQuery( $wpQueryVarUsed ) ) {
$this->addPreGetPostsWarning( $wpQueryVarUsed );
}
} elseif ( $this->isWPQueryMethodCall( $wpQueryVarUsed, 'set' ) ) {
$this->addPreGetPostsWarning( $wpQueryVarUsed );
}
$wpQueryVarUsed = $this->phpcsFile->findNext(
[ T_VARIABLE ],
$wpQueryVarUsed + 1,
$functionBodyScopeEnd,
false,
$variableName
);
}
}
/**
* Consolidated violation.
*
* @param int $stackPtr The position in the stack where the token was found.
*
* @return void
*/
private function addPreGetPostsWarning( $stackPtr ) {
$message = 'Main WP_Query is being modified without `$query->is_main_query()` check. Needs manual inspection.';
$this->phpcsFile->addWarning( $message, $stackPtr, 'PreGetPosts' );
}
/**
* Is parent conditional checking is_main_query?
*
* @param int $stackPtr The position in the stack where the token was found.
*
* @return bool
*/
private function isParentConditionalCheckingMainQuery( $stackPtr ) {
if ( array_key_exists( 'conditions', $this->tokens[ $stackPtr ] ) === false
|| is_array( $this->tokens[ $stackPtr ]['conditions'] ) === false
|| empty( $this->tokens[ $stackPtr ]['conditions'] ) === true
) {
return false;
}
$conditionStackPtrs = array_keys( $this->tokens[ $stackPtr ]['conditions'] );
$lastConditionStackPtr = array_pop( $conditionStackPtrs );
while ( $this->tokens[ $stackPtr ]['conditions'][ $lastConditionStackPtr ] === T_IF ) {
$next = $this->phpcsFile->findNext(
[ T_VARIABLE ],
$lastConditionStackPtr + 1,
null,
false,
$this->tokens[ $stackPtr ]['content'],
true
);
while ( $next ) {
if ( $this->isWPQueryMethodCall( $next, 'is_main_query' ) === true ) {
return true;
}
$next = $this->phpcsFile->findNext(
[ T_VARIABLE ],
$next + 1,
null,
false,
$this->tokens[ $stackPtr ]['content'],
true
);
}
$lastConditionStackPtr = array_pop( $conditionStackPtrs );
}
return false;
}
/**
* Is the current code an early main query check?
*
* @param int $stackPtr The position in the stack where the token was found.
*
* @return bool
*/
private function isEarlyMainQueryCheck( $stackPtr ) {
if ( ! $this->isWPQueryMethodCall( $stackPtr, 'is_main_query' ) ) {
return false;
}
if ( array_key_exists( 'nested_parenthesis', $this->tokens[ $stackPtr ] ) === false
|| empty( $this->tokens[ $stackPtr ]['nested_parenthesis'] ) === true
) {
return false;
}
$parentheses = $this->tokens[ $stackPtr ]['nested_parenthesis'];
do {
$nestedParenthesisEnd = array_shift( $parentheses );
if ( $nestedParenthesisEnd === null ) {
// Nothing left in the array. No parenthesis found with a non-closure owner.
return false;
}
if ( isset( $this->tokens[ $nestedParenthesisEnd ]['parenthesis_owner'] )
&& $this->tokens[ $this->tokens[ $nestedParenthesisEnd ]['parenthesis_owner'] ]['code'] !== T_CLOSURE
) {
break;
}
} while ( true );
$owner = $this->tokens[ $nestedParenthesisEnd ]['parenthesis_owner'];
if ( isset( $this->tokens[ $owner ]['scope_opener'], $this->tokens[ $owner ]['scope_closer'] ) === false ) {
// This may be an inline control structure (no braces).
$next = $this->phpcsFile->findNext(
Tokens::$emptyTokens,
( $nestedParenthesisEnd + 1 ),
null,
true
);
if ( $next !== false && $this->tokens[ $next ]['code'] === T_RETURN ) {
return true;
}
return false;
}
$next = $this->phpcsFile->findNext(
[ T_RETURN ],
$this->tokens[ $this->tokens[ $nestedParenthesisEnd ]['parenthesis_owner'] ]['scope_opener'],
$this->tokens[ $this->tokens[ $nestedParenthesisEnd ]['parenthesis_owner'] ]['scope_closer'],
false,
'return',
true
);
if ( $next ) {
return true;
}
return false;
}
/**
* Is the current code a WP_Query call?
*
* @param int $stackPtr The position in the stack where the token was found.
* @param string|null $method Method.
*
* @return bool
*/
private function isWPQueryMethodCall( $stackPtr, $method = null ) {
$next = $this->phpcsFile->findNext(
Tokens::$emptyTokens,
$stackPtr + 1,
null,
true,
null,
true
);
if ( ! $next || $this->tokens[ $next ]['type'] !== 'T_OBJECT_OPERATOR' ) {
return false;
}
if ( $method === null ) {
return true;
}
$next = $this->phpcsFile->findNext(
Tokens::$emptyTokens,
$next + 1,
null,
true,
null,
true
);
return $next && $this->tokens[ $next ]['code'] === T_STRING && $method === $this->tokens[ $next ]['content'];
}
/**
* Is the current token a part of a conditional?
*
* @param int $stackPtr The position in the stack where the token was found.
*
* @return bool
*/
private function isPartOfIfConditional( $stackPtr ) {
if ( array_key_exists( 'nested_parenthesis', $this->tokens[ $stackPtr ] ) === true
&& is_array( $this->tokens[ $stackPtr ]['nested_parenthesis'] ) === true
&& empty( $this->tokens[ $stackPtr ]['nested_parenthesis'] ) === false
) {
$previousLocalIf = $this->phpcsFile->findPrevious(
[ T_IF ],
$stackPtr - 1,
null,
false,
null,
true
);
if ( $previousLocalIf !== false
&& $this->tokens[ $previousLocalIf ]['parenthesis_opener'] < $stackPtr
&& $this->tokens[ $previousLocalIf ]['parenthesis_closer'] > $stackPtr
) {
return true;
}
}
return false;
}
/**
* Is the current token inside a conditional?
*
* @param int $stackPtr The position in the stack where the token was found.
*
* @return bool
*/
private function isInsideIfConditonal( $stackPtr ) {
if ( array_key_exists( 'conditions', $this->tokens[ $stackPtr ] ) === true
&& is_array( $this->tokens[ $stackPtr ]['conditions'] ) === true
&& empty( $this->tokens[ $stackPtr ]['conditions'] ) === false
) {
$conditionStackPtrs = array_keys( $this->tokens[ $stackPtr ]['conditions'] );
$lastConditionStackPtr = array_pop( $conditionStackPtrs );
return $this->tokens[ $stackPtr ]['conditions'][ $lastConditionStackPtr ] === T_IF;
}
return false;
}
}