1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-11 22:59:37 +01:00
MadelineProto/src/Connection.php

542 lines
18 KiB
PHP

<?php
declare(strict_types=1);
/**
* Connection module.
*
* 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 <daniil@daniil.it>
* @copyright 2016-2023 Daniil Gentili <daniil@daniil.it>
* @license https://opensource.org/licenses/AGPL-3.0 AGPLv3
* @link https://docs.madelineproto.xyz MadelineProto documentation
*/
namespace danog\MadelineProto;
use Amp\ByteStream\ClosedException;
use Amp\DeferredFuture;
use danog\MadelineProto\Loop\Connection\CheckLoop;
use danog\MadelineProto\Loop\Connection\CleanupLoop;
use danog\MadelineProto\Loop\Connection\HttpWaitLoop;
use danog\MadelineProto\Loop\Connection\PingLoop;
use danog\MadelineProto\Loop\Connection\ReadLoop;
use danog\MadelineProto\Loop\Connection\WriteLoop;
use danog\MadelineProto\MTProto\MTProtoOutgoingMessage;
use danog\MadelineProto\MTProtoSession\Session;
use danog\MadelineProto\Stream\BufferedStreamInterface;
use danog\MadelineProto\Stream\ConnectionContext;
use danog\MadelineProto\Stream\MTProtoBufferInterface;
use danog\MadelineProto\Stream\MTProtoTransport\HttpsStream;
use danog\MadelineProto\Stream\MTProtoTransport\HttpStream;
use Webmozart\Assert\Assert;
/**
* Connection class.
*
* Manages connection to Telegram datacenters
*
* @psalm-suppress RedundantPropertyInitializationCheck
*
* @internal
* @author Daniil Gentili <daniil@daniil.it>
*/
final class Connection
{
use Session;
/**
* Writer loop.
*
*/
protected ?WriteLoop $writer = null;
/**
* Reader loop.
*
*/
protected ?ReadLoop $reader = null;
/**
* Checker loop.
*
*/
protected ?CheckLoop $checker = null;
/**
* Waiter loop.
*
*/
protected ?HttpWaitLoop $waiter = null;
/**
* Ping loop.
*
*/
protected ?PingLoop $pinger = null;
/**
* Cleanup loop.
*
*/
protected ?CleanupLoop $cleanup = null;
/**
* The actual socket.
* @var (MTProtoBufferInterface&BufferedStreamInterface)|null
*/
public MTProtoBufferInterface|null $stream = null;
/**
* Connection context.
*
*/
private ConnectionContext $ctx;
/**
* HTTP request count.
*
*/
private int $httpReqCount = 0;
/**
* HTTP response count.
*
*/
private int $httpResCount = 0;
/**
* Whether we're currently reading an MTProto packet.
*/
private bool $reading = false;
/**
* Logger instance.
*
*/
protected Logger $logger;
/**
* Main instance.
*
*/
public MTProto $API;
/**
* Shared connection instance.
*
*/
protected DataCenterConnection $shared;
/**
* DC ID.
*
*/
protected int $datacenter;
/**
* Connection ID.
*
*/
private int $id = 0;
/**
* DC ID and connection ID concatenated.
*/
private string $datacenterId = '';
/**
* Whether this socket has to be reconnected.
*
*/
private bool $needsReconnect = false;
/**
* Indicate if this socket needs to be reconnected.
*
* @param boolean $needsReconnect Whether the socket has to be reconnected
*/
public function needReconnect(bool $needsReconnect): void
{
$this->needsReconnect = $needsReconnect;
}
/**
* Whether this sockets needs to be reconnected.
*/
public function shouldReconnect(): bool
{
return $this->needsReconnect;
}
/**
* Set writing boolean.
*/
public function writing(bool $writing): void
{
$this->shared->writing($writing, $this->id);
}
/**
* Set reading boolean.
*/
public function reading(bool $reading): void
{
$this->reading = $reading;
$this->shared->reading($reading, $this->id);
}
/**
* Whether we're currently reading an MTProto packet.
*/
public function isReading(): bool
{
return $this->reading;
}
/**
* Indicate a received HTTP response.
*/
public function httpReceived(): void
{
$this->httpResCount++;
}
/**
* Count received HTTP responses.
*/
public function countHttpReceived(): int
{
return $this->httpResCount;
}
/**
* Indicate a sent HTTP request.
*/
public function httpSent(): void
{
$this->httpReqCount++;
}
/**
* Count sent HTTP requests.
*/
public function countHttpSent(): int
{
return $this->httpReqCount;
}
/**
* Get connection ID.
*/
public function getID(): int
{
return $this->id;
}
/**
* Get datacenter concatenated with connection ID.
*/
public function getDatacenterID(): string
{
return $this->datacenterId;
}
/**
* Get connection context.
*/
public function getCtx(): ConnectionContext
{
return $this->ctx;
}
/**
* Check if is an HTTP connection.
*/
public function isHttp(): bool
{
return \in_array($this->ctx->getStreamName(), [HttpStream::class, HttpsStream::class], true);
}
/**
* Check if is a media connection.
*/
public function isMedia(): bool
{
return $this->ctx->isMedia();
}
/**
* Check if is a CDN connection.
*/
public function isCDN(): bool
{
return $this->ctx->isCDN();
}
/**
* Connects to a telegram DC using the specified protocol, proxy and connection parameters.
*
* @param ConnectionContext $ctx Connection context
*/
public function connect(ConnectionContext $ctx): void
{
$this->ctx = $ctx->getCtx();
$this->datacenter = $ctx->getDc();
$this->datacenterId = $this->datacenter . '.' . $this->id;
$this->API->logger->logger("Connecting to DC {$this->datacenterId}", Logger::WARNING);
$this->createSession();
$this->stream = ($ctx->getStream());
$this->API->logger->logger("Connected to DC {$this->datacenterId}!", Logger::WARNING);
if ($this->needsReconnect) {
$this->needsReconnect = false;
}
$this->httpReqCount = 0;
$this->httpResCount = 0;
$this->writer ??= new WriteLoop($this);
$this->reader ??= new ReadLoop($this);
$this->checker ??= new CheckLoop($this);
$this->cleanup ??= new CleanupLoop($this);
$this->waiter ??= new HttpWaitLoop($this);
if (!isset($this->pinger) && !$this->ctx->isMedia() && !$this->ctx->isCDN() && !$this->shared->isHttp()) {
$this->pinger = new PingLoop($this);
}
foreach ($this->new_outgoing as $message_id => $message) {
if ($message->isUnencrypted()) {
if (!($message->getState() & MTProtoOutgoingMessage::STATE_REPLIED)) {
$message->reply(fn () => new Exception('Restart because we were reconnected'));
}
unset($this->new_outgoing[$message_id], $this->outgoing_messages[$message_id]);
}
}
Assert::true($this->writer->start());
Assert::true($this->reader->start());
Assert::true($this->checker->start());
Assert::true($this->cleanup->start());
Assert::true($this->waiter->start());
if ($this->pinger) {
Assert::true($this->pinger->start());
}
}
/**
* Apply method abstractions.
*
* @param string $method Method name
* @param array $arguments Arguments
*/
private function methodAbstractions(string &$method, array &$arguments): ?DeferredFuture
{
if ($method === 'messages.importChatInvite' && isset($arguments['hash']) && \is_string($arguments['hash']) && $r = Tools::parseLink($arguments['hash'])) {
[$invite, $content] = $r;
if ($invite) {
$arguments['hash'] = $content;
} else {
$method = 'channels.joinChannel';
$arguments['channel'] = $content;
}
} elseif ($method === 'messages.checkChatInvite' && isset($arguments['hash']) && \is_string($arguments['hash']) && $r = Tools::parseLink($arguments['hash'])) {
[$invite, $content] = $r;
if (!$invite) {
throw new TL\Exception('This is not an invite link!');
}
$arguments['hash'] = $content;
} elseif ($method === 'channels.joinChannel' && isset($arguments['channel']) && \is_string($arguments['channel']) && $r = Tools::parseLink($arguments['channel'])) {
[$invite, $content] = $r;
if ($invite) {
$method = 'messages.importChatInvite';
$arguments['hash'] = $content;
} else {
$arguments['channel'] = $content;
}
} elseif ($method === 'messages.sendMessage' && isset($arguments['peer']['_']) && \in_array($arguments['peer']['_'], ['inputEncryptedChat', 'updateEncryption', 'updateEncryptedChatTyping', 'updateEncryptedMessagesRead', 'updateNewEncryptedMessage', 'encryptedMessage', 'encryptedMessageService'], true)) {
$method = 'messages.sendEncrypted';
$arguments = ['peer' => $arguments['peer'], 'message' => $arguments];
if (!isset($arguments['message']['_'])) {
$arguments['message']['_'] = 'decryptedMessage';
}
if (!isset($arguments['message']['ttl'])) {
$arguments['message']['ttl'] = 0;
}
if (isset($arguments['message']['reply_to_msg_id'])) {
$arguments['message']['reply_to_random_id'] = $arguments['message']['reply_to_msg_id'];
}
} elseif ($method === 'messages.sendMultiMedia') {
foreach ($arguments['multi_media'] as &$singleMedia) {
if (\is_string($singleMedia['media'])
|| $singleMedia['media']['_'] === 'inputMediaUploadedPhoto'
|| $singleMedia['media']['_'] === 'inputMediaUploadedDocument'
) {
$singleMedia['media'] = $this->methodCallAsyncRead('messages.uploadMedia', ['peer' => $arguments['peer'], 'media' => $singleMedia['media']]);
}
}
$this->logger->logger($arguments);
} elseif ($method === 'messages.sendEncryptedFile' || $method === 'messages.uploadEncryptedFile') {
if (isset($arguments['file'])) {
if ((!\is_array($arguments['file']) || !(isset($arguments['file']['_']) && $this->API->getTL()->getConstructors()->findByPredicate($arguments['file']['_']) === 'InputEncryptedFile')) && $this->API->getSettings()->getFiles()->getAllowAutomaticUpload()) {
$arguments['file'] = ($this->API->uploadEncrypted($arguments['file']));
}
if (isset($arguments['file']['key'])) {
$arguments['message']['media']['key'] = $arguments['file']['key'];
}
if (isset($arguments['file']['iv'])) {
$arguments['message']['media']['iv'] = $arguments['file']['iv'];
}
if (isset($arguments['file']['size'])) {
$arguments['message']['media']['size'] = $arguments['file']['size'];
}
}
$arguments['queuePromise'] = new DeferredFuture;
return $arguments['queuePromise'];
} elseif (\in_array($method, ['messages.addChatUser', 'messages.deleteChatUser', 'messages.editChatAdmin', 'messages.editChatPhoto', 'messages.editChatTitle', 'messages.getFullChat', 'messages.exportChatInvite', 'messages.editChatAdmin', 'messages.migrateChat'], true) && isset($arguments['chat_id']) && (!\is_numeric($arguments['chat_id']) || $arguments['chat_id'] < 0)) {
$res = $this->API->getInfo($arguments['chat_id']);
if ($res['type'] !== 'chat') {
throw new Exception('chat_id is not a chat id (only normal groups allowed, not supergroups)!');
}
$arguments['chat_id'] = $res['chat_id'];
} elseif ($method === 'photos.updateProfilePhoto') {
if (isset($arguments['id'])) {
if (!\is_array($arguments['id'])) {
$method = 'photos.uploadProfilePhoto';
$arguments['file'] = $arguments['id'];
}
} elseif (isset($arguments['file'])) {
$method = 'photos.uploadProfilePhoto';
}
} elseif ($method === 'photos.uploadProfilePhoto') {
if (isset($arguments['file'])) {
if (\is_array($arguments['file']) && !\in_array($arguments['file']['_'], ['inputFile', 'inputFileBig'], true)) {
$method = 'photos.uploadProfilePhoto';
$arguments['id'] = $arguments['file'];
}
} elseif (isset($arguments['id'])) {
$method = 'photos.updateProfilePhoto';
}
} elseif ($method === 'messages.uploadMedia') {
if (!isset($arguments['peer']) && !$this->API->getSelf()['bot']) {
$arguments['peer'] = 'me';
}
} elseif ($method === 'channels.deleteUserHistory') {
$method = 'channels.deleteParticipantHistory';
if (isset($arguments['user_id'])) {
$arguments['participant'] = $arguments['user_id'];
}
}
if ($method === 'messages.sendEncrypted' || $method === 'messages.sendEncryptedService') {
$arguments['queuePromise'] = new DeferredFuture;
return $arguments['queuePromise'];
}
if (isset($arguments['reply_to_msg_id'])) {
if (isset($arguments['reply_to'])) {
throw new Exception("You can't provide a reply_to together with reply_to_msg_id and top_msg_id!");
}
$arguments['reply_to'] = [
'_' => 'inputReplyToMessage',
'reply_to_msg_id' => $arguments['reply_to_msg_id'],
'top_msg_id' => $arguments['top_msg_id'] ?? null
];
}
return null;
}
/**
* Send an MTProto message.
*
* @param boolean $flush Whether to flush the message right away
*/
public function sendMessage(MTProtoOutgoingMessage $message, bool $flush = true): void
{
$message->trySend();
$promise = $message->getSendPromise();
if (!$message->hasSerializedBody() || $message->shouldRefreshReferences()) {
$body = $message->getBody();
if ($message->shouldRefreshReferences()) {
$this->API->referenceDatabase->refreshNext(true);
}
if ($message->isMethod()) {
$method = $message->getConstructor();
$queuePromise = $this->methodAbstractions($method, $body);
$body = $this->API->getTL()->serializeMethod($method, $body);
} else {
$body['_'] = $message->getConstructor();
$body = $this->API->getTL()->serializeObject(['type' => ''], $body, $message->getConstructor());
}
if ($message->shouldRefreshReferences()) {
$this->API->referenceDatabase->refreshNext(false);
}
$message->setSerializedBody($body);
unset($body);
}
$this->pendingOutgoing[$this->pendingOutgoingKey++] = $message;
if (isset($queuePromise)) {
$queuePromise->complete();
}
if ($flush && isset($this->writer)) {
$this->writer->resume();
}
$promise->await();
}
/**
* Flush pending packets.
*/
public function flush(): void
{
if (isset($this->writer)) {
$this->writer->resume();
}
}
/**
* Resume HttpWaiter.
*/
public function pingHttpWaiter(): void
{
if (isset($this->waiter)) {
$this->waiter->resume();
}
if (isset($this->pinger)) {
$this->pinger->resume();
}
}
/**
* Connect main instance.
*
* @param DataCenterConnection $extra Shared instance
* @param int $id Connection ID
*/
public function setExtra(DataCenterConnection $extra, int $id): void
{
$this->shared = $extra;
$this->id = $id;
$this->API = $extra->getExtra();
$this->logger = $this->API->logger;
}
/**
* Get main instance.
*/
public function getExtra(): MTProto
{
return $this->API;
}
/**
* Get shared connection instance.
*/
public function getShared(): DataCenterConnection
{
return $this->shared;
}
/**
* Disconnect from DC.
*
* @param bool $temporary Whether the disconnection is temporary, triggered by the reconnect method
*/
public function disconnect(bool $temporary = false): void
{
$this->API->logger->logger("Disconnecting from DC {$this->datacenterId}");
$this->needsReconnect = true;
if ($this->stream) {
try {
$this->stream->disconnect();
} catch (ClosedException $e) {
$this->API->logger->logger($e);
}
}
$this->reader?->stop();
$this->writer?->stop();
$this->checker?->stop();
$this->cleanup?->stop();
$this->pinger?->stop();
if (!$temporary) {
$this->shared->signalDisconnect($this->id);
}
$this->API->logger->logger("Disconnected from DC {$this->datacenterId}");
}
/**
* Reconnect to DC.
*/
public function reconnect(): void
{
$this->API->logger->logger("Reconnecting DC {$this->datacenterId}");
$this->disconnect(true);
$this->API->datacenter->dcConnect($this->ctx->getDc(), $this->id);
}
/**
* Get name.
*/
public function getName(): string
{
return self::class;
}
}