TorClient

This commit is contained in:
R. Eric Wheeler 2016-12-23 14:50:39 -08:00
parent f5e9c8781c
commit 1dd37f6161
2 changed files with 147 additions and 65 deletions

2
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"hash": "439da2eb89743fa1d87cf656df00dd7b", "hash": "9ec1203744073948a67a86ddfbf1d1e2",
"content-hash": "83d61f647d294058c67c53ea5fab1dc9", "content-hash": "83d61f647d294058c67c53ea5fab1dc9",
"packages": [ "packages": [
{ {

View File

@ -10,79 +10,65 @@ namespace Sikofitt\Tor;
use GuzzleHttp\Client; use GuzzleHttp\Client;
use GuzzleHttp\ClientInterface;
use GuzzleHttp\Handler\CurlMultiHandler; use GuzzleHttp\Handler\CurlMultiHandler;
use GuzzleHttp\HandlerStack; use GuzzleHttp\HandlerStack;
use GuzzleTor\Middleware; use GuzzleTor\Middleware;
use Sikofitt\Tor\Collection\ImageCollection;
use Sikofitt\Tor\Exception\BadProxyUrlException; use Sikofitt\Tor\Exception\BadProxyUrlException;
class TorClient /**
* Class TorClient
*
* @package Sikofitt\Tor
*/
class TorClient extends Client implements ClientInterface
{ {
/**
* @var Client
*/
private $client; private $client;
/**
* @var string
*/
private $proxy; private $proxy;
/**
* @var string
*/
private $torControl; private $torControl;
/**
* @var HandlerStack
*/
private $handlerStack; private $handlerStack;
/**
* @var Middleware
*/
private $middleware; private $middleware;
public function __construct($proxy = '127.0.0.1:9050', $torControl = '127.0.0.1:9051') private $poolData;
{
public function __construct(
$proxy = '127.0.0.1:9050',
$torControl = '127.0.0.1:9051'
) {
$this->proxy = $proxy; $this->proxy = $proxy;
$this->torControl = $torControl; $this->torControl = $torControl;
$this->setTorMiddleWare();
$this->createHandlerStack();
$this->setClient();
$this->handlerStack = new HandlerStack();
$this->handlerStack->setHandler(new CurlMultiHandler());
$this->handlerStack->push(Middleware::tor($this->proxy, $this->torControl));
$this->client = new Client([
'verify' => false,
'handler' => $this->handlerStack,
]);
}
public function setProxyPort($port)
{
preg_replace('/:\d{4}/', ':' . $port, $this->proxy);
return $this;
}
public function setTorControlPort($port)
{
preg_replace('/:\d{4}/', ':' . $port, $this->torControl);
return $this;
}
public function setProxyUrl($proxyUrl)
{
if(false === is_numeric(str_replace('.','', '127.0.0.1'))) {
throw new BadProxyUrlException('Tor Proxy URL must be an IP address.');
}
preg_replace('/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/', $proxyUrl, $this->proxy);
return $this;
}
/**
* @param $torControlUrl
* @return $this
* @throws BadProxyUrlException
*/
public function setTorControlUrl($torControlUrl)
{
if(false === is_numeric(str_replace('.','', '127.0.0.1'))) {
throw new BadProxyUrlException('Tor Control URL must be an IP address.');
}
preg_replace('/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/', $torControlUrl, $this->torControl);
return $this;
}
public function setClient()
{
$this->client = new Client([
'verify' => false,
'handler' => $this->handlerStack,
]);
return $this;
} }
/** /**
* @return $this * @return $this
*/ */
public function setTorMiddleWare() { public function setTorMiddleWare()
{
$this->middleware = Middleware::tor($this->proxy, $this->torControl); $this->middleware = Middleware::tor($this->proxy, $this->torControl);
return $this; return $this;
} }
@ -96,32 +82,128 @@ class TorClient
$this->handlerStack->setHandler(new CurlMultiHandler()); $this->handlerStack->setHandler(new CurlMultiHandler());
$this->handlerStack->push($this->middleware); $this->handlerStack->push($this->middleware);
} }
public function setProxy($proxy)
/**
* @return mixed
*/
public function getClient()
{
return $this->client;
}
public function setClient()
{ {
$this->proxy = $proxy;
$this->handlerStack->remove(Middleware::tor());
$this->handlerStack->push(Middleware::tor($this->proxy, $this->torControl));
$this->client = new Client([ $this->client = new Client([
'verify' => false, 'verify' => false,
'handler' => $this->handlerStack, 'handler' => $this->handlerStack,
]); ]);
return $this; return $this;
} }
public function setImages($images)
{
$this->images = $images;
}
/**
* @param array $uris
*
* @return $this
*/
public function pool($uris = array())
{
$pool = new Pool($this->client, $uris);
$this->poolData = $pool->getHtmlData();
$pool->images();
$this->setImages($pool->images());
$links = $pool->links();
return $this;
}
public function setProxyPort($port)
{
preg_replace('/:\d{4}/', ':' . $port, $this->proxy);
return $this;
}
public function setTorControlPort($port)
{
preg_replace('/:\d{4}/', ':' . $port, $this->torControl);
return $this;
}
public function setProxyUrl($proxyUrl)
{
if (false === is_numeric(str_replace('.', '', '127.0.0.1'))) {
throw new BadProxyUrlException('Tor Proxy URL must be an IP address.');
}
preg_replace('/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/', $proxyUrl,
$this->proxy);
return $this;
}
/**
* @param $torControlUrl
*
* @return $this
* @throws BadProxyUrlException
*/
public function setTorControlUrl($torControlUrl)
{
if (false === is_numeric(str_replace('.', '', '127.0.0.1'))) {
throw new BadProxyUrlException('Tor Control URL must be an IP address.');
}
preg_replace('/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/', $torControlUrl,
$this->torControl);
return $this;
}
/**
* @return string
*/
public function getProxy() public function getProxy()
{ {
return $this->proxy; return $this->proxy;
} }
public function setProxy($proxy)
{
$this->proxy = $proxy;
$this->setTorMiddleWare();
$this->createHandlerStack();
$this->setClient();
return $this;
}
/**
* @return string
*/
public function getTorControl()
{
return $this->torControl;
}
/**
* @param $torControl
*
* @return $this
*/
public function setTorControl($torControl) public function setTorControl($torControl)
{ {
$this->torControl = $torControl; $this->torControl = $torControl;
return $this; return $this;
} }
public function getTorControl()
public function images($html)
{ {
return $this->torControl; $images = new ImageCollection($html);
} return $this;
public function get($url, $options = array()) {
return $this->client->get($url, $options);
} }
} }