mirror of
https://github.com/gorhill/uBlock.git
synced 2025-04-07 00:41:19 +08:00
Add minimal in-code documentation for JSONPath
This commit is contained in:
parent
b18daa53aa
commit
caa25cdaf3
@ -20,7 +20,60 @@
|
||||
|
||||
*/
|
||||
|
||||
/******************************************************************************/
|
||||
/**
|
||||
* Implement the parsing of uBO-flavored JSON path syntax
|
||||
*
|
||||
* Reference to original JSON path syntax:
|
||||
* https://goessner.net/articles/JsonPath/index.html
|
||||
*
|
||||
* uBO-flavored JSON path implementation differs as follow:
|
||||
*
|
||||
* - Both $ and @ are implicit. Though you can use them, you do not have to.
|
||||
* Use $ only when the implicit context is not that of root. Example:
|
||||
* - Official: $..book[?(@.isbn)]
|
||||
* - uBO-flavored: ..book[?(.isbn)]
|
||||
*
|
||||
* - uBO-flavor syntax do not (yet) support:
|
||||
* - Union (,) operator.
|
||||
* - Array slice operator
|
||||
*
|
||||
* - Regarding filter expressions, uBO-flavored JSON path supports a limited
|
||||
* set of expressions since unlike the official implementation, uBO can't use
|
||||
* JS eval() to evaluate arbitrary JS expressions. The operand MUST be valid
|
||||
* JSON. The currently supported expressions are:
|
||||
* - ==: strict equality
|
||||
* - !=: strict inequality
|
||||
* - <: less than
|
||||
* - <=: less than or equal to
|
||||
* - >: greater than
|
||||
* - >=: greater than or equal to
|
||||
* - ^=: stringified value starts with
|
||||
* - $=: stringified value ends with
|
||||
* - *=: stringified value includes
|
||||
*
|
||||
* - Examples (from "JSONPath examples" at reference link)
|
||||
* - .store.book[*].author
|
||||
* - ..author
|
||||
* - .store.*
|
||||
* - .store..price
|
||||
* - ..book[2]
|
||||
* - ..book[?(.isbn)]
|
||||
* - ..book[?(.price<10)]
|
||||
* - ..*
|
||||
*
|
||||
* uBO-flavored syntax supports assigning a value to a resolved JSON path by
|
||||
* appending `=[value]` to the JSON path. The assigned value MUST be valid JSON.
|
||||
* Examples:
|
||||
* - .store..price=0
|
||||
* - .store.book[*].author="redacted"
|
||||
*
|
||||
* A JSONPath instance can be use to compile a JSON path query, and the result
|
||||
* of the compilation can be applied to different objects. When a JSON path
|
||||
* query does not assign a value, the resolved property will be removed.
|
||||
*
|
||||
* More capabilities can be added in the future as needed.
|
||||
*
|
||||
* */
|
||||
|
||||
export class JSONPath {
|
||||
static create(query) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user