\Elastica\TransportHttp

Elastica Http 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()
_setupCurl()
_getConnection()
$_connection
$_params
$_rawParams
$_scheme
$_curlConnection
N/A
No private methods found
No private properties found
N/A

Properties

$_params

$_params : array

Params.

Type

array

$_rawParams

$_rawParams : array

Raw Params.

Type

array

$_scheme

$_scheme : string

Http scheme.

Type

string — Http scheme

$_curlConnection

$_curlConnection : resource

Curl resource to reuse.

Type

resource — Curl resource to reuse

Methods

__construct()

__construct(\Elastica\Connection  $connection = null) 

Construct transport.

Parameters

\Elastica\Connection $connection

Connection object

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  $request, 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 $request

Request object

array $params

Host, Port, ...

Throws

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

Returns

\Elastica\Response

Response object

sanityzeQueryStringBool()

sanityzeQueryStringBool(string  $query) : mixed

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

Parameters

string $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

_setupCurl()

_setupCurl(resource  $curlConnection) 

Called to add additional curl params.

Parameters

resource $curlConnection

Curl connection

_getConnection()

_getConnection(boolean  $persistent = true) : resource

Return Curl resource.

Parameters

boolean $persistent

False if not persistent connection

Returns

resource —

Connection resource