robotomize / fujes
This package is abandoned and no longer maintained.
No replacement package was suggested.
Library for the fuzzy search to JSON document.
0.4.0.0
2015-10-21 13:21 UTC
Requires
- php: >=5.6.0
- dflydev/markdown: ^1.0
- doctrine/instantiator: ^1.0
- erusev/parsedown: ^1.6
- monolog/monolog: ^1.17
- nesbot/carbon: ^1.20
- phpdocumentor/reflection-docblock: ^2.0
- sebastian/environment: ^1.3
- sebastian/exporter: ^1.2
- sebastian/global-state: ^1.1
- sebastian/recursion-context: ^1.0
Requires (Dev)
- codeclimate/php-test-reporter: dev-master
- phpspec/prophecy: ^1.5
- phpunit/php-code-coverage: ^3.0
- phpunit/php-invoker: ^1.1
- phpunit/php-text-template: ^1.2
- phpunit/php-timer: ^1.0
- phpunit/php-token-stream: ^1.4
- phpunit/phpunit: ^5.0
- phpunit/phpunit-mock-objects: ^3.0
- squizlabs/php_codesniffer: ^2.3
This package is not auto-updated.
Last update: 2020-08-25 22:47:12 UTC
README
Why?
Firstly, it is the implementation of the search on the format of the data in PHP. You can look up information on the fly. You can look for anything to JSON files. This is useful when your service accesses a different API.
The basis of the algorithm is taken Levenshtein.
Requirements
- php 5.6+
Installation
install composer (https://getcomposer.org/download/) composer require robotomize/fujes
or
git clone https://github.com/robotomize/fujes.git
Usage
Fast, minimal params, go
<?php use robotomize\Fujes\SearchFactory; /** * * I want to find some planes */ print SearchFactory::find( 'http://api.travelpayouts.com/data/planes.json', 'Tu' )->fetchOne() . PHP_EOL; print SearchFactory::find( 'http://api.travelpayouts.com/data/planes.json', 'Boing 7' )->fetchOne() . PHP_EOL; print SearchFactory::find( 'http://api.travelpayouts.com/data/planes.json', 'An24' )->fetchOne() . PHP_EOL;
Another example
Grep is used for highlighting
<?php /** * I want to find some airports */ print SearchFactory::find( 'http://api.travelpayouts.com/data/airports.json ', 'Sheremetievo', 1, false )->fetchOne()['name'] . PHP_EOL; print SearchFactory::find( 'http://api.travelpayouts.com/data/airports.json ', 'Domogedov', 1, false )->fetchOne()['en'] . PHP_EOL; print SearchFactory::find( 'http://api.travelpayouts.com/data/airports.json ', 'Yugnosahalinsk', 1, false )->fetchOne()['en'] . PHP_EOL; print SearchFactory::find( 'http://api.travelpayouts.com/data/airports.json ', 'Puklovo', 1, false )->fetchOne()['en'] . PHP_EOL;
With full options
<?php use robotomize\Fujes\SearchFacade; use robotomize\Fujes\SearchFactory; // With factory print SearchFactory::createSearchEngine( '/path/to/jsonurl', 'What are searching for string', 1, true, false, 1, 'master' )->fetchOne() . PHP_EOL; print SearchFactory::createSearchEngine( '/path/to/jsonurl', 'What are searching for string', 1, true, true, 1, 'master' )->fetchFew(3) . PHP_EOL;
Documentation for Factory && Facade
Parameters
- path to json file '/go/to/path/name.json' or 'http://myapi/1.json'
- search line. 'search string'
- the depth of the array. (1-..) . Nesting output array. You will use a value of 1 or 2 the most.
- Display in json or PHP array. Output back to JSON?(true, false)
- Fetch one or more results. Get a set of results? Put true if you need to bring some results.
- Quality, 1 by default. @deprecated, but using. 1 default
- Version, master or dev. If you put the dev logs will be written about the exclusion or successful and not successful recognition. Once you see all the exceptions that fall.
Usage with example.php
Basic examples you can try that.
These examples work if you do
- git clone https://github.com/robotomize/fujes.git
- php -q src/example.php
<?php
php -q src/example.php
Fetch one entry
<?php use robotomize\Fujes\SearchFacade; use robotomize\Fujes\SearchFactory; /** * Helper options. Search into biographical-directory-footnotes.json. * Match string Christensen * Output encode to json */ $options = [ 'json_file_name' => __DIR__ . '/data/biographical-directory-footnotes.json', 'search_string' => 'Christensen', 'depth_into_array' => '1', 'output_json' => true, 'multiple_result' => false, 'search_quality' => 1, 'version' => 'dev' ]; $searchObject = new SearchFacade( $options['json_file_name'], $options['search_string'], $options['depth_into_array'], $options['output_json'], $options['multiple_result'], $options['search_quality'], $options['version'] ); print $searchObject->fetchOne(); /** * Output this * * {"item":"Donna Christian-Green, St. Croix ","note":"[5125: * Biographical information under Donna Marie Christian Christensen. ]", * "line":56939} */
Next, fetch few entries.
<?php /** * Get exception */ try { print $searchObject->fetchFew(3) . PHP_EOL; } catch (\Exception $ex) { print $ex->getMessage() . PHP_EOL; /** * Output this exception * multipleResult flag off, use $this->setMultipleResult(true) * and call this function again */ }
Set up $multipleResult = trueand everything will be fine.
<?php $searchObject->setMultipleResult(true); /** * And this work */ print $searchObject->fetchFew(3) . PHP_EOL;
Factory
<?php /** * The following example, you can use the factory. */ print SearchFactory::createSearchEngine( __DIR__ . '/../src/data/cities.json', 'vladvostk', 2, false, false, 1, 'dev' )->fetchOne()['name'] . PHP_EOL; print SearchFactory::createSearchEngine( __DIR__ . '/../src/data/cities.json', 'Mosco', 1, true, false, 1, 'dev' )->fetchOne() . PHP_EOL;
Another factory example
<?php print SearchFactory::createSearchEngine( __DIR__ . '/data/biographical-directory-footnotes.json', 'linkoln', 1, true, true, 1, 'dev' )->fetchFew(6) . PHP_EOL;
License
Satis is licensed under the MIT License - see the LICENSE file for details