\Elastica\TransportHttpAdapter

Elastica Abstract Transport object.

This function can be used to handle params for queries, filter

Summary

Methods
Properties
Constants
__construct()
getConnection()
setConnection()
exec()
sanityzeQueryStringBool()
create()
toArray()
setParam()
setParams()
addParam()
getParam()
hasParam()
getParams()
count()
No public properties found
No constants found
_convertArrayable()
_getBaseName()
_setRawParam()
_createElasticaResponse()
_createHttpAdapterRequest()
_getUri()
$_connection
$_params
$_rawParams
N/A
No private methods found
$httpAdapter
$_scheme
N/A

Properties

$_params

$_params : array

Params.

Type

array

$_rawParams

$_rawParams : array

Raw Params.

Type

array

$httpAdapter

$httpAdapter : \Ivory\HttpAdapter\HttpAdapterInterface

Type

\Ivory\HttpAdapter\HttpAdapterInterface

$_scheme

$_scheme : string

Type

string

Methods

__construct()

__construct(\Elastica\Connection  $connection = null, \Ivory\HttpAdapter\HttpAdapterInterface  $httpAdapter) 

Construct transport.

Parameters

\Elastica\Connection $connection

Connection object

\Ivory\HttpAdapter\HttpAdapterInterface $httpAdapter

getConnection()

getConnection() : \Elastica\Connection

Returns

\Elastica\Connection

Connection object

setConnection()

setConnection(\Elastica\Connection  $connection) : $this

Parameters

\Elastica\Connection $connection

Connection object

Returns

$this

exec()

exec(\Elastica\Request  $elasticaRequest, array  $params) : \Elastica\Response

Makes calls to the elasticsearch server.

All calls that are made to the server are done through this function

Parameters

\Elastica\Request $elasticaRequest
array $params

Host, Port, ...

Throws

\Elastica\Exception\ConnectionException
\Elastica\Exception\ResponseException
\Elastica\Exception\Connection\HttpException

Returns

\Elastica\Response

Response object

sanityzeQueryStringBool()

sanityzeQueryStringBool(array  $query) : mixed

BOOL values true|false should be sanityzed and passed to Elasticsearch as string.

Parameters

array $query

Returns

mixed

create()

create(mixed  $transport, \Elastica\Connection  $connection, array  $params = array()) : \Elastica\Transport\AbstractTransport

Create a transport.

The $transport parameter can be one of the following values:

  • string: The short name of a transport. For instance "Http"
  • object: An already instantiated instance of a transport
  • array: An array with a "type" key which must be set to one of the two options. All other keys in the array will be set as parameters in the transport instance

Parameters

mixed $transport

A transport definition

\Elastica\Connection $connection

A connection instance

array $params

Parameters for the transport class

Throws

\Elastica\Exception\InvalidException

Returns

\Elastica\Transport\AbstractTransport

toArray()

toArray() : array

Converts the params to an array. A default implementation exist to create the an array out of the class name (last part of the class name) and the params.

Returns

array —

Filter array

setParam()

setParam(string  $key, mixed  $value) : $this

Sets (overwrites) the value at the given key.

Parameters

string $key

Key to set

mixed $value

Key Value

Returns

$this

setParams()

setParams(array  $params) : $this

Sets (overwrites) all params of this object.

Parameters

array $params

Parameter list

Returns

$this

addParam()

addParam(string  $key, mixed  $value) : $this

Adds a param to the list.

This function can be used to add an array of params

Parameters

string $key

Param key

mixed $value

Value to set

Returns

$this

getParam()

getParam(string  $key) : mixed

Returns a specific param.

Parameters

string $key

Key to return

Throws

\Elastica\Exception\InvalidException

If requested key is not set

Returns

mixed —

Key value

hasParam()

hasParam(string  $key) : boolean

Test if a param is set.

Parameters

string $key

Key to test

Returns

boolean —

True if the param is set, false otherwise

getParams()

getParams() : array

Returns the params array.

Returns

array —

Params

count()

count() : integer

{@inheritdoc}

Returns

integer

_convertArrayable()

_convertArrayable(array  $array) : array

Cast objects to arrays.

Parameters

array $array

Returns

array

_getBaseName()

_getBaseName() : string

Param's name Picks the last part of the class name and makes it snake_case You can override this method if you want to change the name.

Returns

string —

name

_setRawParam()

_setRawParam(string  $key, mixed  $value) : $this

Sets params not inside params array.

Parameters

string $key
mixed $value

Returns

$this

_createElasticaResponse()

_createElasticaResponse(\Ivory\HttpAdapter\Message\Response  $httpAdapterResponse) : \Elastica\Response

Parameters

\Ivory\HttpAdapter\Message\Response $httpAdapterResponse

Returns

\Elastica\Response

_createHttpAdapterRequest()

_createHttpAdapterRequest(\Elastica\Request  $elasticaRequest, \Elastica\Connection  $connection) : \Ivory\HttpAdapter\Message\Request

Parameters

\Elastica\Request $elasticaRequest
\Elastica\Connection $connection

Returns

\Ivory\HttpAdapter\Message\Request