-
-
Notifications
You must be signed in to change notification settings - Fork 188
/
Copy pathEditmessageCommand.php
84 lines (71 loc) · 2.13 KB
/
EditmessageCommand.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
<?php
/**
* This file is part of the TelegramBot package.
*
* (c) Avtandil Kikabidze aka LONGMAN <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PhpTelegramBot\Core\Commands\UserCommands;
use PhpTelegramBot\Core\Commands\UserCommand;
use PhpTelegramBot\Core\Request;
/**
* User "/editmessage" command
*
* Command to edit a message via bot.
*/
class EditmessageCommand extends UserCommand
{
/**
* @var string
*/
protected $name = 'editmessage';
/**
* @var string
*/
protected $description = 'Edit message';
/**
* @var string
*/
protected $usage = '/editmessage';
/**
* @var string
*/
protected $version = '1.1.0';
/**
* Command execute method
*
* @return \PhpTelegramBot\Core\Entities\ServerResponse
* @throws \PhpTelegramBot\Core\Exception\TelegramException
*/
public function execute()
{
$message = $this->getMessage();
$chat_id = $message->getChat()->getId();
$reply_to_message = $message->getReplyToMessage();
$text = $message->getText(true);
if ($reply_to_message && $message_to_edit = $reply_to_message->getMessageId()) {
$data_edit = [
'chat_id' => $chat_id,
'message_id' => $message_to_edit,
'text' => $text ?: 'Edited message',
];
// Try to edit selected message.
$result = Request::editMessageText($data_edit);
if ($result->isOk()) {
// Delete this editing reply message.
Request::deleteMessage([
'chat_id' => $chat_id,
'message_id' => $message->getMessageId(),
]);
}
return $result;
}
$data = [
'chat_id' => $chat_id,
'text' => sprintf("Reply to any bots' message and use /%s <your text> to edit it.", $this->name),
];
return Request::sendMessage($data);
}
}