escapehither / search-manager-bundle
This symfony bundle provide search and index features for symfony application
Requires
- php: >=5.5.9
- doctrine/doctrine-bundle: ^1.6
- doctrine/doctrine-cache-bundle: ^1.2
- doctrine/doctrine-migrations-bundle: ^1.2
- doctrine/orm: ^2.5
- elasticsearch/elasticsearch: ^5.2
- guzzlehttp/guzzle: ^6.2
- sensio/distribution-bundle: ^5.0
- sensio/framework-extra-bundle: ^3.0.2
- stof/doctrine-extensions-bundle: ^1.2
- symfony/polyfill-apcu: ^1.0
- symfony/serializer: ^3.2
- symfony/symfony: 3.*
- white-october/pagerfanta-bundle: ^1.0
Requires (Dev)
- behat/behat: ^3.3
- behat/mink: ^1.7
- behat/mink-browserkit-driver: ^1.3
- behat/mink-extension: ^2.2
- behat/mink-goutte-driver: ^1.2
- behat/mink-selenium2-driver: ^1.3
- behat/mink-zombie-driver: ^1.4
- behat/symfony2-extension: ^2.1
- behat/web-api-extension: ~1.0@dev
- escapestudios/symfony2-coding-standard: ~2.0
- phpunit/php-invoker: ~1.1
- phpunit/phpunit: ^4.8.35 || ^5.7.11 || ^6.5
- symfony/phpunit-bridge: ^3.0
This package is not auto-updated.
Last update: 2025-04-01 12:49:54 UTC
README
This bundle provide an integration for the official elastic search php.
Versions & Dependencies
Compatible with Elasticsearch 5 and 6. It requires Symfony 3 or 4. When using
The following table shows the compatibilities of different versions of the bundle.
Es search Manager | Elastic Seach php | Elasticsearch | Symfony | PHP |
---|---|---|---|---|
>= 0.2.0 | >= 5.2 | >= 5 | >= 3.2 | >=5.6 |
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require escapehither/search-manager-bundle dev-master
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the app/AppKernel.php
file of your project:
<?php // app/AppKernel.php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new EscapeHither\SearchManagerBundle\EscapeHitherSearchManagerBundle(), ); // ... } // ... }
Step 3: Create your Resource class
This bundle use The Symfony Serializer Component. Suppose you have a a resource class, add Annotation groups. Only attributes in the groups index will be normalize.
namespace Acme; use Symfony\Component\Serializer\Annotation\Groups; use EscapeHither\SearchManagerBundle\Entity\IndexableEntityInterface; class Product implements IndexableEntityInterface { /** * @Groups({"index"}) */ public $bar; /** * @var \DateTime $updatedAt */ public $updatedAt; /** * @Groups({"index"}) */ public function getBar() // is* methods are also supported { return $this->bar; } /** * This method tells doctrine to always track this entity. */ public function trackMe(){ $this->updatedAt = new \DateTime('now'); } // ... }
Step 4: Import and define configuration
-
Import config file in
app/config/config.yml
for default filter set configuration:imports: - { resource: "@EscapeHitherSearchManagerBundle/Resources/config/services.yml" } - { resource: "@EscapeHitherSearchManagerBundle/Resources/config/config.yml" }
-
Import routing files in
app/config/routing.yml
:escape_hither_security_manager: resource: "@EscapeHitherSecurityManagerBundle/Resources/config/routing.yml" prefix: /
-
Configuration reference: If you want to index your resource, add in your config file.
escape_hither_search_manager: host: es indexes: product: entity: OpenMarketPlace\ProductManagerBundle\Entity\Product index_name: open-market-place type: product facets: tags: categories: include: ['id','code','name'] tags_relation: offer.seller.id: entity: OpenMarketPlace\UserManagerBundle\Entity\Seller index_name: open-market-place type: seller field_name: commercialName display_name: Seller tag_type: terms dates: createdAt: field_name: createdAt display_name: date one tag_type: terms updatedAt: field_name: updatedAt display_name: date two tag_type: terms ranges: createddAt: field_name: createddAt display_name: range one tag_type: date updateddAt: field_name: updateddAt display_name: range two tag_type: date masterVariant.price: field_name: masterVariant.price display_name: price tag_type: price
4: Index all content
Every time you add new field, Index all document. This command will delete and rebuild all all content according to the index provided.
$ bin/console cache:clear -e prod $ bin/console cache:clear $ bin/console escapehither:esm:index:all
- Add a search page:
If you want create a new search route. in your routing.yml just add you new route like this.
genia_search: path: /search defaults: _controller: "EscapeHitherSearchManagerBundle:Default:search" template: OpenMarketPlaceSearchManagerBundle:Default:index.html.twig index : name: open-market-place type: product pagination: size: 10 methods: GET