blob: ba0ce541e41848d8e9602a1f284aec86c418b545 (
plain)
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
|
//
// Created by Oleg Morozenkov on 23.01.17.
//
#include "tgbot/EventHandler.h"
#include <algorithm>
namespace TgBot {
void EventHandler::handleUpdate(const Update::Ptr update) const {
if (update->inlineQuery != nullptr) {
_broadcaster->broadcastInlineQuery(update->inlineQuery);
}
if (update->chosenInlineResult != nullptr) {
_broadcaster->broadcastChosenInlineResult(update->chosenInlineResult);
}
if (update->callbackQuery != nullptr) {
_broadcaster->broadcastCallbackQuery(update->callbackQuery);
}
if (update->message != nullptr) {
handleMessage(update->message);
}
}
void EventHandler::handleMessage(const Message::Ptr message) const {
_broadcaster->broadcastAnyMessage(message);
if (StringTools::startsWith(message->text, "/")) {
uint16_t splitPosition;
uint16_t spacePosition = message->text.find(' ');
uint16_t atSymbolPosition = message->text.find('@');
if (spacePosition == message->text.npos) {
if (atSymbolPosition == message->text.npos) {
splitPosition = message->text.size();
} else {
splitPosition = atSymbolPosition;
}
} else if (atSymbolPosition == message->text.npos) {
splitPosition = spacePosition;
} else {
splitPosition = std::min(spacePosition, atSymbolPosition);
}
std::string command = message->text.substr(1, splitPosition - 1);
if (!_broadcaster->broadcastCommand(command, message)) {
_broadcaster->broadcastUnknownCommand(message);
}
} else {
_broadcaster->broadcastNonCommandMessage(message);
}
}
}
|