Skip to content
This repository has been archived by the owner on Apr 10, 2020. It is now read-only.

Commit

Permalink
Feature: Initial implementation of ulrack/search (#1)
Browse files Browse the repository at this point in the history
- `Ulrack\Search\Common\FilterGroupInterface`
- `Ulrack\Search\Common\FilterInterface`
- `Ulrack\Search\Common\LimiterInterface`
- `Ulrack\Search\Common\PagerInterface`
- `Ulrack\Search\Common\SearchCriteriaCompilerInterface`
- `Ulrack\Search\Common\SearchCriteriaInterface`
- `Ulrack\Search\Common\SorterInterface`
- `Ulrack\Search\Criteria\FilterGroup`
- `Ulrack\Search\Criteria\Filter`
- `Ulrack\Search\Criteria\Limiter`
- `Ulrack\Search\Criteria\Pager`
- `Ulrack\Search\Criteria\SearchCriteria`
- `Ulrack\Search\Criteria\Sorter`
- Unit Tests
  • Loading branch information
mfrankruijter authored Mar 4, 2019
1 parent b4ff06e commit 8e0ebf5
Show file tree
Hide file tree
Showing 22 changed files with 1,140 additions and 0 deletions.
40 changes: 40 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.0.0 - 2019-03-04
### Added
- Initial implementation of ulrack/search
- `Ulrack\Search\Common\FilterGroupInterface`
- `Ulrack\Search\Common\FilterInterface`
- `Ulrack\Search\Common\LimiterInterface`
- `Ulrack\Search\Common\PagerInterface`
- `Ulrack\Search\Common\SearchCriteriaCompilerInterface`
- `Ulrack\Search\Common\SearchCriteriaInterface`
- `Ulrack\Search\Common\SorterInterface`
- `Ulrack\Search\Criteria\FilterGroup`
- `Ulrack\Search\Criteria\Filter`
- `Ulrack\Search\Criteria\Limiter`
- `Ulrack\Search\Criteria\Pager`
- `Ulrack\Search\Criteria\SearchCriteria`
- `Ulrack\Search\Criteria\Sorter`
- Unit Tests

### Changed
- Nothing

### Deprecated
- Nothing

### Removed
- Nothing

### Fixed
- Nothing

### Security
- Nothing

[Unreleased]: https://github.com/ulrack/search/compare/1.0.0...HEAD
174 changes: 174 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,174 @@
[![Build Status](https://travis-ci.com/ulrack/search.svg?branch=master)](https://travis-ci.com/ulrack/search)

# Ulrack Search

Ulrack Search is an implementation of search criteria for applications.
It tries to talk to data in application through a common interface.

## Installation

To install the package run the following command:

```
composer require ulrack/search
```

## Usage

### Search Criteria Compilers

Search criteria compilers are used to compile a filled search criteria object.
The output can be used by a package apply the search criteria to the data query.

There is no implementation provided in this package for a compiler.
This is because it is application specific.

A search criteria compiler can be created by extending the `\Ulrack\Search\Common\SearchCriteriaCompilerInterface`.
The implementation expects one function `compile`.
The function accepts a `\Ulrack\Search\Common\SearchCriteriaInterface` object as an argument.
This object should then be compiled to whatever the application expects.

### Search Criteria

Search criteria objects are build on the `\Ulrack\Search\Common\SearchCriteriaInterface`.
These objects group all underlying search related objects by getting these injected.

The implementation is provided in the class `\Ulrack\Search\Criteria\SearchCriteria`.

The `SearchCriteria` object can receive and retrieve the following objects:
- `\Ulrack\Search\Common\FilterGroupInterface`
Can be added by calling: `addFilterGroup` with the `FilterGroup` as an argument.
Can be retrieved by calling: `getFilterGroups` and will return an array of `FilterGroups`.

- `\Ulrack\Search\Common\LimiterInterface`
Can be added by calling: `addLimiter` with the `Limiter` as an argument.
Can be retrieved by calling: `getLimiters` and will return an array of `Limiters`.

- `\Ulrack\Search\Common\PagerInterface`
Can be added by calling: `addPager` with the `Pager` as an argument.
Can be retrieved by calling: `getPagers` and will return an array of `Pagers`.

- `\Ulrack\Search\Common\SorterInterface`
Can be added by calling: `addSorter` with the `Sorter` as an argument.
Can be retrieved by calling: `getSorters` and will return an array of `Sorters`.

### Filter Groups

Filter groups are used to combine filters into one (in the case of SQL `AND` separated) group of filters.
Multiple `FilterGroups` on a `SearchCriteria` would result in (in the case of SQL) `OR` separated filters.

A `Filter` can be added to the filter group by calling: `addFilter`.
It accepts an instance of `\Ulrack\Search\Common\FilterInterface` as its argument.
To retrieve the added `Filters` in an array, the function `getFilters` can be called.

### Filters

Filters are used to narrow down the results of a request by matching values to a field with a comparator.

Filters expect their arguments in the constructor.
The first argument expects a field for the filter.
The second argument expects a comparator,
which should be one of of the following out of the `\Ulrack\Search\Common\FilterInterface`:
- `FilterInterface::COMPARATOR_EQ`
Equals comparator "=". Checks if the field equals the value.

- `FilterInterface::COMPARATOR_NEQ`
Not equals comparator "!=". Checks if the field does not equal the value.

- `FilterInterface::COMPARATOR_GT`
Greater than comparator ">". Check if the field is greater than the value.

- `FilterInterface::COMPARATOR_GTEQ`
Greater than or equals comparator ">=".
Checks if the field is greater than or equals the value.

- `FilterInterface::COMPARATOR_LT`
Less than comparator "<". Check if the field is less than the value.

- `FilterInterface::COMPARATOR_LTEQ`
Less than or equals comparator "<=".
Checks if the field is less than or equals the value.

- `FilterInterface::COMPARATOR_IN`
In comparator. Checks if the field occurs in the value.

- `FilterInterface::COMPARATOR_NIN`
Not in comparator. Checks if the field does not occur in the value.

- `FilterInterface::COMPARATOR_LIKE`
Like comparator. Checks if the field looks like the value.

- `FilterInterface::COMPARATOR_NOT`
Not comparator. Checks if the field is not like the value.
Can be used for example in a query for a NOT NULL statement.

The third argument expects the value which should be compared.

The field can be retrieved with the `getField` function.
The comparator can be retrieved with the `getComparator` function.
The value can be retrieved with the `getValue` function.

### Limiters

Limiters are used to reduce the size of the result.

Limiters expect their arguments in the constructor.
One variadic argument can be supplied which consists of the fields.

The fields can be retrieved with the `getFields` function.

### Pagers

Pagers are used to retrieve a section of the results.

Pagers expect their arguments in the constructor.
The first argument of a `Pager` expects an integer which indicates the page.
The second argument of a `Pager` expects an integer which determines the page size.

The page can be retrieved with the function `getPage`.
The size can be retrieved with the function `getSize`.

### Sorters

Sorters are used to sort the results of a data request.

Sorters expect their arguments in the constructor.
The first argument of a `Sorter` expects a string which indicates the field.
The second argument of a `Sorter` expects a string which indicates the direction.

The direction can be one of the following from the `\Ulrack\Search\Common\SorterInterface`:
- `SorterInterface::DIRECTION_ASC`
This sets the sorting pattern to ascending.

- `SorterInterface::DIRECTION_DESC`
This sets the sorting pattern to descending.

## Change log

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

## Contributing

Please see [CONTRIBUTING](CONTRIBUTING.md) and [CODE_OF_CONDUCT](CODE_OF_CONDUCT.md) for details.

## MIT License

Copyright (c) 2019 Jyxon

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
48 changes: 48 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"name": "ulrack/search",
"description": "Search objects for Ulrack.",
"keywords": ["search"],
"type": "library",
"license": "MIT",
"prefer-stable": true,
"minimum-stability": "stable",
"require": {
"php": "^7.2"
},
"authors": [
{
"name": "Ulrack",
"homepage": "https://www.ulrack.com/",
"role": "Developer"
}
],
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Ulrack\\Search\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ulrack\\Search\\Tests\\": "tests/"
}
},
"archive": {
"exclude": [
"/tests",
"/.gitignore",
"/.travis.yml",
"/phpunit.xml",
"/phpcs.xml",
"/PULL_REQUEST_TEMPLATE.md",
"/CODE_OF_CONDUCT.md",
"/CONTRIBUTING.md"
]
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"squizlabs/php_codesniffer": "^3.4"
}
}
26 changes: 26 additions & 0 deletions src/Common/FilterGroupInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* See LICENSE for license details.
*/

namespace Ulrack\Search\Common;

interface FilterGroupInterface
{
/**
* Retrieves filters from the FilterGroupInterface.
*
* @return FilterInterface[]
*/
public function getFilters(): array;

/**
* Add filter to the FilterGroupInterface
*
* @param FilterInterface $filter
*
* @return void
*/
public function addFilter(FilterInterface $filter): void;
}
Loading

0 comments on commit 8e0ebf5

Please sign in to comment.