summaryrefslogtreecommitdiffstats
path: root/lib/Config/FetcherConfig.php
blob: 55603c47c8e7af682e4d6cce8ccb0c625de7a7a4 (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
<?php
/**
 * Nextcloud - News
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author    Alessandro Cosentino <cosenal@gmail.com>
 * @author    Bernhard Posselt <dev@bernhard-posselt.com>
 * @copyright 2012 Alessandro Cosentino
 * @copyright 2012-2014 Bernhard Posselt
 */

namespace OCA\News\Config;

use FeedIo\Adapter\ClientInterface;
use \GuzzleHttp\Client;
use \FeedIo\Adapter\Guzzle\Client as FeedIoClient;

/**
 * Class FetcherConfig
 *
 * @package OCA\News\Config
 */
class FetcherConfig
{
    protected $client_timeout;
    protected $proxy;

    /**
     * Configure a guzzle client
     *
     * @return ClientInterface Legacy client to guzzle.
     */
    public function getClient()
    {
        if (!class_exists('GuzzleHttp\Collection')) {
            $config = [
                'timeout' => $this->getClientTimeout(),
            ];

            if (!empty($this->proxy)) {
                $config['proxy'] = $this->proxy;
            }

            $guzzle = new Client();
            $client = new FeedIoClient($guzzle);

            return $client;
        }

        $config = [
            'request.options' => [
                'timeout' => $this->getClientTimeout(),
            ],
        ];

        if (!empty($this->proxy)) {
            $config['request.options']['proxy'] = $this->proxy;
        }

        $guzzle = new Client($config);
        return new LegacyGuzzleClient($guzzle);
    }

    /**
     * Set a timeout for the client
     *
     * @param int $timeout The timeout
     *
     * @return self
     */
    public function setClientTimeout($timeout)
    {
        $this->client_timeout = $timeout;

        return $this;
    }

    /**
     * Get the client timeout.
     *
     * @return mixed
     */
    public function getClientTimeout()
    {
        return $this->client_timeout;
    }

    /**
     * Set the proxy
     *
     * @param \OCA\News\Utility\ProxyConfigParser $proxy The proxy to set.
     *
     * @return self
     */
    public function setProxy($proxy)
    {
        // proxy settings
        $proxySettings = $proxy->parse();
        $host = $proxySettings['host'];
        $port = $proxySettings['port'];
        $user = $proxySettings['user'];
        $password = $proxySettings['password'];

        $proxy_string = 'https://';
        if (!empty($user)) {
            $proxy_string .= $user . ':' . $password . '@';
        }
        $proxy_string .= $host;
        if (!empty($port)) {
            $proxy_string .= ':' . $port;
        }
        $this->proxy = $proxy_string;

        return $this;
    }
}