. */ class HttpProxy implements \danog\MadelineProto\Proxy { private $domain; private $type; private $protocol; private $extra; private $sock; public function __construct(int $domain, int $type, int $protocol) { if (!in_array($domain, [AF_INET, AF_INET6])) { throw new \danog\MadelineProto\Exception('Wrong protocol family provided'); } 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; } public function setExtra(array $extra = []) { $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); } public function setOption($level, $name, $value) { return $this->sock->setOption($level, $name, $value); } public function getOption($level, $name) { return $this->sock->getOption($level, $name); } public function setBlocking($blocking) { return $this->sock->setBlocking($blocking); } public function bind($address, $port = 0) { throw new \danog\MadelineProto\Exception('Not Implemented'); } public function listen($backlog = 0) { throw new \danog\MadelineProto\Exception('Not Implemented'); } public function accept() { throw new \danog\MadelineProto\Exception('Not Implemented'); } public function select(array &$read, array &$write, array &$except, $tv_sec, $tv_usec = 0) { return $this->sock->select($read, $write, $except, $tv_sec, $tv_usec); } public function connect($address, $port = 0) { $this->sock->connect($this->extra['address'], $this->extra['port']); try { if (strlen(inet_pton($address)) !== 4) { $address = '['.$address.']'; } } catch (\danog\MadelineProto\Exception $e) { } $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"); $response = $this->read_http_payload(); if ($response['code'] !== 200) { \danog\MadelineProto\Logger::log(trim($response['body'])); throw new \danog\MadelineProto\Exception($response['description'], $response['code']); } \danog\MadelineProto\Logger::log('Connected to '.$address.':'.$port.' via http'); return true; } public function read_http_line() { $line = $lastchar = $curchar = ''; while ($lastchar.$curchar !== "\r\n") { $line .= $curchar; $lastchar = $curchar; $curchar = $this->sock->read(1); } return $line; } public function read_http_payload() { list($protocol, $code, $description) = explode(' ', $this->read_http_line(), 3); list($protocol, $protocol_version) = explode('/', $protocol); if ($protocol !== 'HTTP') { throw new \danog\MadelineProto\Exception('Wrong protocol'); } $code = (int) $code; $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'])) { $read = $this->sock->read((int) $headers['content-length']); }/* elseif (isset($headers['transfer-encoding']) && $headers['transfer-encoding'] === 'chunked') { do { $length = hexdec($this->read_http_line()); $read .= $this->sock->read($length); $this->read_http_line(); } while ($length); }*/ return ['protocol' => $protocol, 'protocol_version' => $protocol_version, 'code' => $code, 'description' => $description, 'body' => $read, 'headers' => $headers]; } public function read($length, $flags = 0) { return $this->sock->read($length, $flags); } public function write($buffer, $length = -1) { return $this->sock->write($buffer, $length); } public function send($data, $length, $flags) { throw new \danog\MadelineProto\Exception('Not Implemented'); } public function close() { $this->sock->close(); } public function getPeerName($port = true) { throw new \danog\MadelineProto\Exception('Not Implemented'); } public function getSockName($port = true) { throw new \danog\MadelineProto\Exception('Not Implemented'); } 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"; } public function getProxyHeaders() { return ''; } public function getResource() { return $this->sock->getResource(); } }