2017-04-21 13:27:04 +02: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/>.
|
|
|
|
*/
|
2017-11-03 13:02:01 +01:00
|
|
|
if (PHP_MAJOR_VERSION < 7) {
|
|
|
|
throw new Exception('MadelineProto requires php 7 to run');
|
|
|
|
}
|
2017-04-21 13:27:50 +02:00
|
|
|
|
|
|
|
if (!extension_loaded('pthreads')) {
|
2017-10-05 17:53:56 +02:00
|
|
|
if (extension_loaded('sockets')) {
|
2017-10-05 17:54:27 +02:00
|
|
|
class Socket
|
2017-04-21 13:27:50 +02:00
|
|
|
{
|
2017-10-05 17:54:27 +02:00
|
|
|
private $sock;
|
2017-04-21 13:27:50 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function __construct(int $domain, int $type, int $protocol)
|
|
|
|
{
|
|
|
|
$this->sock = socket_create($domain, $type, $protocol);
|
2017-04-21 13:27:04 +02:00
|
|
|
}
|
2017-04-21 13:27:50 +02:00
|
|
|
|
2017-12-16 20:01:40 +01:00
|
|
|
public function __destruct()
|
|
|
|
{
|
|
|
|
socket_close($this->sock);
|
|
|
|
}
|
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function setOption(int $level, int $name, $value)
|
|
|
|
{
|
|
|
|
if (in_array($name, [\SO_RCVTIMEO, \SO_SNDTIMEO])) {
|
|
|
|
$value = ['sec' => (int) $value, 'usec' => (int) (($value - (int) $value) * 1000000)];
|
|
|
|
}
|
2017-04-21 13:27:50 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
return socket_set_option($this->sock, $level, $name, $value);
|
|
|
|
}
|
2017-04-21 13:27:50 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function getOption(int $level, int $name)
|
|
|
|
{
|
|
|
|
return socket_get_option($this->sock, $level, $name);
|
2017-06-03 16:40:14 +02:00
|
|
|
}
|
2017-04-21 13:27:50 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function setBlocking(bool $blocking)
|
|
|
|
{
|
|
|
|
if ($blocking) {
|
|
|
|
return socket_set_block($this->sock);
|
|
|
|
}
|
2017-06-03 16:40:33 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
return socket_set_nonblock($this->sock);
|
|
|
|
}
|
2017-06-03 16:40:14 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function bind(string $address, int $port = 0)
|
|
|
|
{
|
|
|
|
return socket_bind($this->sock, $address, $port);
|
|
|
|
}
|
2017-06-03 16:40:33 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function listen(int $backlog = 0)
|
|
|
|
{
|
|
|
|
return socket_listen($this->sock, $backlog);
|
|
|
|
}
|
2017-06-03 16:40:33 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function accept()
|
|
|
|
{
|
|
|
|
return socket_accept($this->sock);
|
|
|
|
}
|
2017-06-03 16:40:33 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function connect(string $address, int $port = 0)
|
|
|
|
{
|
|
|
|
return socket_connect($this->sock, $address, $port);
|
|
|
|
}
|
2017-06-03 16:40:14 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function select(array &$read, array &$write, array &$except, int $tv_sec, int $tv_usec = 0)
|
|
|
|
{
|
|
|
|
return socket_select($read, $write, $except, $tv_sec, $tv_usec);
|
|
|
|
}
|
2017-06-03 16:40:33 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function read(int $length, int $flags = 0)
|
|
|
|
{
|
|
|
|
return socket_read($this->sock, $length, $flags);
|
|
|
|
}
|
2017-06-03 16:40:33 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function write(string $buffer, int $length = -1)
|
|
|
|
{
|
|
|
|
return $length === -1 ? socket_write($this->sock, $buffer) : socket_write($this->sock, $buffer, $Length);
|
|
|
|
}
|
2017-06-03 16:40:14 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function send(string $data, int $length, int $flags)
|
|
|
|
{
|
|
|
|
return socket_send($data, $length, $flags);
|
|
|
|
}
|
2017-06-03 16:40:14 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function close()
|
|
|
|
{
|
|
|
|
return socket_close($this->sock);
|
|
|
|
}
|
2017-06-03 16:40:33 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function getPeerName(bool $port = true)
|
|
|
|
{
|
|
|
|
$address = '';
|
|
|
|
$port = 0;
|
|
|
|
$port ? socket_getpeername($this->sock, $address, $ip) : socket_getpeername($this->sock, $address);
|
2017-06-03 16:40:33 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
return $port ? ['host' => $address, 'port' => $port] : ['host' => $address];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSockName(bool $port = true)
|
|
|
|
{
|
|
|
|
$address = '';
|
|
|
|
$port = 0;
|
|
|
|
$port ? socket_getsockname($this->sock, $address, $ip) : socket_getsockname($this->sock, $address);
|
2017-06-03 16:40:33 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
return $port ? ['host' => $address, 'port' => $port] : ['host' => $address];
|
|
|
|
}
|
2017-04-21 13:27:04 +02:00
|
|
|
}
|
2017-10-05 17:53:56 +02:00
|
|
|
} else {
|
2017-10-05 17:54:27 +02:00
|
|
|
define('AF_INET', 0);
|
|
|
|
define('AF_INET6', 1);
|
|
|
|
define('SOCK_STREAM', 2);
|
|
|
|
define('SOL_SOCKET', 3);
|
|
|
|
define('SO_RCVTIMEO', 4);
|
|
|
|
define('SO_SNDTIMEO', 5);
|
|
|
|
|
|
|
|
class Socket
|
|
|
|
{
|
|
|
|
private $sock;
|
|
|
|
private $protocol;
|
|
|
|
private $timeout = ['sec' => 0, 'usec' => 0];
|
|
|
|
private $blocking = false;
|
2017-12-28 11:57:55 +01:00
|
|
|
private $domain;
|
|
|
|
private $type;
|
2017-10-05 17:54:27 +02:00
|
|
|
|
|
|
|
public function __construct(int $domain, int $type, int $protocol)
|
|
|
|
{
|
2017-12-28 11:57:55 +01:00
|
|
|
$this->domain = $domain;
|
|
|
|
$this->type = $type;
|
2017-10-05 17:54:27 +02:00
|
|
|
$this->protocol = getprotobynumber($protocol);
|
|
|
|
}
|
2017-12-16 20:01:35 +01:00
|
|
|
|
|
|
|
public function __destruct()
|
|
|
|
{
|
|
|
|
if ($this->sock !== null) {
|
|
|
|
fclose($this->sock);
|
|
|
|
}
|
2017-12-16 20:01:40 +01:00
|
|
|
}
|
2017-10-05 17:53:56 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function setOption(int $level, int $name, $value)
|
|
|
|
{
|
|
|
|
if (in_array($name, [\SO_RCVTIMEO, \SO_SNDTIMEO])) {
|
|
|
|
$this->timeout = ['sec' => (int) $value, 'usec' => (int) (($value - (int) $value) * 1000000)];
|
|
|
|
stream_set_timeout($this->sock, $this->timeout['sec'], $this->timeout['usec']);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new \danog\MadelineProto\Exception('Not supported');
|
2017-10-05 17:53:56 +02:00
|
|
|
}
|
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function getOption(int $level, int $name)
|
|
|
|
{
|
|
|
|
throw new \danog\MadelineProto\Exception('Not supported');
|
|
|
|
}
|
2017-10-05 17:53:56 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function setBlocking(bool $blocking)
|
|
|
|
{
|
|
|
|
return stream_set_blocking($this->sock, $blocking);
|
|
|
|
}
|
2017-10-05 17:53:56 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function bind(string $address, int $port = 0)
|
|
|
|
{
|
|
|
|
throw new \danog\MadelineProto\Exception('Not supported');
|
|
|
|
}
|
2017-10-05 17:53:56 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function listen(int $backlog = 0)
|
|
|
|
{
|
|
|
|
throw new \danog\MadelineProto\Exception('Not supported');
|
|
|
|
}
|
2017-10-05 17:53:56 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function accept()
|
|
|
|
{
|
|
|
|
throw new \danog\MadelineProto\Exception('Not supported');
|
|
|
|
}
|
2017-10-05 17:53:56 +02:00
|
|
|
|
2017-12-28 11:57:55 +01:00
|
|
|
public function connect(string $address, int $port = -1)
|
2017-10-05 17:54:27 +02:00
|
|
|
{
|
2017-12-28 11:57:55 +01:00
|
|
|
if ($this->domain === AF_INET6 && strpos($address, ':') !== false) {
|
|
|
|
$address = '['.$address.']';
|
|
|
|
}
|
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
$this->sock = fsockopen($this->protocol.'://'.$address, $port);
|
2017-10-05 17:53:56 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
return true;
|
|
|
|
}
|
2017-10-05 17:53:56 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function select(array &$read, array &$write, array &$except, int $tv_sec, int $tv_usec = 0)
|
|
|
|
{
|
|
|
|
return stream_select($read, $write, $except, $tv_sec, $tv_usec);
|
|
|
|
}
|
2017-10-05 17:53:56 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function read(int $length, int $flags = 0)
|
|
|
|
{
|
|
|
|
return stream_get_contents($this->sock, $length);
|
|
|
|
}
|
2017-10-05 17:53:56 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function write(string $buffer, int $length = -1)
|
|
|
|
{
|
|
|
|
return $length === -1 ? fwrite($this->sock, $buffer) : fwrite($this->sock, $buffer, $length);
|
|
|
|
}
|
2017-10-05 17:53:56 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function send(string $data, int $length, int $flags)
|
|
|
|
{
|
|
|
|
throw new \danog\MadelineProto\Exception('Not supported');
|
|
|
|
}
|
2017-10-05 17:53:56 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function close()
|
|
|
|
{
|
|
|
|
return fclose($this->sock);
|
|
|
|
}
|
2017-10-05 17:53:56 +02:00
|
|
|
|
2017-10-05 17:54:27 +02:00
|
|
|
public function getPeerName(bool $port = true)
|
|
|
|
{
|
|
|
|
throw new \danog\MadelineProto\Exception('Not supported');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSockName(bool $port = true)
|
|
|
|
{
|
|
|
|
throw new \danog\MadelineProto\Exception('Not supported');
|
|
|
|
}
|
2017-10-05 17:53:56 +02:00
|
|
|
}
|
|
|
|
}
|
2017-04-21 13:27:04 +02:00
|
|
|
}
|