-
-
Notifications
You must be signed in to change notification settings - Fork 690
/
Copy pathIntermediateStream.php
96 lines (91 loc) · 3.09 KB
/
IntermediateStream.php
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
<?php
declare(strict_types=1);
/**
* TCP Intermediate stream wrapper.
*
* 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/>.
*
* @author Daniil Gentili <[email protected]>
* @copyright 2016-2025 Daniil Gentili <[email protected]>
* @license https://opensource.org/licenses/AGPL-3.0 AGPLv3
* @link https://docs.madelineproto.xyz MadelineProto documentation
*/
namespace danog\MadelineProto\Stream\MTProtoTransport;
use Amp\Socket\Socket;
use danog\MadelineProto\Stream\BufferedStreamInterface;
use danog\MadelineProto\Stream\ConnectionContext;
use danog\MadelineProto\Stream\MTProtoBufferInterface;
use danog\MadelineProto\Stream\RawStreamInterface;
/**
* TCP Intermediate stream wrapper.
*
* Manages obfuscated2 encryption/decryption
*
* @author Daniil Gentili <[email protected]>
*/
final class IntermediateStream implements BufferedStreamInterface, MTProtoBufferInterface
{
private $stream;
/**
* Connect to stream.
*
* @param ConnectionContext $ctx The connection context
*/
public function connect(ConnectionContext $ctx, string $header = ''): void
{
$this->stream = ($ctx->getStream(str_repeat(\chr(238), 4).$header));
}
/**
* Async close.
*/
public function disconnect(): void
{
$this->stream->disconnect();
}
/**
* Get write buffer asynchronously.
*
* @param int $length Length of data that is going to be written to the write buffer
*/
public function getWriteBuffer(int $length, string $append = ''): \danog\MadelineProto\Stream\WriteBufferInterface
{
$buffer = $this->stream->getWriteBuffer($length + 4, $append);
//$buffer->bufferWrite(pack('V', ($length) | (1 << 31)));
$buffer->bufferWrite(pack('V', $length));
return $buffer;
}
/**
* Get read buffer asynchronously.
*
* @param int $length Length of payload, as detected by this layer
*/
public function getReadBuffer(?int &$length): \danog\MadelineProto\Stream\ReadBufferInterface
{
$buffer = $this->stream->getReadBuffer($l);
$length = unpack('V', $buffer->bufferRead(4))[1];
return $buffer;
}
/**
* {@inheritdoc}
*/
public function getSocket(): Socket
{
return $this->stream->getSocket();
}
/**
* {@inheritDoc}
*/
public function getStream(): RawStreamInterface
{
return $this->stream;
}
public static function getName(): string
{
return self::class;
}
}