Download the PHP package asseco-voice/laravel-json-query-builder without Composer
On this page you can find all versions of the php package asseco-voice/laravel-json-query-builder. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download asseco-voice/laravel-json-query-builder
More information about asseco-voice/laravel-json-query-builder
Files in asseco-voice/laravel-json-query-builder
Package laravel-json-query-builder
Short Description Laravel JSON query builder
License MIT
Informations about the package laravel-json-query-builder
Laravel JSON query builder
This package enables building queries from JSON objects following the special logic explained below.
Installation
Install the package through composer. It is automatically registered as a Laravel service provider.
composer require asseco-voice/laravel-json-query-builder
Usage
In order to use the package, you need to instantiate JsonQuery()
providing
two dependencies to it. One is Illuminate\Database\Eloquent\Builder
instance,
and the other is a JSON/array input.
Once instantiated, you need to run the search()
method, and query will be
constructed on the provided builder object.
Dev naming conventions for this package
- parameter is a top-level JSON key name (see the options below)
- arguments are parameter values. Everything within a top-level JSON.
- argument is a single key-value pair.
- single argument is further broken down to column / operator / value
Parameter breakdown
Parameters follow a special logic to query the DB. It is possible to use the following JSON parameters (keys):
search
- will perform the querying logic (explained in detail below)returns
- will return only the columns provided as values.order_by
- will order the results based on values provided.group_by
- will group the results based on values provided.relations
- will load the relations for the given model.limit
- will limit the results returned.offset
- will return a subset of results starting from a point given. This parameter MUST be used together withlimit
parameter.count
- will return record count.soft_deleted
- will include soft deleted models in search results.doesnt_have_relations
- will only return entries that don't have any of the specified relations.
Search
The logic is done in a "column": "operator values"
fashion in which we assume the
following:
column
represents a column in the database. Multiple keys can be separated as a new JSON key-value pair.- It is possible to search by related models using
.
as a divider i.e."relation.column": "operator value")
. Note this will execute aWHERE EXISTS
, it will not filter resulting relations if included within relations. To do aWHERE NOT EXISTS
you can ue!relation.column
. operator
is one of the available main operators for querying (listed below)values
is a semicolon (;
) separated list of values (i.e."column": "=value;value2;value3"
) which can have micro-operators on them as well (i.e."column": "=value;!value2;%value3%"
).
Main operators
=
- equals!=
- does not equal<
- less than (requires exactly one value)>
- greater than (requires exactly one value)<=
- less than or equal (requires exactly one value)>=
- greater than or equal (requires exactly one value)<>
- between (requires exactly two values)!<>
- not between (requires exactly two values)
Example:
Will perform a SELECT * FROM some_table WHERE first_name IN ('foo1', 'foo2') AND last_name NOT IN ('bar1', 'bar2')
.
In case you pass a single value for a column on string type, LIKE operator will be used instead of IN. For Postgres databases, ILIKE is used instead of LIKE to support case-insensitive search.
Will perform a SELECT * FROM some_table WHERE first_name LIKE 'foo' AND last_name NOT LIKE 'bar'
.
Micro operators
!
- negates the value. Works only on the beginning of the value (i.e.!value
).%
- performs aLIKE
query. Works only on a beginning, end or both ends of the value (i.e.%value
,value%
or%value%
).- logical operators are used to use multiple operators (you can't do
=1||2
, but=1||=2
) for a single column (order matters!):&&
enables you to connect values using AND||
enables you to connect values using OR
Will perform a SELECT * FROM some_table WHERE first_name NOT LIKE 'foo' AND last_name LIKE 'bar%'
.
Notice that here !value
behaved the same as !=
main operator. The difference
is that !=
main operator negates the complete list of values, whereas the
!value
only negates that specific value. I.e. !=value1;value2
is semantically
the same as =!value1;!value2
.
Logical operator example:
Will perform SELECT * FROM some_table WHERE first_name IN ('foo') OR first_name IN ('bar')
.
Note that logical operators are using standard bool logic precedence,
therefore x AND y OR z AND q
is the same as (x AND y) OR (z AND q)
.
Nested relation searches
You can nest another search object if the key used is a relation name which
will execute a whereHas()
query builder method.
I.e.
Returns
Using a returns
key will effectively only return the fields given within it.
This operator accepts an array of values or a single value.
Example:
Return single value:
Will perform a SELECT first_name FROM ...
Return multiple values:
Will perform a SELECT first_name, last_name FROM ...
Order by
Using order_by
key does an 'order by' based on the given key(s). Order of the keys
matters!
Arguments are presumed to be in a "column": "direction"
fashion, where direction
MUST be asc
(ascending) or desc
(descending). In case that only column is provided,
direction will be assumed to be an ascending order.
Example:
Will perform a SELECT ... ORDER BY first_name asc, last_name desc
Group by
Using group_by
key does an 'group by' based on the given key(s). Order of the keys
matters!
Arguments are presumed to be a single attribute or array of attributes.
Since group by behaves like it would in a plain SQL query, be sure to select the right fields and aggregate functions.
Example:
Will perform a SELECT ... GROUP BY last_name, first_name
Relations
It is possible to load object relations as well by using relations
parameter.
This operator accepts an array of values or a single value.
Simple
Example:
Resolve single relation:
Resolve multiple relations:
Relations, if defined properly and following Laravel convention, should be predictable to assume:
- 1:M & M:M - relation name is in plural (i.e. Contact has many Addresses, relation name is thus 'addresses')
- M:1 - relation name is in singular (i.e. Comment belongs to a Post, relation name is thus 'post')
- important: since Laravel returns API responses as snake_case, it is enabled to
provide a snake_case'd relation (even though camelCase works as well) for multi-word
relations. I.e. doing
"relations": "workspace_items"
is the equivalent of calling"relations": "workspaceItems"
, but it is recommended to use snake_case approach.
It is possible to recursively load relations using dot notation:
This will load media relations as well as resolve media types right away. If you have the need to resolve multiple second level relations you can provide an array of those:
This will load media relations together with resolved type and category for each media object.
It is also possible to stack relations using dot notation without a limit. It must be taken into account though that this can seriously hurt performance!
Complex
Relation can also be an object with nested search attributes to additionally filter out the given result set.
Example:
will load a media
relationship on the object, but only returning objects whose
media_type_id
equals to 1
.
Limit
You can limit the number of results fetched by doing:
This will do a SELECT * FROM table LIMIT 10
.
Offset
You can use offset to further limit the returned results, however it requires using limit alongside it.
This will do a SELECT * FROM table LIMIT 10 OFFSET 5
.
Count
You can fetch count of records instead of concrete records by adding the count key:
This will do a SELECT count(*) FROM table
.
Soft deleted
By default, soft deleted records are excluded from the search. This can be overridden
with soft_deleted
:
Doesn't have relations
In case you want to only find entries without a specified relation, you can do so with doesnt_have_relations
key:
If you want to specify multiple relations, you can do so in the following way:
Top level logical operators
Additionally, it is possible to group search clauses by top-level logical operator.
Available operators:
&&
AND||
OR
Using no top-level operator will assume AND operator.
Examples
These operators take in a single object, or an array of objects, with few differences worth mentioning. Single object will apply the operator on given attributes:
Resulting in . Whereas an array of objects will apply the operator between array objects, not within the objects themselves:
Resulting in (id=1 AND name=foo) OR (id=2 AND name=bar)
. This is done intentionally, default operator is
AND, thus it will be applied within objects.
If you'd like inner attributes changed to OR instead, you can go recursive:
Resulting in (id=1 OR name=foo) OR (id=2 AND name=bar)
.
Absurd examples
Since logic is made recursive, you can go as absurd and deep as you'd like, but at this point it may be smarter to revise what do you actually want from your life and universe:
Breakdown:
- Step 1
Result: (id=2 OR id=3) AND name=foo
- Step 2
Result: id=1 AND (name LIKE foo% AND name LIKE %bar)
- Step 3 (merge)
Result: (step1) OR (step2)
-
Step 4
we=cool
- Step 5 (merge)
Result: (step3) AND (step4)
- Step 6 (ultimate merge)
Result: (step5) OR love<3 OR recursion=rrr
The final query (kill it with fire):
((((id=2 OR id=3) AND name=foo) OR (id=1 AND (name LIKE foo% AND name LIKE %bar))) AND we=cool) OR love<3 OR recursion=rrr
Config
Aside from standard query string search, it is possible to provide additional package configuration.
Publish the configuration by running
php artisan vendor:publish --provider="Asseco\JsonQueryBuilder\JsonQueryServiceProvider"
.
All the keys within the configuration file have a detailed explanation above each key.
Package extensions
Once configuration is published you will see several keys which you can extend with your custom code.
- request parameters are registered under
request_parameters
config key. You can extend this functionality by adding your own custom parameter. It needs to extendAsseco\JsonQueryBuilder\RequestParameters\AbstractParameter
in order to work. - operators are registered under
operators
config key. Those can be extended by adding a class which extendsAsseco\JsonQueryBuilder\SearchCallbacks\AbstractCallback
. - types are registered under
types
config key. Those can be extended by adding a class which extendsAsseco\JsonQueryBuilder\Types\AbstractType
.