2018-03-22 02:07:44 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
Copyright 2016-2017 Daniil Gentili
|
|
|
|
(https://daniil.it)
|
|
|
|
This file is part of MadelineProto.
|
|
|
|
MadelineProto is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
MadelineProto is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along with MadelineProto.
|
|
|
|
If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class HttpProxy implements \danog\MadelineProto\Proxy
|
|
|
|
{
|
|
|
|
private $domain;
|
|
|
|
private $type;
|
|
|
|
private $protocol;
|
|
|
|
private $extra;
|
|
|
|
private $sock;
|
2018-03-23 15:39:58 +00:00
|
|
|
|
2018-04-18 16:11:59 +02:00
|
|
|
public function __construct(int $domain, int $type, int $protocol)
|
2018-03-23 15:39:58 +00:00
|
|
|
{
|
2018-03-22 02:07:44 +00:00
|
|
|
if (!in_array($domain, [AF_INET, AF_INET6])) {
|
|
|
|
throw new \danog\MadelineProto\Exception('Wrong protocol family provided');
|
2018-03-21 20:29:20 +00:00
|
|
|
}
|
2018-03-22 02:07:44 +00:00
|
|
|
if (!in_array($type, [SOCK_STREAM])) {
|
|
|
|
throw new \danog\MadelineProto\Exception('Wrong connection type provided');
|
|
|
|
}
|
|
|
|
if (!in_array($protocol, [getprotobyname('tcp'), PHP_INT_MAX])) {
|
|
|
|
throw new \danog\MadelineProto\Exception('Wrong protocol provided');
|
|
|
|
}
|
|
|
|
$this->domain = $domain;
|
|
|
|
$this->type = $type;
|
|
|
|
$this->protocol = $protocol;
|
|
|
|
}
|
2018-03-23 15:39:58 +00:00
|
|
|
|
|
|
|
public function setExtra(array $extra = [])
|
|
|
|
{
|
2018-03-22 02:07:44 +00:00
|
|
|
$this->extra = $extra;
|
|
|
|
$name = $this->protocol === PHP_INT_MAX ? '\\FSocket' : '\\Socket';
|
|
|
|
$this->sock = new $name(strlen(@inet_pton($this->extra['address'])) !== 4 ? \AF_INET6 : \AF_INET, \SOCK_STREAM, $this->protocol);
|
|
|
|
}
|
2018-03-23 15:39:58 +00:00
|
|
|
|
2018-04-18 16:40:40 +02:00
|
|
|
public function setOption(int $level, int $name, $value)
|
2018-03-23 15:39:58 +00:00
|
|
|
{
|
2018-03-22 02:07:44 +00:00
|
|
|
return $this->sock->setOption($level, $name, $value);
|
|
|
|
}
|
|
|
|
|
2018-04-18 16:40:40 +02:00
|
|
|
public function getOption(int $level, int $name)
|
2018-03-23 15:39:58 +00:00
|
|
|
{
|
2018-03-22 02:07:44 +00:00
|
|
|
return $this->sock->getOption($level, $name);
|
|
|
|
}
|
|
|
|
|
2018-04-18 16:40:40 +02:00
|
|
|
public function setBlocking(bool $blocking)
|
2018-03-23 15:39:58 +00:00
|
|
|
{
|
2018-03-22 02:07:44 +00:00
|
|
|
return $this->sock->setBlocking($blocking);
|
|
|
|
}
|
|
|
|
|
2018-04-18 16:40:40 +02:00
|
|
|
public function bind(string $address, int $port = 0)
|
2018-03-23 15:39:58 +00:00
|
|
|
{
|
2018-03-22 02:07:44 +00:00
|
|
|
throw new \danog\MadelineProto\Exception('Not Implemented');
|
|
|
|
}
|
|
|
|
|
2018-04-18 16:40:40 +02:00
|
|
|
public function listen(int $backlog = 0)
|
2018-03-23 15:39:58 +00:00
|
|
|
{
|
2018-03-22 02:07:44 +00:00
|
|
|
throw new \danog\MadelineProto\Exception('Not Implemented');
|
|
|
|
}
|
2018-03-23 15:39:58 +00:00
|
|
|
|
|
|
|
public function accept()
|
|
|
|
{
|
2018-03-22 02:07:44 +00:00
|
|
|
throw new \danog\MadelineProto\Exception('Not Implemented');
|
|
|
|
}
|
|
|
|
|
2018-04-18 16:40:40 +02:00
|
|
|
public function select(array &$read, array &$write, array &$except, int $tv_sec, int $tv_usec = 0)
|
2018-03-23 15:39:58 +00:00
|
|
|
{
|
2018-04-18 16:11:59 +02:00
|
|
|
return $this->sock->select($read, $write, $except, $tv_sec, $tv_usec);
|
2018-03-22 02:07:44 +00:00
|
|
|
}
|
2018-03-23 15:39:58 +00:00
|
|
|
|
2018-04-18 16:40:40 +02:00
|
|
|
public function connect(string $address, int $port = 0)
|
2018-03-23 15:39:58 +00:00
|
|
|
{
|
2018-03-22 02:07:44 +00:00
|
|
|
$this->sock->connect($this->extra['address'], $this->extra['port']);
|
2018-03-23 15:39:58 +00:00
|
|
|
|
2018-03-22 02:07:44 +00:00
|
|
|
try {
|
|
|
|
if (strlen(inet_pton($address)) !== 4) {
|
|
|
|
$address = '['.$address.']';
|
|
|
|
}
|
|
|
|
} catch (\danog\MadelineProto\Exception $e) {
|
|
|
|
}
|
2018-04-18 16:11:59 +02:00
|
|
|
$this->sock->write("CONNECT $address:$port HTTP/1.1\r\nHost: $address:$port\r\nAccept: */*\r\n".$this->getProxyAuthHeader()."Connection: keep-Alive\r\n\r\n");
|
2018-03-22 02:07:44 +00:00
|
|
|
$response = $this->read_http_payload();
|
|
|
|
if ($response['code'] !== 200) {
|
|
|
|
\danog\MadelineProto\Logger::log(trim($response['body']));
|
2018-03-23 15:39:58 +00:00
|
|
|
|
2018-03-22 02:07:44 +00:00
|
|
|
throw new \danog\MadelineProto\Exception($response['description'], $response['code']);
|
|
|
|
}
|
|
|
|
\danog\MadelineProto\Logger::log('Connected to '.$address.':'.$port.' via http');
|
2018-03-23 15:39:58 +00:00
|
|
|
|
2018-03-22 02:07:44 +00:00
|
|
|
return true;
|
|
|
|
}
|
2018-03-23 15:39:58 +00:00
|
|
|
|
2018-03-22 02:07:44 +00:00
|
|
|
public function read_http_line()
|
|
|
|
{
|
2018-04-18 16:11:59 +02:00
|
|
|
$line = $lastchar = $curchar = '';
|
|
|
|
while ($lastchar.$curchar !== "\r\n") {
|
2018-04-18 16:19:58 +02:00
|
|
|
$line .= $lastchar;
|
2018-04-18 16:11:59 +02:00
|
|
|
$lastchar = $curchar;
|
|
|
|
$curchar = $this->sock->read(1);
|
2018-03-22 02:07:44 +00:00
|
|
|
}
|
|
|
|
|
2018-04-18 16:11:59 +02:00
|
|
|
return $line;
|
2018-03-22 02:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function read_http_payload()
|
|
|
|
{
|
2018-04-18 16:11:59 +02:00
|
|
|
list($protocol, $code, $description) = explode(' ', $this->read_http_line(), 3);
|
|
|
|
list($protocol, $protocol_version) = explode('/', $protocol);
|
2018-04-18 14:12:32 +00:00
|
|
|
if ($protocol !== 'HTTP') {
|
|
|
|
throw new \danog\MadelineProto\Exception('Wrong protocol');
|
|
|
|
}
|
2018-04-18 16:11:59 +02:00
|
|
|
$code = (int) $code;
|
2018-03-22 02:07:44 +00:00
|
|
|
$headers = [];
|
|
|
|
while (strlen($current_header = $this->read_http_line())) {
|
|
|
|
$current_header = explode(':', $current_header, 2);
|
|
|
|
$headers[strtolower($current_header[0])] = trim($current_header[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$read = '';
|
|
|
|
if (isset($headers['content-length'])) {
|
2018-04-18 16:11:59 +02:00
|
|
|
$read = $this->sock->read((int) $headers['content-length']);
|
2018-03-22 02:07:44 +00:00
|
|
|
}/* elseif (isset($headers['transfer-encoding']) && $headers['transfer-encoding'] === 'chunked') {
|
|
|
|
do {
|
|
|
|
$length = hexdec($this->read_http_line());
|
2018-04-18 16:11:59 +02:00
|
|
|
$read .= $this->sock->read($length);
|
2018-03-22 02:07:44 +00:00
|
|
|
$this->read_http_line();
|
|
|
|
} while ($length);
|
|
|
|
}*/
|
|
|
|
|
2018-04-18 16:11:59 +02:00
|
|
|
return ['protocol' => $protocol, 'protocol_version' => $protocol_version, 'code' => $code, 'description' => $description, 'body' => $read, 'headers' => $headers];
|
2018-03-22 02:07:44 +00:00
|
|
|
}
|
2018-03-23 15:39:58 +00:00
|
|
|
|
2018-04-18 16:40:40 +02:00
|
|
|
public function read(int $length, int $flags = 0)
|
2018-03-23 15:39:58 +00:00
|
|
|
{
|
2018-04-18 16:11:59 +02:00
|
|
|
return $this->sock->read($length, $flags);
|
2018-03-22 02:07:44 +00:00
|
|
|
}
|
|
|
|
|
2018-04-18 16:40:40 +02:00
|
|
|
public function write(string $buffer, int $length = -1)
|
2018-03-23 15:39:58 +00:00
|
|
|
{
|
2018-03-22 02:07:44 +00:00
|
|
|
return $this->sock->write($buffer, $length);
|
|
|
|
}
|
|
|
|
|
2018-04-18 16:40:40 +02:00
|
|
|
public function send(string $data, int $length, int $flags)
|
2018-03-23 15:39:58 +00:00
|
|
|
{
|
2018-03-22 02:07:44 +00:00
|
|
|
throw new \danog\MadelineProto\Exception('Not Implemented');
|
|
|
|
}
|
|
|
|
|
2018-03-23 15:39:58 +00:00
|
|
|
public function close()
|
|
|
|
{
|
2018-03-22 02:07:44 +00:00
|
|
|
$this->sock->close();
|
|
|
|
}
|
|
|
|
|
2018-04-18 16:40:40 +02:00
|
|
|
public function getPeerName(bool $port = true)
|
2018-03-23 15:39:58 +00:00
|
|
|
{
|
2018-03-22 02:07:44 +00:00
|
|
|
throw new \danog\MadelineProto\Exception('Not Implemented');
|
|
|
|
}
|
|
|
|
|
2018-04-18 16:40:40 +02:00
|
|
|
public function getSockName(bool $port = true)
|
2018-03-23 15:39:58 +00:00
|
|
|
{
|
2018-03-22 02:07:44 +00:00
|
|
|
throw new \danog\MadelineProto\Exception('Not Implemented');
|
|
|
|
}
|
2018-03-23 15:39:58 +00:00
|
|
|
|
2018-04-18 16:11:59 +02:00
|
|
|
private function getProxyAuthHeader()
|
|
|
|
{
|
|
|
|
if (!isset($this->extra['user']) || !isset($this->extra['password'])) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
return 'Proxy-Authorization: Basic '.base64_encode($this->extra['user'].':'.$this->extra['password'])."\r\n";
|
|
|
|
}
|
|
|
|
|
2018-03-23 15:39:58 +00:00
|
|
|
public function getProxyHeaders()
|
|
|
|
{
|
2018-04-18 16:11:59 +02:00
|
|
|
return '';
|
2018-03-22 02:07:44 +00:00
|
|
|
}
|
2018-03-29 11:25:42 +00:00
|
|
|
|
2018-03-29 13:25:15 +02:00
|
|
|
public function getResource()
|
|
|
|
{
|
|
|
|
return $this->sock->getResource();
|
|
|
|
}
|
2018-03-22 02:07:44 +00:00
|
|
|
}
|