wata727 / phan-query-plugin
A Phan plugin to add a new rule without writing plugins
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 0
Open Issues: 0
Type:project
Requires
- phan/phan: >=0.8.5
Requires (Dev)
- phpunit/phpunit: ^7.1
- squizlabs/php_codesniffer: ^3.2
- wata727/pahout: ^0.4.0
This package is auto-updated.
Last update: 2024-11-15 02:02:55 UTC
README
A Phan plugin to add a new rule without writing plugins. This plugin inspired by Querly.
Installation
You can install this plugin with composer.
$ composer require --dev wata727/phan-query-plugin
After that, Set this plugin path to .phan/config.php
.
<?php return [ "plugins" => [__DIR__."/../vendor/wata727/phan-query-plugin/plugins/QueryPlugin.php"] ];
Quick Start
At first, creates files as follows:
.phan/config.php
:
<?php return [ "plugins" => [__DIR__."/../vendor/wata727/phan-query-plugin/plugins/QueryPlugin.php"] ];
.phan/query.php
:
<?php return [ [ "type" => "PhanQueryCatFound", "message" => "Cat Found", "pattern" => '$cat->meow();', ] ];
test.php
:
<?php namespace Foo\Bar; class Cat { public function meow() { echo "Meow!"; } } $cat = new Cat(); $cat->meow();
Try following command:
$ vendor/bin/phan test.php
You can get the result:
test.php:12 PhanQueryCatFound Cat Found
What happened?
This plugin loads .phan/query.php
and searches for your code that matches the defined pattern
of Query.
In the above example, since the code matching $cat->meow();
existed in line 12, it was emitted as Phan's issue.
The emitted issue has type and message as well as Phan's original issue. These are type
and message
defined in your Query.
What is the difference with regular expressions?
This plugin uses AST for matching node. For example, $cat->meow($arg1, $arg2);
matches all of the following:
$cat->meow($arg1, $arg2);
$cat->meow($arg1 , $arg2);
$cat->meow($arg1,$arg2);
Query Syntax
What kind of syntax can be written in pattern
? This is PHP-like pattern matching syntax, which satisfying the following:
- The pattern expressions must be valid as PHP
- For example, a trailing semicolon is required.
- But the
<Klass>
syntax is available in the pattern.
<Klass>
Syntax
You can use <Klass>
syntax in a pattern of Query. If you use it, the following pattern matches test.php
like the above.
<?php
return [
[
"type" => "PhanQueryAllCatFound",
"message" => "Cat Found",
"pattern" => '<Foo\Bar\Cat>->meow();',
]
];
This means that the Query checks types of variables when use this pattern. Also, if you specify <any>
, it matches all variables.
Testing your Query
You can write a test to make sure the Query works correctly. For example:
<?php return [ [ "type" => "PhanQueryCatFound", "message" => "Cat Found", "pattern" => '$cat->meow();', "test" => [ "match" => <<<'EOD' <?php namespace Foo\Bar; class Cat { public function meow() { echo "Meow!"; } } $cat = new Cat(); $cat->meow(); EOD , "unmatch" => <<<'EOD' <?php namespace Foo\Bar; class Cat { public function meow() { echo "Meow!"; } } $dog = new Cat(); $dog->meow(); EOD ], ], ];
The match
value is the code that matches pattern
, and the unmatch
value is the code that not match pattern
. You can run the tests with the following command:
$ vendor/bin/phan_query_test
All 2 tests are passed!