File tree

1 file changed

+268
-0
lines changed

1 file changed

+268
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,268 @@
1+
The JsonPath Component
2+
======================
3+
4+
.. versionadded:: 7.3
5+
6+
The JsonPath component was introduced in Symfony 7.3 as an
7+
:doc:`experimental feature </contributing/code/experimental>`.
8+
9+
The JsonPath component provides a powerful way to query and extract data from
10+
JSON structures. It implements the `RFC 9535 - JSONPath`_
11+
standard, allowing you to navigate complex JSON data with ease.
12+
13+
Just as the :doc:`DomCrawler component </components/dom_crawler>` allows you to navigate and query HTML/XML documents
14+
using XPath, the JsonPath component provides a similar experience to traverse and search JSON structures
15+
using JSONPath expressions. The component also offers an abstraction layer for data extraction.
16+
17+
Installation
18+
------------
19+
20+
You can install the component in your project using Composer:
21+
22+
.. code-block:: terminal
23+
24+
$ composer require symfony/json-path
25+
26+
.. include:: /components/require_autoload.rst.inc
27+
28+
Usage
29+
-----
30+
31+
To start querying a JSON document, first create a :class:`Symfony\\Component\\JsonPath\\JsonCrawler`
32+
object from a JSON string. For the following examples, we'll use this sample
33+
"bookstore" JSON data::
34+
35+
use Symfony\Component\JsonPath\JsonCrawler;
36+
37+
$json = <<<'JSON'
38+
{
39+
"store": {
40+
"book": [
41+
{
42+
"category": "reference",
43+
"author": "Nigel Rees",
44+
"title": "Sayings of the Century",
45+
"price": 8.95
46+
},
47+
{
48+
"category": "fiction",
49+
"author": "Evelyn Waugh",
50+
"title": "Sword of Honour",
51+
"price": 12.99
52+
},
53+
{
54+
"category": "fiction",
55+
"author": "Herman Melville",
56+
"title": "Moby Dick",
57+
"isbn": "0-553-21311-3",
58+
"price": 8.99
59+
},
60+
{
61+
"category": "fiction",
62+
"author": "John Ronald Reuel Tolkien",
63+
"title": "The Lord of the Rings",
64+
"isbn": "0-395-19395-8",
65+
"price": 22.99
66+
}
67+
],
68+
"bicycle": {
69+
"color": "red",
70+
"price": 399
71+
}
72+
}
73+
}
74+
JSON;
75+
76+
$crawler = new JsonCrawler($json);
77+
78+
Once you have the crawler instance, use its :method:`Symfony\\Component\\JsonPath\\JsonCrawler::find` method to start querying
79+
the data. This method always returns an array of matching values.
80+
81+
Querying with Expressions
82+
-------------------------
83+
84+
The primary way to query the JSON is by passing a JSONPath expression string
85+
to the :method:`Symfony\\Component\\JsonPath\\JsonCrawler::find` method.
86+
87+
Accessing a Specific Property
88+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
89+
90+
Use dot-notation for object keys and square brackets for array indices. The root
91+
of the document is represented by ``$``::
92+
93+
// Get the title of the first book in the store
94+
$titles = $crawler->find('$.store.book[0].title');
95+
96+
// $titles is ['Sayings of the Century']
97+
98+
While dot-notation is common, JSONPath offers alternative syntaxes which can be more flexible. For instance, bracket notation (`['...']`) is required if a key contains spaces or special characters.
99+
100+
::
101+
102+
// This is equivalent to the previous example and works with special keys
103+
$titles = $crawler->find('$["store"]["book"][0]["title"]');
104+
105+
// You can also build the query programmatically for more complex scenarios
106+
use Symfony\Component\JsonPath\JsonPath;
107+
108+
$path = (new JsonPath())->key('store')->key('book')->first()->key('title');
109+
$titles = $crawler->find($path);
110+
111+
Searching with the Descendant Operator
112+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
113+
114+
The descendant operator (``..``) recursively searches for a given key, allowing
115+
you to find values without specifying the full path.
116+
117+
::
118+
119+
// Get all authors from anywhere in the document
120+
$authors = $crawler->find('$..author');
121+
122+
// $authors is ['Nigel Rees', 'Evelyn Waugh', 'Herman Melville', 'John Ronald Reuel Tolkien']
123+
124+
Filtering Results
125+
~~~~~~~~~~~~~~~~~
126+
127+
JSONPath includes a powerful filter syntax (``?(<expression>)``) to select items
128+
based on a condition. The current item within the filter is referenced by ``@``.
129+
130+
::
131+
132+
// Get all books with a price less than 10
133+
$cheapBooks = $crawler->find('$.store.book[?(@.price < 10)]');
134+
135+
/*
136+
$cheapBooks contains two book objects:
137+
the one by "Nigel Rees" and the one by "Herman Melville"
138+
*/
139+
140+
Building Queries Programmatically
141+
---------------------------------
142+
143+
For more dynamic or complex query building, you can use the fluent API provided
144+
by the :class:`Symfony\\Component\\JsonPath\\JsonPath` class. This allows you
145+
to construct a query object step-by-step. The ``JsonPath`` object can then be
146+
passed to the crawler's :method:`Symfony\\Component\\JsonPath\\JsonCrawler::find` method.
147+
148+
The main advantage of the programmatic builder is that it automatically handles
149+
the correct escaping of keys and values, preventing syntax errors.
150+
151+
::
152+
153+
use Symfony\Component\JsonPath\JsonPath;
154+
155+
$path = (new JsonPath())
156+
->key('store') // Selects the 'store' key
157+
->key('book') // Then the 'book' key
158+
->index(1); // Then the item at index 1 (the second book)
159+
160+
// The created $path object is equivalent to the string '$["store"]["book"][1]'
161+
$book = $crawler->find($path);
162+
163+
// $book contains the book object for "Sword of Honour"
164+
165+
The ``JsonPath`` class provides several methods to build your query:
166+
167+
``key(string $name)``
168+
Adds a key selector. The key name will be properly escaped.
169+
170+
::
171+
172+
// Creates the path '$["key\"with\"quotes"]'
173+
$path = (new JsonPath())->key('key"with"quotes');
174+
175+
``deepScan()``
176+
Adds the descendant operator ``..`` to perform a recursive search from the
177+
current point in the path.
178+
179+
::
180+
181+
// Get all prices in the store: '$["store"]..["price"]'
182+
$path = (new JsonPath())->key('store')->deepScan()->key('price');
183+
184+
``all()``
185+
Adds the wildcard operator ``[*]`` to select all items in an array or object.
186+
187+
::
188+
189+
// Creates the path '$["store"]["book"][*]'
190+
$path = (new JsonPath())->key('store')->key('book')->all();
191+
192+
``index(int $index)``
193+
Adds an array index selector.
194+
195+
``first()`` / ``last()``
196+
Shortcuts for ``index(0)`` and ``index(-1)`` respectively.
197+
198+
::
199+
200+
// Get the last book: '$["store"]["book"][-1]'
201+
$path = (new JsonPath())->key('store')->key('book')->last();
202+
203+
``slice(int $start, ?int $end = null, ?int $step = null)``
204+
Adds an array slice selector ``[start:end:step]``.
205+
206+
::
207+
208+
// Get books from index 1 up to (but not including) index 3
209+
// Creates the path '$["store"]["book"][1:3]'
210+
$path = (new JsonPath())->key('store')->key('book')->slice(1, 3);
211+
212+
// Get every second book from the first four books
213+
// Creates the path '$["store"]["book"][0:4:2]'
214+
$path = (new JsonPath())->key('store')->key('book')->slice(0, 4, 2);
215+
216+
``filter(string $expression)``
217+
Adds a filter expression. The expression string is the part that goes inside
218+
the ``?()`` syntax.
219+
220+
::
221+
222+
// Get expensive books: '$["store"]["book"][?(@.price > 20)]'
223+
$path = (new JsonPath())
224+
->key('store')
225+
->key('book')
226+
->filter('@.price > 20');
227+
228+
Advanced Querying
229+
-----------------
230+
231+
For a complete overview of advanced operators like wildcards and functions within
232+
filters, please refer to the `Querying with Expressions`_ section above. All these
233+
features are supported and can be combined with the programmatic builder where
234+
appropriate (e.g., inside a ``filter()`` expression).
235+
236+
Error Handling
237+
--------------
238+
239+
The component will throw specific exceptions for invalid input or queries:
240+
241+
* :class:`Symfony\\Component\\JsonPath\\Exception\\InvalidArgumentException`: Thrown if the input to the ``JsonCrawler`` constructor is not a valid JSON string.
242+
* :class:`Symfony\\Component\\JsonPath\\Exception\\InvalidJsonStringInputException`: Thrown during a ``find()`` call if the JSON string is malformed (e.g., syntax error).
243+
* :class:`Symfony\\Component\\JsonPath\\Exception\\JsonCrawlerException`: Thrown for errors within the JsonPath expression itself, such as using an unknown function.
244+
245+
::
246+
247+
use Symfony\Component\JsonPath\Exception\InvalidJsonStringInputException;
248+
use Symfony\Component\JsonPath\Exception\JsonCrawlerException;
249+
250+
try {
251+
// Example of malformed JSON
252+
$crawler = new JsonCrawler('{"store": }');
253+
$crawler->find('$..*');
254+
} catch (InvalidJsonStringInputException $e) {
255+
// ... handle error
256+
}
257+
258+
try {
259+
// Example of an invalid query
260+
$crawler->find('$.store.book[?unknown_function(@.price)]');
261+
} catch (JsonCrawlerException $e) {
262+
// ... handle error
263+
}
264+
265+
Learn more
266+
----------
267+
268+
.. _`RFC 9535 - JSONPath`: https://datatracker.ietf.org/doc/html/rfc9535

0 commit comments

Comments
 (0)