summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/Transport/Guzzle.php
blob: 96ad89714089f374299cd19f90ea479155ccc995 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<?php

namespace Elastica\Transport;

use Elastica\Exception\Connection\HttpException;
use Elastica\Exception\Connection\GuzzleException;
use Elastica\Exception\PartialShardFailureException;
use Elastica\Exception\ResponseException;
use Elastica\Exception\InvalidException;
use Elastica\Connection;
use Elastica\Request;
use Elastica\Response;
use Elastica\JSON;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\TransferException;
use GuzzleHttp\Exception\ClientException;
use GuzzleHttp\Stream\Stream;

/**
 * Elastica Guzzle Transport object
 *
 * @package Elastica
 * @author Milan Magudia <milan@magudia.com>
 */
class Guzzle extends AbstractTransport
{
    /**
     * Http scheme
     *
     * @var string Http scheme
     */
    protected $_scheme = 'http';

    /**
     * Curl resource to reuse
     *
     * @var resource Guzzle resource to reuse
     */
    protected static $_guzzleClientConnection = null;

    /**
     * Makes calls to the elasticsearch server
     *
     * All calls that are made to the server are done through this function
     *
     * @param  \Elastica\Request $request
     * @param  array $params Host, Port, ...
     * @throws \Elastica\Exception\ConnectionException
     * @throws \Elastica\Exception\ResponseException
     * @throws \Elastica\Exception\Connection\HttpException
     * @return \Elastica\Response                    Response object
     */
    public function exec(Request $request, array $params)
    {
        $connection = $this->getConnection();

        try {
            $client = $this->_getGuzzleClient($this->_getBaseUrl($connection), $connection->isPersistent());

            $options = array();
            if ($connection->getTimeout()) {
                $options['timeout'] = $connection->getTimeout();
            }

            if ($connection->getProxy()) {
                $options['proxy'] = $connection->getProxy();
            }

            $req = $client->createRequest($request->getMethod(), $this->_getActionPath($request), $options);
            $req->setHeaders($connection->hasConfig('headers') ?: array());

            $data = $request->getData();
            if (!empty($data) || '0' === $data) {

                if ($req->getMethod() == Request::GET) {
                    $req->setMethod(Request::POST);
                }

                if ($this->hasParam('postWithRequestBody') && $this->getParam('postWithRequestBody') == true) {
                    $request->setMethod(Request::POST);
                    $req->setMethod(Request::POST);
                }

                if (is_array($data)) {
                    $content = JSON::stringify($data, 'JSON_ELASTICSEARCH');
                } else {
                    $content = $data;
                }
                $req->setBody(Stream::factory($content));
            }

            $start = microtime(true);
            $res = $client->send($req);
            $end = microtime(true);

            $response = new Response((string)$res->getBody(), $res->getStatusCode());

            if (defined('DEBUG') && DEBUG) {
                $response->setQueryTime($end - $start);
            }

            $response->setTransferInfo(
                array(
                    'request_header' => $request->getMethod(),
                    'http_code' => $res->getStatusCode()
                )
            );

            if ($response->hasError()) {
                throw new ResponseException($request, $response);
            }

            if ($response->hasFailedShards()) {
                throw new PartialShardFailureException($request, $response);
            }

            return $response;

        } catch (ClientException $e) {
            // ignore 4xx errors
        } catch (TransferException $e) {
            throw new GuzzleException($e, $request, new Response($e->getMessage()));
        }

    }

    /**
     * Return Guzzle resource
     *
     * @param  bool $persistent False if not persistent connection
     * @return resource Connection resource
     */
    protected function _getGuzzleClient($baseUrl, $persistent = true)
    {
        if (!$persistent || !self::$_guzzleClientConnection) {
            self::$_guzzleClientConnection = new Client(array('base_url' => $baseUrl));
        }

        return self::$_guzzleClientConnection;
    }

    /**
     * Builds the base url for the guzzle connection
     *
     * @param  \Elastica\Connection $connection
     */
    protected function _getBaseUrl(Connection $connection)
    {
        // If url is set, url is taken. Otherwise port, host and path
        $url = $connection->hasConfig('url') ? $connection->getConfig('url') : '';

        if (!empty($url)) {
            $baseUri = $url;
        } else {
            $baseUri = $this->_scheme . '://' . $connection->getHost() . ':' . $connection->getPort() . '/' . $connection->getPath();
        }
        return rtrim($baseUri, '/');
    }

    /**
     * Builds the action path url for each request
     *
     * @param  \Elastica\Request $request
     */
    protected function _getActionPath(Request $request)
    {
        $action = $request->getPath();
        if ($action) {
            $action = '/'. ltrim($action, '/');
        }
        $query = $request->getQuery();

        if (!empty($query)) {
            $action .= '?' . http_build_query($query);
        }

        return $action;
    }
}