Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elastic/app-search-php
Elastic App Search Official PHP Client
https://github.com/elastic/app-search-php
api-client elastic elastic-app-search php search swiftype
Last synced: 6 days ago
JSON representation
Elastic App Search Official PHP Client
- Host: GitHub
- URL: https://github.com/elastic/app-search-php
- Owner: elastic
- License: apache-2.0
- Created: 2019-06-05T11:44:30.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-08T15:42:33.000Z (5 months ago)
- Last Synced: 2024-12-16T15:16:45.163Z (7 days ago)
- Topics: api-client, elastic, elastic-app-search, php, search, swiftype
- Language: PHP
- Homepage: https://www.elastic.co/products/app-search
- Size: 366 KB
- Stars: 52
- Watchers: 24
- Forks: 21
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
> **⚠️ This client is deprecated ⚠️**
>
> As of Enterprise Search version 7.13.0, we are directing users to the new [Enterprise Search PHP Client](https://github.com/elastic/enterprise-search-php) and
> deprecating this client.
>
> This client will be compatible with all Enterprise Search 7.x releases, but will not be compatible with 8.x releases. Our development effort on this project will
> be limited to bug fixes. All future enhancements will be focused on the Enterprise Search PHP Client.
>
> Thank you! - Elastic> A first-party PHP client for building excellent, relevant search experiences with [Elastic App Search](https://www.elastic.co/products/app-search).
## Contents
- [Getting started](#getting-started-)
- [Usage](#usage)
- [Development](#development)
- [FAQ](#faq-)
- [Contribute](#contribute-)
- [License](#license-)***
## Getting started 🐣
Using this client assumes that you have already an instance of Elastic App Search up and running.
You can find more information about Elastic App Search at : https://www.elastic.co/app-search.
You can install the client in your project by using composer:
```bash
composer require elastic/app-search
```### Versioning
This client is versioned and released alongside App Search.
To guarantee compatibility, use the most recent version of this library within the major version of the corresponding App Search implementation.
For example, for App Search `7.3`, use `7.3` of this library or above, but not `8.0`.
If you are using the [SaaS version available on swiftype.com](https://app.swiftype.com/as) of App Search, you should use the version 7.5.x of the client.
## Usage
### Configuring the client
#### Basic client instantiation
To instantiate a new client you can use `\Elastic\AppSearch\Client\ClientBuilder`:
```php
$apiEndpoint = 'http://localhost:3002/';
$apiKey = 'private-XXXXXXXXXXXX';
$clientBuilder = \Elastic\AppSearch\Client\ClientBuilder::create($apiEndpoint, $apiKey);$client = $clientBuilder->build();
```**Notes:**
- The resulting client will be of type `\Elastic\AppSearch\Client\Client`
- You can find the API endpoint and your API key URL in the credentials sections of the App Search dashboard.
- You can use any type of API Key (private, public or admin). The client will throw an exception if you try to execute an action that is not authorized for the key used.
### Basic usage
#### Retrieve or create an engine
Most methods of the API require that you have access to an Engine.
To check if an Engine exists and retrieve its configuration, you can use the `Client::getEngine` method :
```php
$engine = $client->getEngine('my-engine');
```If the Engine does not exists yet, you can create it by using the `Client::createEngine` method :
```php
$engine = $client->createEngine('my-engine', 'en');
```The second parameter (`$language`) is optional. Set it to `null` to apply the `universal` language.
[Read more](https://swiftype.com/documentation/app-search/api/engines#multi-language) about language support.
#### Index some documents
You can use the `Client::indexDocuments` method to index some documents into the Engine:
```php
$documents = [
['id' => 'first-document', 'name' => 'Document name', 'description' => 'Document description'],
['id' => 'other-document', 'name' => 'Other document name', 'description' => 'Other description'],
];$indexingResults = $client->indexDocuments('my-engine', $documents);
```The `$indexingResults` array will contain the result of the indexation of each documents. You should always check the content of the result.
[Read more](https://swiftype.com/documentation/app-search/api/documents#create) about document indexing.
#### Search
You can use the `Client::search` method to search in your Engine:
```php
$searchParams = [
'page' => ['current' => 1, 'size' => 10]
];$searchResponse = $client->search('my-engine', 'search text', $searchParams);
```
If you want to match all documents you can use and empty search query `''` as second parameter (`$queryText`).The `$searchRequestParams` parameter is optional and can be used to use advanced search features. Allowed params are :
Param name | Documentation URL
--------------- | ----------------------------------------------------------------------
`page` | https://swiftype.com/documentation/app-search/api/search#paging
`filters` | https://swiftype.com/documentation/app-search/api/search/filters
`facets` | https://swiftype.com/documentation/app-search/api/search/facets
`sort` | https://swiftype.com/documentation/app-search/api/search/sorting
`boosts` | https://swiftype.com/documentation/app-search/api/search/boosts
`search_fields` | https://swiftype.com/documentation/app-search/api/search/search-fields
`result_fields` | https://swiftype.com/documentation/app-search/api/search/result-fields
`group` | https://swiftype.com/documentation/app-search/api/search/groupingThe search response will contains at least a meta field and a results field as shown in this example:
```php
[
'meta' => [
'warnings' => [],
'page' => [
'current' => 1,
'total_pages' => 1,
'total_results' => 1,
'size' => 10
],
'request_id' => 'feff7cf2359a6f6da84586969ef0ca89'
],
'results' => [
[
'id' => ['raw' => 'first-document'],
'name' => ['raw' => 'Document name'],
'description' => ['raw' => ['Document description']
]
]
]
]
```### Clients methods
Method | Description | Documentation
------------|-------------|--------------
**`createEngine`**| Creates a new engine.
**Parameters :**
- `$name` (required)
- `$language`
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/engines#create)
**`createMetaEngine`**| Creates a new meta engine.
**Parameters :**
- `$name` (required)
- `$sourceEngines` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/engines#create)
**`addMetaEngineSource`**| Add a source engine to an existing meta engine.
**Parameters :**
- `$engineName` (required)
- `$sourceEngines` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/meta-engines#add-source-engines)
**`createCuration`**| Create a new curation.
**Parameters :**
- `$engineName` (required)
- `$queries` (required)
- `$promotedDocIds`
- `$hiddenDocIds`
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/curations#create)
**`createSynonymSet`**| Create a new synonym set.
**Parameters :**
- `$engineName` (required)
- `$synonyms` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/synonyms#create)
**`deleteCuration`**| Delete a curation by id.
**Parameters :**
- `$engineName` (required)
- `$curationId` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/curations#destroy)
**`deleteDocuments`**| Delete documents by id.
**Parameters :**
- `$engineName` (required)
- `$documentIds` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/documents#partial)
**`deleteEngine`**| Delete an engine by name.
**Parameters :**
- `$engineName` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/engines#delete)
**`deleteMetaEngineSource`**| Delete a source engine from a meta engine.
**Parameters :**
- `$engineName` (required)
- `$sourceEngines` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/meta-engines#remove-source-engines)
**`deleteSynonymSet`**| Delete a synonym set by id.
**Parameters :**
- `$engineName` (required)
- `$synonymSetId` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/synonyms#delete)
**`getApiLogs`**| The API Log displays API request and response data at the Engine level.
**Parameters :**
- `$engineName` (required)
- `$fromDate` (required)
- `$toDate` (required)
- `$currentPage`
- `$pageSize`
- `$query`
- `$httpStatusFilter`
- `$httpMethodFilter`
- `$sortDirection`
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/logs)
**`getCountAnalytics`**| Returns the number of clicks and total number of queries over a period.
**Parameters :**
- `$engineName` (required)
- `$filters`
- `$interval`
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/analytics/counts)
**`getCuration`**| Retrieve a curation by id.
**Parameters :**
- `$engineName` (required)
- `$curationId` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/curations#single)
**`getDocuments`**| Retrieves one or more documents by id.
**Parameters :**
- `$engineName` (required)
- `$documentIds` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/documents#get)
**`getEngine`**| Retrieves an engine by name.
**Parameters :**
- `$engineName` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/engines#get)
**`getSchema`**| Retrieve current schema for then engine.
**Parameters :**
- `$engineName` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/schema#read)
**`getSearchSettings`**| Retrive current search settings for the engine.
**Parameters :**
- `$engineName` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/search-settings#show)
**`getSynonymSet`**| Retrieve a synonym set by id.
**Parameters :**
- `$engineName` (required)
- `$synonymSetId` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/synonyms#list-one)
**`getTopClicksAnalytics`**| Returns the number of clicks received by a document in descending order.
**Parameters :**
- `$engineName` (required)
- `$query`
- `$pageSize`
- `$filters`
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/analytics/clicks)
**`getTopQueriesAnalytics`**| Returns queries anlaytics by usage count.
**Parameters :**
- `$engineName` (required)
- `$pageSize`
- `$filters`
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/analytics/queries)
**`indexDocuments`**| Create or update documents.
**Parameters :**
- `$engineName` (required)
- `$documents` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/documents#create)
**`listCurations`**| Retrieve available curations for the engine.
**Parameters :**
- `$engineName` (required)
- `$currentPage`
- `$pageSize`
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/curations#read)
**`listDocuments`**| List all available documents with optional pagination support.
**Parameters :**
- `$engineName` (required)
- `$currentPage`
- `$pageSize`
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/documents#list)
**`listEngines`**| Retrieves all engines with optional pagination support.
**Parameters :**
- `$currentPage`
- `$pageSize`
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/engines#list)
**`listSynonymSets`**| Retrieve available synonym sets for the engine.
**Parameters :**
- `$engineName` (required)
- `$currentPage`
- `$pageSize`
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/synonyms#get)
**`logClickthrough`**| Send data about clicked results.
**Parameters :**
- `$engineName` (required)
- `$queryText` (required)
- `$documentId` (required)
- `$requestId`
- `$tags`
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/clickthrough)
**`multiSearch`**| Run several search in the same request.
**Parameters :**
- `$engineName` (required)
- `$queries` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/search#multi)
**`querySuggestion`**| Provide relevant query suggestions for incomplete queries.
**Parameters :**
- `$engineName` (required)
- `$query` (required)
- `$fields`
- `$size`
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/query-suggestion)
**`resetSearchSettings`**| Reset search settings for the engine.
**Parameters :**
- `$engineName` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/search-settings#reset)
**`search`**| Allows you to search over, facet and filter your data.
**Parameters :**
- `$engineName` (required)
- `$queryText` (required)
- `$searchRequestParams`
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/search)
**`updateCuration`**| Update an existing curation.
**Parameters :**
- `$engineName` (required)
- `$curationId` (required)
- `$queries` (required)
- `$promotedDocIds`
- `$hiddenDocIds`
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/curations#update)
**`updateDocuments`**| Partial update of documents.
**Parameters :**
- `$engineName` (required)
- `$documents` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/documents#partial)
**`updateSchema`**| Update schema for the current engine.
**Parameters :**
- `$engineName` (required)
- `$schema` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/schema#patch)
**`updateSearchSettings`**| Update search settings for the engine.
**Parameters :**
- `$engineName` (required)
- `$searchSettings` (required)
|[Endpoint Documentation](https://swiftype.com/documentation/app-search/api/search-settings#update)## Development
Code for the endpoints is generated automatically using a custom version of [OpenAPI Generator](https://github.com/openapitools/openapi-generator).
To regenerate endpoints, use the docker laucher packaged in `vendor/bin`:
```bash
./vendor/bin/elastic-openapi-codegen.sh
```The custom generator will be built and launched using the following Open API spec file : `resources/api/api-spec.yml`.
You can then commit and PR the modified api-spec file and your endpoints code files.
The client class and readme may be changed in some cases. Do not forget to include them in your commit!
## FAQ 🔮
### Where do I report issues with the client?
If something is not working as expected, please open an [issue](https://github.com/elastic/app-search-php/issues/new).
### Where can I find the full API documentation ?
Your best bet is to read the [documentation](https://swiftype.com/documentation/app-search).
### Where else can I go to get help?
You can checkout the [Elastic community discuss forums](https://discuss.elastic.co/c/app-search).
## Contribute 🚀
We welcome contributors to the project. Before you begin, a couple notes...
+ Before opening a pull request, please create an issue to [discuss the scope of your proposal](https://github.com/elastic/app-search-php/issues).
+ Please write simple code and concise documentation, when appropriate.## License 📗
[Apache 2.0](https://github.com/elastic/app-search-php/blob/master/LICENSE) © [Elastic](https://github.com/elastic)
Thank you to all the [contributors](https://github.com/elastic/app-search-php/graphs/contributors)!