mirror of
https://github.com/PaiGramTeam/telegram-bot-api.git
synced 2024-11-22 23:42:28 +00:00
Add web_app_data messages.
This commit is contained in:
parent
3252809448
commit
c278251d8f
@ -1456,6 +1456,20 @@ class Client::JsonPassportData final : public Jsonable {
|
||||
const Client *client_;
|
||||
};
|
||||
|
||||
class Client::JsonWebAppData final : public Jsonable {
|
||||
public:
|
||||
explicit JsonWebAppData(const td_api::messageWebAppDataReceived *web_app_data) : web_app_data_(web_app_data) {
|
||||
}
|
||||
void store(JsonValueScope *scope) const {
|
||||
auto object = scope->enter_object();
|
||||
object("button_text", web_app_data_->button_text_);
|
||||
object("data", web_app_data_->data_);
|
||||
}
|
||||
|
||||
private:
|
||||
const td_api::messageWebAppDataReceived *web_app_data_;
|
||||
};
|
||||
|
||||
class Client::JsonProximityAlertTriggered final : public Jsonable {
|
||||
public:
|
||||
JsonProximityAlertTriggered(const td_api::messageProximityAlertTriggered *proximity_alert_triggered,
|
||||
@ -1974,6 +1988,13 @@ void Client::JsonMessage::store(JsonValueScope *scope) const {
|
||||
object("voice_chat_participants_invited", JsonInviteVideoChatParticipants(content, client_));
|
||||
break;
|
||||
}
|
||||
case td_api::messageWebAppDataSent::ID:
|
||||
break;
|
||||
case td_api::messageWebAppDataReceived::ID: {
|
||||
auto content = static_cast<const td_api::messageWebAppDataReceived *>(message_->content.get());
|
||||
object("web_app_data", JsonWebAppData(content));
|
||||
break;
|
||||
}
|
||||
default:
|
||||
UNREACHABLE();
|
||||
}
|
||||
@ -9394,6 +9415,8 @@ bool Client::need_skip_update_message(int64 chat_id, const object_ptr<td_api::me
|
||||
return true;
|
||||
case td_api::messageChatSetTheme::ID:
|
||||
return true;
|
||||
case td_api::messageWebAppDataSent::ID:
|
||||
return true;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
@ -146,6 +146,7 @@ class Client final : public WebhookActor::Callback {
|
||||
class JsonEncryptedPassportElement;
|
||||
class JsonEncryptedCredentials;
|
||||
class JsonPassportData;
|
||||
class JsonWebAppData;
|
||||
class JsonProximityAlertTriggered;
|
||||
class JsonVideoChatScheduled;
|
||||
class JsonVideoChatStarted;
|
||||
|
Loading…
Reference in New Issue
Block a user