mirror of
https://github.com/PaiGramTeam/telegram-bot-api.git
synced 2024-11-22 23:42:28 +00:00
Add "forum_topic_created" messages.
This commit is contained in:
parent
1c3235b402
commit
8fa63c21f9
@ -1346,6 +1346,24 @@ class Client::JsonPollAnswer final : public Jsonable {
|
|||||||
const Client *client_;
|
const Client *client_;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class Client::JsonForumTopicCreated final : public Jsonable {
|
||||||
|
public:
|
||||||
|
explicit JsonForumTopicCreated(const td_api::messageForumTopicCreated *forum_topic_created)
|
||||||
|
: forum_topic_created_(forum_topic_created) {
|
||||||
|
}
|
||||||
|
void store(JsonValueScope *scope) const {
|
||||||
|
auto object = scope->enter_object();
|
||||||
|
object("name", forum_topic_created_->name_);
|
||||||
|
object("icon_color", forum_topic_created_->icon_->color_);
|
||||||
|
if (forum_topic_created_->icon_->custom_emoji_id_ != 0) {
|
||||||
|
object("icon_custom_emoji_id", forum_topic_created_->icon_->custom_emoji_id_);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
const td_api::messageForumTopicCreated *forum_topic_created_;
|
||||||
|
};
|
||||||
|
|
||||||
class Client::JsonAddress final : public Jsonable {
|
class Client::JsonAddress final : public Jsonable {
|
||||||
public:
|
public:
|
||||||
explicit JsonAddress(const td_api::address *address) : address_(address) {
|
explicit JsonAddress(const td_api::address *address) : address_(address) {
|
||||||
@ -1958,8 +1976,11 @@ void Client::JsonMessage::store(JsonValueScope *scope) const {
|
|||||||
object("migrate_from_chat_id", td::JsonLong(chat_id));
|
object("migrate_from_chat_id", td::JsonLong(chat_id));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case td_api::messageForumTopicCreated::ID:
|
case td_api::messageForumTopicCreated::ID: {
|
||||||
|
auto content = static_cast<const td_api::messageForumTopicCreated *>(message_->content.get());
|
||||||
|
object("forum_topic_created", JsonForumTopicCreated(content));
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
case td_api::messageForumTopicEdited::ID:
|
case td_api::messageForumTopicEdited::ID:
|
||||||
break;
|
break;
|
||||||
case td_api::messageForumTopicIsClosedToggled::ID:
|
case td_api::messageForumTopicIsClosedToggled::ID:
|
||||||
@ -9867,6 +9888,7 @@ bool Client::need_skip_update_message(int64 chat_id, const object_ptr<td_api::me
|
|||||||
case td_api::messageVideoChatStarted::ID:
|
case td_api::messageVideoChatStarted::ID:
|
||||||
case td_api::messageVideoChatEnded::ID:
|
case td_api::messageVideoChatEnded::ID:
|
||||||
case td_api::messageInviteVideoChatParticipants::ID:
|
case td_api::messageInviteVideoChatParticipants::ID:
|
||||||
|
case td_api::messageForumTopicCreated::ID:
|
||||||
// don't skip
|
// don't skip
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@ -9965,8 +9987,6 @@ bool Client::need_skip_update_message(int64 chat_id, const object_ptr<td_api::me
|
|||||||
return true;
|
return true;
|
||||||
case td_api::messageGiftedPremium::ID:
|
case td_api::messageGiftedPremium::ID:
|
||||||
return true;
|
return true;
|
||||||
case td_api::messageForumTopicCreated::ID:
|
|
||||||
return true;
|
|
||||||
case td_api::messageForumTopicEdited::ID:
|
case td_api::messageForumTopicEdited::ID:
|
||||||
return true;
|
return true;
|
||||||
case td_api::messageForumTopicIsClosedToggled::ID:
|
case td_api::messageForumTopicIsClosedToggled::ID:
|
||||||
|
@ -149,6 +149,7 @@ class Client final : public WebhookActor::Callback {
|
|||||||
class JsonChatMembers;
|
class JsonChatMembers;
|
||||||
class JsonChatMemberUpdated;
|
class JsonChatMemberUpdated;
|
||||||
class JsonChatJoinRequest;
|
class JsonChatJoinRequest;
|
||||||
|
class JsonForumTopicCreated;
|
||||||
class JsonGameHighScore;
|
class JsonGameHighScore;
|
||||||
class JsonAddress;
|
class JsonAddress;
|
||||||
class JsonOrderInfo;
|
class JsonOrderInfo;
|
||||||
|
Loading…
Reference in New Issue
Block a user