liip/search-bundle
最新稳定版本:2.0.0
Composer 安装命令:
composer require liip/search-bundle
包简介
This bundles provides some basic infrastructure for creating a search UI in Symfony2 applications along with integration with Google's search API
关键字:
README 文档
README
This bundle provides a uniform interface for full text search with various search engines and a controller with twig templates to render search forms and results.
Note: You are looking at Version 2 of this bundle, which saw large changes compared to Version 1.
Introduction
This search bundle simplifies adding search to your site.
Provided for you are:
- A controller to render a search box and the search page with twig templates
- A service to query google site search
- A service which provides paging for the search results
Built-in Search Engines Support
For now, Google site search is supported out of the box. There is one implementation using the Google REST API and one implementation using the Custom Search Element feature that loads the search with only javascript in the frontend.
Contributions for other services are welcome.
Installation
Install the bundle with composer require liip/search-bundle.
Include the bundle in app/Kernel.php.
Add your preferred search engine in app/config/config.yml:
liip_search: clients: google_rest: api_key: '%google.api_key%' search_key: '%google.search_key%'
Or if you use the javascript Google custom search engine:
liip_search: clients: google_cse: cse_id: '%google.search_key%'
Usage
You can display a search box anywhere on the page with the liip_search_box twig function:
{{ liip_search_box(query, 'query-field-id', 'css-class') }}
You can customize the search box with these parameters:
- query - default query to display
- fieldId - HTML id to use for the search input field. Use different ids when having more than one search box on your page, e.g. in the header and in content.
- cssClass - A css class to apply to the whole search box
<form>.
Create a route for the search action. The easiest is to just use the provided routing.xml from your main project routing.xml:
liip_search:
resource: "@LiipSearchBundle/Resources/config/routing.xml"
It defaults to the URL /search. If you want a different route, use the prefix
option when including the route or configure your own route using
%liip_search.controller.search_action% as default value for _controller.
Customizing Templating
The search result templates provided by this bundle extend the
LiipSearchBundle::layout.html.twig template. To integrate with the rest of your
site, you have two options:
- Create
app/Resources/LiipSearchBundle/views/layout.html.twigand make it extend your base layout, putting aliip_search_contentblock where you want the search results. - Create
app/Resources/LiipSearchBundle/views/Search/search.html.twigand build your own templating structure - you should be able tousethesearch_results.twig.htmltemplate to get theliip_search_contentblock.
Of course you can also override any of the templates to customize what they should do. See http://symfony.com/doc/master/book/templating.html#overriding-bundle-templates
Configuration Reference
This is the full reference of what you can configure under the liip_search key:
search_factory
string, default value: null
Specify a custom service that implements the Liip\SearchBundle\SearchFactoryInterface.
This service will be used by the controller to create Pagerfanta instances to handle
the search.
If you configure one of the search engine services, you do not need to set this field.
search_route
string, default value: liip_search
The name of the route that will handle submitted search requests.
restrict_language
boolean, default value: false
Change this to true if you want to ask the search service to restrict the results to the language of the request.
Google Search REST API Integration
Configuring any of these options enables the google search engine service. They
are located under clients.google_rest.
api_key
string, required
Your Google API key
search_key
string|array, required
The key identifying your Google Search Engine.
May be a list of keys indexed by locale to use different engines per locale.
If you control locales through separate search engines, you do not need to set
restrict_language to true unless you want your custom search engines to
receive a language restriction additionally.
api_url
string, default value: https://www.googleapis.com/customsearch/v1
The Google Search API URL for REST calls
restrict_to_site
string, default value: null
If left empty, all sites configured for the google search engines are searched. Set to a a domain to limit to that domain.
Google Custom Search Engine Integration
Configuring this section activates a different controller that renders the
Javascript fragment to enable the CSE search. This configuration is located
under clients.google_cse.
cse_id
string|array, required
The key identifying your Google Custom Search Engine.
May be a list of keys indexed by locale to use different engines per locale.
CSE does not support the restrict_language, so different search engines per
language are your only option to restrict the language of search results.
Troubleshooting
Google Custom Search Engine
If you get SearchException saying "Empty response received from Google Search
Engine API", try copying the URL that is output into a browser. You should get
JSON response, but likely it will haves an error status.
If you get a status 500 with an empty message, chances are that you need to renew the search engine in the Google admin panel.
Adding your own Search Service
Implement the Liip\SearchBundle\SearchInterface and configure it as a service.
Then set liip_search.search_client to that service name.
TODO
- Use guzzle to talk to google REST API
- Add support for refinements (more like this) with info in search result array that can be passed to SearchInterface::refineSearch
- Expose more of the google search parameters
liip/search-bundle 适用场景与选型建议
liip/search-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 79.82k 次下载、GitHub Stars 达 36, 最近一次更新时间为 2012 年 05 月 20 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「Symfony2」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 liip/search-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 liip/search-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 liip/search-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Symfony2 Barcode Generator Bundle with Twig function extension
Symfony bundle to connect AWS sns and sqs to create offline queue processing
Integrate the doctrine-translatable extension in Symfony2
Video Editor Bundle
Integrates php-amqplib with Symfony & RabbitMq. Formerly oldsound/rabbitmq-bundle.
Zend Captcha bundle
统计信息
- 总下载量: 79.82k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 36
- 点击次数: 17
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2012-05-20