2022-12-30 21:54:44 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2020-10-18 14:46:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Outgoing message.
|
|
|
|
*
|
|
|
|
* 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>
|
2023-01-04 12:43:01 +01:00
|
|
|
* @copyright 2016-2023 Daniil Gentili <daniil@daniil.it>
|
2020-10-18 14:46:34 +02:00
|
|
|
* @license https://opensource.org/licenses/AGPL-3.0 AGPLv3
|
|
|
|
* @link https://docs.madelineproto.xyz MadelineProto documentation
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace danog\MadelineProto\MTProto;
|
|
|
|
|
2022-12-30 20:24:13 +01:00
|
|
|
use Amp\DeferredFuture;
|
2022-12-30 21:43:58 +01:00
|
|
|
use Amp\Future;
|
2020-10-18 14:46:34 +02:00
|
|
|
use danog\MadelineProto\Exception;
|
|
|
|
use danog\MadelineProto\MTProtoSession\MsgIdHandler;
|
2022-12-30 21:43:58 +01:00
|
|
|
use Revolt\EventLoop;
|
2023-01-08 16:06:50 +01:00
|
|
|
use Throwable;
|
2022-12-30 19:21:36 +01:00
|
|
|
|
|
|
|
use function time;
|
2020-10-18 14:46:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Outgoing message.
|
|
|
|
*
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
class OutgoingMessage extends Message
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The message was created.
|
|
|
|
*/
|
|
|
|
const STATE_PENDING = 0;
|
|
|
|
/**
|
|
|
|
* The message was sent.
|
|
|
|
*/
|
|
|
|
const STATE_SENT = 1;
|
|
|
|
/**
|
|
|
|
* The message was acked.
|
|
|
|
*/
|
|
|
|
const STATE_ACKED = 2;
|
|
|
|
/**
|
|
|
|
* We got a reply to the message.
|
|
|
|
*/
|
|
|
|
const STATE_REPLIED = self::STATE_ACKED | 4;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* State of message.
|
|
|
|
*
|
2023-01-13 14:36:10 +01:00
|
|
|
* @var self::STATE_*
|
2020-10-18 14:46:34 +02:00
|
|
|
*/
|
|
|
|
private int $state = self::STATE_PENDING;
|
|
|
|
/**
|
|
|
|
* Constructor name.
|
|
|
|
*/
|
|
|
|
private string $constructor;
|
|
|
|
/**
|
|
|
|
* Constructor type.
|
|
|
|
*/
|
|
|
|
private string $type;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether this is a method.
|
|
|
|
*/
|
|
|
|
private bool $method;
|
|
|
|
/**
|
|
|
|
* Resolution deferred.
|
|
|
|
*/
|
2023-01-20 17:24:13 +01:00
|
|
|
private ?DeferredFuture $resultDeferred = null;
|
2020-10-18 14:46:34 +02:00
|
|
|
/**
|
|
|
|
* Send deferred.
|
2023-01-11 18:47:27 +01:00
|
|
|
*
|
|
|
|
* @var ?DeferredFuture<null>
|
2020-10-18 14:46:34 +02:00
|
|
|
*/
|
2023-01-20 17:24:13 +01:00
|
|
|
private ?DeferredFuture $sendDeferred = null;
|
2020-10-18 14:46:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether this is an unencrypted message.
|
|
|
|
*/
|
|
|
|
private bool $unencrypted;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Message body.
|
|
|
|
*
|
2023-01-08 19:02:49 +01:00
|
|
|
* @var array|(callable(): array)|null
|
2020-10-18 14:46:34 +02:00
|
|
|
*/
|
2023-01-08 19:02:49 +01:00
|
|
|
private $body = null;
|
2020-10-18 14:46:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Serialized body.
|
|
|
|
*/
|
|
|
|
private ?string $serializedBody = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether this message is related to a user, as in getting a successful reply means we have auth.
|
|
|
|
*/
|
|
|
|
private bool $userRelated = false;
|
|
|
|
/**
|
|
|
|
* Whether this message is related to a file upload, as in getting a redirect should redirect to a media server.
|
|
|
|
*/
|
|
|
|
private bool $fileRelated = false;
|
|
|
|
|
|
|
|
/**
|
2020-10-18 15:02:37 +02:00
|
|
|
* Custom flood wait limit for this bot.
|
2020-10-18 14:46:34 +02:00
|
|
|
*/
|
|
|
|
private ?int $floodWaitLimit = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether we should try converting the result to a bot API object.
|
|
|
|
*/
|
|
|
|
private bool $botAPI = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether we should refresh references upon serialization of this message.
|
|
|
|
*/
|
|
|
|
private bool $refreshReferences = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Queue ID.
|
|
|
|
*/
|
|
|
|
private ?string $queueId = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When was this message sent.
|
|
|
|
*/
|
2023-01-14 19:51:23 +01:00
|
|
|
private ?int $sent = null;
|
2020-10-18 14:46:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Number of times this message was sent.
|
|
|
|
*/
|
|
|
|
private int $tries = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create outgoing message.
|
|
|
|
*
|
2023-01-08 19:02:49 +01:00
|
|
|
* @param array|callable(): array $body Body
|
|
|
|
* @param string $constructor Constructor name
|
|
|
|
* @param string $type Constructor type
|
|
|
|
* @param boolean $method Is this a method?
|
|
|
|
* @param boolean $unencrypted Is this an unencrypted message?
|
2023-01-20 15:30:13 +01:00
|
|
|
* @param null|DeferredFuture $deferred Response deferred
|
2020-10-18 14:46:34 +02:00
|
|
|
*/
|
2023-01-11 18:47:27 +01:00
|
|
|
public function __construct(array|callable $body, string $constructor, string $type, bool $method, bool $unencrypted, ?DeferredFuture $deferred = null)
|
2020-10-18 14:46:34 +02:00
|
|
|
{
|
|
|
|
$this->body = $body;
|
|
|
|
$this->constructor = $constructor;
|
|
|
|
$this->type = $type;
|
|
|
|
$this->method = $method;
|
|
|
|
$this->unencrypted = $unencrypted;
|
2023-01-11 18:47:27 +01:00
|
|
|
if ($deferred) {
|
2023-01-20 17:24:13 +01:00
|
|
|
$this->resultDeferred = $deferred;
|
2020-10-18 14:46:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->contentRelated = !isset(Message::NOT_CONTENT_RELATED[$constructor]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Signal that we're trying to send the message.
|
|
|
|
*/
|
|
|
|
public function trySend(): void
|
|
|
|
{
|
2023-01-20 17:24:13 +01:00
|
|
|
if (!isset($this->sendDeferred)) {
|
|
|
|
$this->sendDeferred = new DeferredFuture;
|
2020-10-18 14:46:34 +02:00
|
|
|
}
|
|
|
|
$this->tries++;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Signal that the message was sent.
|
|
|
|
*/
|
|
|
|
public function sent(): void
|
|
|
|
{
|
|
|
|
if ($this->state & self::STATE_REPLIED) {
|
2021-12-07 17:16:15 +01:00
|
|
|
//throw new Exception("Trying to resend already replied message $this!");
|
2020-10-18 14:46:34 +02:00
|
|
|
}
|
|
|
|
$this->state |= self::STATE_SENT;
|
|
|
|
$this->sent = \time();
|
2023-01-20 17:24:13 +01:00
|
|
|
if (isset($this->sendDeferred)) {
|
|
|
|
$sendDeferred = $this->sendDeferred;
|
|
|
|
$this->sendDeferred = null;
|
|
|
|
$sendDeferred->complete();
|
2020-10-18 14:46:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Set reply to message.
|
2023-01-20 14:14:29 +01:00
|
|
|
*
|
|
|
|
* @param mixed|(callable(): Throwable) $result
|
2020-10-18 14:46:34 +02:00
|
|
|
*/
|
|
|
|
public function reply($result): void
|
|
|
|
{
|
|
|
|
if ($this->state & self::STATE_REPLIED) {
|
|
|
|
throw new Exception("Trying to double reply to message $this!");
|
|
|
|
}
|
|
|
|
$this->serializedBody = null;
|
|
|
|
$this->body = null;
|
|
|
|
|
|
|
|
$this->state |= self::STATE_REPLIED;
|
2023-01-20 17:24:13 +01:00
|
|
|
if ($this->resultDeferred) { // Sometimes can get an RPC error for constructors
|
|
|
|
$promise = $this->resultDeferred;
|
|
|
|
$this->resultDeferred = null;
|
2023-01-21 21:21:35 +01:00
|
|
|
EventLoop::queue($promise->complete(...), $result);
|
2020-10-18 14:46:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ACK message.
|
|
|
|
*/
|
|
|
|
public function ack(): void
|
|
|
|
{
|
|
|
|
$this->state |= self::STATE_ACKED;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Get state of message.
|
|
|
|
*
|
2023-01-04 16:04:05 +01:00
|
|
|
* @return self::STATE_*
|
2020-10-18 14:46:34 +02:00
|
|
|
*/
|
|
|
|
public function getState(): int
|
|
|
|
{
|
|
|
|
return $this->state;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get message body.
|
|
|
|
*/
|
2022-12-30 22:31:20 +01:00
|
|
|
public function getBody()
|
2020-10-18 14:46:34 +02:00
|
|
|
{
|
2023-01-08 19:27:29 +01:00
|
|
|
return \is_callable($this->body) ? ($this->body)() : $this->body;
|
2020-10-18 14:46:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get message body or empty array.
|
|
|
|
*/
|
|
|
|
public function getBodyOrEmpty(): array
|
|
|
|
{
|
|
|
|
return \is_array($this->body) ? $this->body : [];
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Check if we have a body.
|
|
|
|
*/
|
|
|
|
public function hasBody(): bool
|
|
|
|
{
|
|
|
|
return $this->body !== null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get serialized body.
|
|
|
|
*/
|
|
|
|
public function getSerializedBody(): ?string
|
|
|
|
{
|
|
|
|
return $this->serializedBody;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Check if we have a serialized body.
|
|
|
|
*/
|
|
|
|
public function hasSerializedBody(): bool
|
|
|
|
{
|
|
|
|
return $this->serializedBody !== null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get number of times this message was sent.
|
|
|
|
*/
|
|
|
|
public function getTries(): int
|
|
|
|
{
|
|
|
|
return $this->tries;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get constructor name.
|
|
|
|
*/
|
|
|
|
public function getConstructor(): string
|
|
|
|
{
|
|
|
|
return $this->constructor;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get constructor type.
|
|
|
|
*/
|
|
|
|
public function getType(): string
|
|
|
|
{
|
|
|
|
return $this->type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get whether this is a method.
|
|
|
|
*/
|
|
|
|
public function isMethod(): bool
|
|
|
|
{
|
|
|
|
return $this->method;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get whether this is an unencrypted message.
|
|
|
|
*/
|
|
|
|
public function isUnencrypted(): bool
|
|
|
|
{
|
|
|
|
return $this->unencrypted;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Get whether this is an encrypted message.
|
|
|
|
*/
|
|
|
|
public function isEncrypted(): bool
|
|
|
|
{
|
|
|
|
return !$this->unencrypted;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get whether this message is related to a user, as in getting a successful reply means we have auth.
|
|
|
|
*/
|
|
|
|
public function isUserRelated(): bool
|
|
|
|
{
|
|
|
|
return $this->userRelated;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get whether we should refresh references upon serialization of this message.
|
|
|
|
*/
|
|
|
|
public function shouldRefreshReferences(): bool
|
|
|
|
{
|
|
|
|
return $this->refreshReferences;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get queue ID.
|
|
|
|
*/
|
|
|
|
public function getQueueId(): ?string
|
|
|
|
{
|
|
|
|
return $this->queueId;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Get whether we have a queue ID.
|
|
|
|
*/
|
|
|
|
public function hasQueue(): bool
|
|
|
|
{
|
|
|
|
return $this->queueId !== null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set serialized body.
|
|
|
|
*
|
|
|
|
* @param string $serializedBody Serialized body.
|
|
|
|
*/
|
|
|
|
public function setSerializedBody(string $serializedBody): self
|
|
|
|
{
|
|
|
|
$this->serializedBody = $serializedBody;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set whether this message is related to a user, as in getting a successful reply means we have auth.
|
|
|
|
*
|
|
|
|
* @param bool $userRelated Whether this message is related to a user, as in getting a successful reply means we have auth.
|
|
|
|
*/
|
|
|
|
public function setUserRelated(bool $userRelated): self
|
|
|
|
{
|
|
|
|
$this->userRelated = $userRelated;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set whether we should refresh references upon serialization of this message.
|
|
|
|
*
|
|
|
|
* @param bool $refreshReferences Whether we should refresh references upon serialization of this message.
|
|
|
|
*/
|
|
|
|
public function setRefreshReferences(bool $refreshReferences): self
|
|
|
|
{
|
|
|
|
$this->refreshReferences = $refreshReferences;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set queue ID.
|
|
|
|
*
|
2023-01-20 15:30:13 +01:00
|
|
|
* @param null|string $queueId Queue ID.
|
2020-10-18 14:46:34 +02:00
|
|
|
*/
|
|
|
|
public function setQueueId(?string $queueId): self
|
|
|
|
{
|
|
|
|
$this->queueId = $queueId;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get when was this message sent.
|
|
|
|
*/
|
2023-01-14 19:51:23 +01:00
|
|
|
public function getSent(): ?int
|
2020-10-18 14:46:34 +02:00
|
|
|
{
|
|
|
|
return $this->sent;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the message was sent.
|
|
|
|
*/
|
|
|
|
public function wasSent(): bool
|
|
|
|
{
|
|
|
|
return (bool) ($this->state & self::STATE_SENT);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Check if can garbage collect this message.
|
|
|
|
*/
|
|
|
|
public function canGarbageCollect(): bool
|
|
|
|
{
|
|
|
|
if ($this->state & self::STATE_REPLIED) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (!$this->hasPromise()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* For logging.
|
|
|
|
*/
|
2022-12-30 19:21:36 +01:00
|
|
|
public function __toString(): string
|
2020-10-18 14:46:34 +02:00
|
|
|
{
|
2023-01-22 20:03:51 +01:00
|
|
|
if ($this->state & self::STATE_REPLIED) {
|
|
|
|
$state = 'acked (by reply)';
|
|
|
|
} elseif ($this->state & self::STATE_ACKED) {
|
|
|
|
$state = 'acked';
|
|
|
|
} elseif ($this->state & self::STATE_SENT) {
|
|
|
|
$state = 'sent '.(\time() - $this->sent).' seconds ago';
|
|
|
|
} else {
|
|
|
|
$state = 'pending';
|
|
|
|
}
|
2020-10-18 14:46:34 +02:00
|
|
|
if ($this->msgId) {
|
|
|
|
$msgId = MsgIdHandler::toString($this->msgId);
|
2023-01-22 17:42:04 +01:00
|
|
|
return "{$this->constructor} with message ID $msgId $state";
|
2020-10-18 14:46:34 +02:00
|
|
|
}
|
2023-01-22 17:42:04 +01:00
|
|
|
return "{$this->constructor} $state";
|
2020-10-18 14:46:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Wait for message to be sent.
|
2023-01-11 18:47:27 +01:00
|
|
|
*
|
|
|
|
* @return Future<null>
|
2020-10-18 14:46:34 +02:00
|
|
|
*/
|
2022-12-30 21:43:58 +01:00
|
|
|
public function getSendPromise(): Future
|
2020-10-18 14:46:34 +02:00
|
|
|
{
|
2023-01-20 17:24:13 +01:00
|
|
|
if (!$this->sendDeferred) {
|
2020-10-18 14:46:34 +02:00
|
|
|
throw new Exception("Message was already sent, can't get send promise!");
|
|
|
|
}
|
2023-01-20 17:24:13 +01:00
|
|
|
return $this->sendDeferred->getFuture();
|
2020-10-18 14:46:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if we have a promise.
|
|
|
|
*/
|
|
|
|
public function hasPromise(): bool
|
|
|
|
{
|
2023-01-20 17:24:13 +01:00
|
|
|
return $this->resultDeferred !== null;
|
2020-10-18 14:46:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reset sent time to trigger resending.
|
|
|
|
*/
|
|
|
|
public function resetSent(): self
|
|
|
|
{
|
|
|
|
$this->sent = 0;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get whether we should try converting the result to a bot API object.
|
|
|
|
*/
|
|
|
|
public function getBotAPI(): bool
|
|
|
|
{
|
|
|
|
return $this->botAPI;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set whether we should try converting the result to a bot API object.
|
|
|
|
*
|
|
|
|
* @param bool $botAPI Whether we should try converting the result to a bot API object
|
|
|
|
*/
|
|
|
|
public function setBotAPI(bool $botAPI): self
|
|
|
|
{
|
|
|
|
$this->botAPI = $botAPI;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get whether this message is related to a file upload, as in getting a redirect should redirect to a media server.
|
|
|
|
*/
|
|
|
|
public function isFileRelated(): bool
|
|
|
|
{
|
|
|
|
return $this->fileRelated;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set whether this message is related to a file upload, as in getting a redirect should redirect to a media server.
|
|
|
|
*
|
|
|
|
* @param bool $fileRelated Whether this message is related to a file upload, as in getting a redirect should redirect to a media server.
|
|
|
|
*/
|
|
|
|
public function setFileRelated(bool $fileRelated): self
|
|
|
|
{
|
|
|
|
$this->fileRelated = $fileRelated;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-10-18 15:02:37 +02:00
|
|
|
* Get custom flood wait limit for this bot.
|
2020-10-18 14:46:34 +02:00
|
|
|
*/
|
|
|
|
public function getFloodWaitLimit(): ?int
|
|
|
|
{
|
|
|
|
return $this->floodWaitLimit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-10-18 15:02:37 +02:00
|
|
|
* Set custom flood wait limit for this bot.
|
2020-10-18 14:46:34 +02:00
|
|
|
*
|
2023-01-20 15:30:13 +01:00
|
|
|
* @param null|int $floodWaitLimit Custom flood wait limit for this bot
|
2020-10-18 14:46:34 +02:00
|
|
|
*/
|
|
|
|
public function setFloodWaitLimit(?int $floodWaitLimit): self
|
|
|
|
{
|
|
|
|
$this->floodWaitLimit = $floodWaitLimit;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set when was this message sent.
|
|
|
|
*
|
|
|
|
* @param int $sent When was this message sent.
|
|
|
|
*/
|
|
|
|
public function setSent(int $sent): self
|
|
|
|
{
|
|
|
|
$this->sent = $sent;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
}
|