A PHP client for Swiftype, a search and autocomplete API for developers.
require 'swiftype.php';
$client = new \Swiftype\SwiftypeClient('[email protected]', 'password', 'api_key');
print_r($client->create_engine('library'));
print_r($client->create_document_type('library', 'books'));
print_r($client->create_document('library', 'books', array(
'external_id' => '1',
'fields' => array(
array(
'name' => 'title',
'value' => 'The Art of Community',
'type' => 'string'
),
array(
'name' => 'author',
'value' => 'Jono Bacon',
'type' => 'enum'
)
)
)));
print_r($client->documents('library', 'books'));
The library should conform to the documentation found here.
__construct([username String], [password String], [api_key String], [host String], [api_base_path String])
The constructor for the SwiftypeClient object. Set your authentication information here. You can supply either an API key or a username (email) and password combination.
$client = new \Swiftype\SwiftypeClient('[email protected]', 'password', 'api_key');
Returns all your engines
$client->engines();
Returns a specific engine.
$client->engine('library');
Creates a new engine
$client->create_engine('library');
Destroys an engine
$client->destroy_engine('library');
Returns a list of all the document types for a certain engine
$client->document_types('library');
Fetches a specific document_type.
$client->document_type('library', 'books');
Creates a document type for a specific engine.
$client->create_document_type('library', 'books');
Destroys a document type.
$client->destroy_document_type('library', 'books');
Returns all documents for a certain engine and document type.
$client->documents('library', 'books');
Returns a specific document.
$client->document('library', 'books', '1');
Creates a document. A document is an associative array containing an external_id
and a number of fields
. See [this](http://swiftype.com/documentation/overview# field_types) for more information on fields and types.
$client->create_document('library', 'books', array(
'external_id' => '1',
'fields' => array(
array(
'name' => 'title',
'value' => 'The Art of Community',
'type' => 'string'
),
array(
'name' => 'author',
'value' => 'Bono Jacon',
'type' => 'enum'
)
)
));
Same as create_document
, except it updates an existing document if there is one.
$client->create_or_update_document('library', 'books', array(
'external_id' => '1',
'fields' => array(
array(
'name' => 'author',
'value' => 'Jono Blargon',
'type' => 'enum'
)
)
));
Updates a single document with the specified document_id
.
$client->update_document('library', 'books', '1', array('author' => 'Jorbo Bacon'));
Batch operation for updating documents. documents
is simply an array containing arrays of the same type that we supplied to the create_document
method.
$client->update_documents('library', 'books', array(
array(
'external_id' => '1',
'fields' => array(
'name' => 'author',
'value' => 'Jono Bacon',
)
)
));
Destroys a document.
$client->destroy_document('library', 'books', '1');
Destroy documents in bulk. document_ids
is a simple array containing the external_id
s of the documents you wish to destroy.
$client->destroy_documents('library', 'books', array('1', '2'));
If you do not supply a document_type_id
, search
searches through the specified engine to find a document type that matches the query. If a document_type_id
is supplied, then search
searches through that particular document type in that engine for a document that matches the query.
To see what options are available, see the documentation.
$client->search('library', 'books', 'community', array(
'per_page' => 5
));
Used for autocompletion. See the documentation for more information.
$client->suggest('library', 'Bacon', array(
'search_fields' => 'author'
));