Add Venue.{cpp,h}.
GitOrigin-RevId: 19dd4da6d4792ecbb84fdba560e49affcfcf5bed
This commit is contained in:
parent
35b9d56c64
commit
0d72fd638e
@ -459,6 +459,7 @@ set(TDLIB_SOURCE
|
|||||||
td/telegram/TermsOfService.cpp
|
td/telegram/TermsOfService.cpp
|
||||||
td/telegram/TopDialogManager.cpp
|
td/telegram/TopDialogManager.cpp
|
||||||
td/telegram/UpdatesManager.cpp
|
td/telegram/UpdatesManager.cpp
|
||||||
|
td/telegram/Venue.cpp
|
||||||
td/telegram/VideoNotesManager.cpp
|
td/telegram/VideoNotesManager.cpp
|
||||||
td/telegram/VideosManager.cpp
|
td/telegram/VideosManager.cpp
|
||||||
td/telegram/VoiceNotesManager.cpp
|
td/telegram/VoiceNotesManager.cpp
|
||||||
@ -637,6 +638,7 @@ set(TDLIB_SOURCE
|
|||||||
td/telegram/UniqueId.h
|
td/telegram/UniqueId.h
|
||||||
td/telegram/UpdatesManager.h
|
td/telegram/UpdatesManager.h
|
||||||
td/telegram/UserId.h
|
td/telegram/UserId.h
|
||||||
|
td/telegram/Venue.h
|
||||||
td/telegram/Version.h
|
td/telegram/Version.h
|
||||||
td/telegram/VideoNotesManager.h
|
td/telegram/VideoNotesManager.h
|
||||||
td/telegram/VideosManager.h
|
td/telegram/VideosManager.h
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
#include "td/telegram/StickersManager.h"
|
#include "td/telegram/StickersManager.h"
|
||||||
#include "td/telegram/Td.h"
|
#include "td/telegram/Td.h"
|
||||||
#include "td/telegram/TdDb.h"
|
#include "td/telegram/TdDb.h"
|
||||||
|
#include "td/telegram/Venue.h"
|
||||||
#include "td/telegram/VideosManager.h"
|
#include "td/telegram/VideosManager.h"
|
||||||
#include "td/telegram/VoiceNotesManager.h"
|
#include "td/telegram/VoiceNotesManager.h"
|
||||||
|
|
||||||
|
@ -6,14 +6,6 @@
|
|||||||
//
|
//
|
||||||
#include "td/telegram/Location.h"
|
#include "td/telegram/Location.h"
|
||||||
|
|
||||||
#include "td/telegram/Global.h"
|
|
||||||
#include "td/telegram/misc.h"
|
|
||||||
#include "td/telegram/secret_api.h"
|
|
||||||
#include "td/telegram/td_api.h"
|
|
||||||
#include "td/telegram/telegram_api.h"
|
|
||||||
|
|
||||||
#include "td/utils/common.h"
|
|
||||||
|
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
|
|
||||||
namespace td {
|
namespace td {
|
||||||
@ -114,82 +106,6 @@ StringBuilder &operator<<(StringBuilder &string_builder, const Location &locatio
|
|||||||
<< "]";
|
<< "]";
|
||||||
}
|
}
|
||||||
|
|
||||||
Venue::Venue(const tl_object_ptr<telegram_api::GeoPoint> &geo_point_ptr, string title, string address, string provider,
|
|
||||||
string id, string type)
|
|
||||||
: location_(geo_point_ptr)
|
|
||||||
, title_(std::move(title))
|
|
||||||
, address_(std::move(address))
|
|
||||||
, provider_(std::move(provider))
|
|
||||||
, id_(std::move(id))
|
|
||||||
, type_(std::move(type)) {
|
|
||||||
}
|
|
||||||
|
|
||||||
Venue::Venue(Location location, string title, string address, string provider, string id, string type)
|
|
||||||
: location_(location)
|
|
||||||
, title_(std::move(title))
|
|
||||||
, address_(std::move(address))
|
|
||||||
, provider_(std::move(provider))
|
|
||||||
, id_(std::move(id))
|
|
||||||
, type_(std::move(type)) {
|
|
||||||
}
|
|
||||||
|
|
||||||
Venue::Venue(const tl_object_ptr<td_api::venue> &venue)
|
|
||||||
: location_(venue->location_)
|
|
||||||
, title_(venue->title_)
|
|
||||||
, address_(venue->address_)
|
|
||||||
, provider_(venue->provider_)
|
|
||||||
, id_(venue->id_)
|
|
||||||
, type_(venue->type_) {
|
|
||||||
}
|
|
||||||
|
|
||||||
bool Venue::empty() const {
|
|
||||||
return location_.empty();
|
|
||||||
}
|
|
||||||
|
|
||||||
Location &Venue::location() {
|
|
||||||
return location_;
|
|
||||||
}
|
|
||||||
|
|
||||||
const Location &Venue::location() const {
|
|
||||||
return location_;
|
|
||||||
}
|
|
||||||
|
|
||||||
tl_object_ptr<td_api::venue> Venue::get_venue_object() const {
|
|
||||||
return make_tl_object<td_api::venue>(location_.get_location_object(), title_, address_, provider_, id_, type_);
|
|
||||||
}
|
|
||||||
|
|
||||||
tl_object_ptr<telegram_api::inputMediaVenue> Venue::get_input_media_venue() const {
|
|
||||||
return make_tl_object<telegram_api::inputMediaVenue>(location_.get_input_geo_point(), title_, address_, provider_,
|
|
||||||
id_, type_);
|
|
||||||
}
|
|
||||||
|
|
||||||
SecretInputMedia Venue::get_secret_input_media_venue() const {
|
|
||||||
return SecretInputMedia{nullptr,
|
|
||||||
make_tl_object<secret_api::decryptedMessageMediaVenue>(
|
|
||||||
location_.get_latitude(), location_.get_longitude(), title_, address_, provider_, id_)};
|
|
||||||
}
|
|
||||||
|
|
||||||
tl_object_ptr<telegram_api::inputBotInlineMessageMediaVenue> Venue::get_input_bot_inline_message_media_venue(
|
|
||||||
int32 flags, tl_object_ptr<telegram_api::ReplyMarkup> &&reply_markup) const {
|
|
||||||
return make_tl_object<telegram_api::inputBotInlineMessageMediaVenue>(
|
|
||||||
flags, location_.get_input_geo_point(), title_, address_, provider_, id_, type_, std::move(reply_markup));
|
|
||||||
}
|
|
||||||
|
|
||||||
bool operator==(const Venue &lhs, const Venue &rhs) {
|
|
||||||
return lhs.location_ == rhs.location_ && lhs.title_ == rhs.title_ && lhs.address_ == rhs.address_ &&
|
|
||||||
lhs.provider_ == rhs.provider_ && lhs.id_ == rhs.id_ && lhs.type_ == rhs.type_;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool operator!=(const Venue &lhs, const Venue &rhs) {
|
|
||||||
return !(lhs == rhs);
|
|
||||||
}
|
|
||||||
|
|
||||||
StringBuilder &operator<<(StringBuilder &string_builder, const Venue &venue) {
|
|
||||||
return string_builder << "Venue[location = " << venue.location_ << ", title = " << venue.title_
|
|
||||||
<< ", address = " << venue.address_ << ", provider = " << venue.provider_
|
|
||||||
<< ", id = " << venue.id_ << ", type = " << venue.type_ << "]";
|
|
||||||
}
|
|
||||||
|
|
||||||
Result<std::pair<Location, int32>> process_input_message_location(
|
Result<std::pair<Location, int32>> process_input_message_location(
|
||||||
tl_object_ptr<td_api::InputMessageContent> &&input_message_content) {
|
tl_object_ptr<td_api::InputMessageContent> &&input_message_content) {
|
||||||
CHECK(input_message_content != nullptr);
|
CHECK(input_message_content != nullptr);
|
||||||
@ -212,37 +128,4 @@ Result<std::pair<Location, int32>> process_input_message_location(
|
|||||||
return std::make_pair(std::move(location), period);
|
return std::make_pair(std::move(location), period);
|
||||||
}
|
}
|
||||||
|
|
||||||
Result<Venue> process_input_message_venue(tl_object_ptr<td_api::InputMessageContent> &&input_message_content) {
|
|
||||||
CHECK(input_message_content != nullptr);
|
|
||||||
CHECK(input_message_content->get_id() == td_api::inputMessageVenue::ID);
|
|
||||||
auto venue = std::move(static_cast<td_api::inputMessageVenue *>(input_message_content.get())->venue_);
|
|
||||||
|
|
||||||
if (venue == nullptr) {
|
|
||||||
return Status::Error(400, "Venue can't be empty");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!clean_input_string(venue->title_)) {
|
|
||||||
return Status::Error(400, "Venue title must be encoded in UTF-8");
|
|
||||||
}
|
|
||||||
if (!clean_input_string(venue->address_)) {
|
|
||||||
return Status::Error(400, "Venue address must be encoded in UTF-8");
|
|
||||||
}
|
|
||||||
if (!clean_input_string(venue->provider_)) {
|
|
||||||
return Status::Error(400, "Venue provider must be encoded in UTF-8");
|
|
||||||
}
|
|
||||||
if (!clean_input_string(venue->id_)) {
|
|
||||||
return Status::Error(400, "Venue identifier must be encoded in UTF-8");
|
|
||||||
}
|
|
||||||
if (!clean_input_string(venue->type_)) {
|
|
||||||
return Status::Error(400, "Venue type must be encoded in UTF-8");
|
|
||||||
}
|
|
||||||
|
|
||||||
Venue result(venue);
|
|
||||||
if (result.empty()) {
|
|
||||||
return Status::Error(400, "Wrong venue location specified");
|
|
||||||
}
|
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace td
|
} // namespace td
|
||||||
|
@ -8,7 +8,6 @@
|
|||||||
|
|
||||||
#include "td/telegram/Global.h"
|
#include "td/telegram/Global.h"
|
||||||
#include "td/telegram/SecretInputMedia.h"
|
#include "td/telegram/SecretInputMedia.h"
|
||||||
#include "td/telegram/Version.h"
|
|
||||||
|
|
||||||
#include "td/telegram/secret_api.h"
|
#include "td/telegram/secret_api.h"
|
||||||
#include "td/telegram/td_api.h"
|
#include "td/telegram/td_api.h"
|
||||||
@ -112,79 +111,7 @@ bool operator!=(const Location &lhs, const Location &rhs);
|
|||||||
|
|
||||||
StringBuilder &operator<<(StringBuilder &string_builder, const Location &location);
|
StringBuilder &operator<<(StringBuilder &string_builder, const Location &location);
|
||||||
|
|
||||||
class Venue {
|
|
||||||
Location location_;
|
|
||||||
string title_;
|
|
||||||
string address_;
|
|
||||||
string provider_;
|
|
||||||
string id_;
|
|
||||||
string type_;
|
|
||||||
|
|
||||||
friend bool operator==(const Venue &lhs, const Venue &rhs);
|
|
||||||
friend bool operator!=(const Venue &lhs, const Venue &rhs);
|
|
||||||
|
|
||||||
friend StringBuilder &operator<<(StringBuilder &string_builder, const Venue &venue);
|
|
||||||
|
|
||||||
public:
|
|
||||||
Venue() = default;
|
|
||||||
|
|
||||||
Venue(const tl_object_ptr<telegram_api::GeoPoint> &geo_point_ptr, string title, string address, string provider,
|
|
||||||
string id, string type);
|
|
||||||
|
|
||||||
Venue(Location location, string title, string address, string provider, string id, string type);
|
|
||||||
|
|
||||||
explicit Venue(const tl_object_ptr<td_api::venue> &venue);
|
|
||||||
|
|
||||||
bool empty() const;
|
|
||||||
|
|
||||||
Location &location();
|
|
||||||
|
|
||||||
const Location &location() const;
|
|
||||||
|
|
||||||
tl_object_ptr<td_api::venue> get_venue_object() const;
|
|
||||||
|
|
||||||
tl_object_ptr<telegram_api::inputMediaVenue> get_input_media_venue() const;
|
|
||||||
|
|
||||||
SecretInputMedia get_secret_input_media_venue() const;
|
|
||||||
|
|
||||||
// TODO very strange function
|
|
||||||
tl_object_ptr<telegram_api::inputBotInlineMessageMediaVenue> get_input_bot_inline_message_media_venue(
|
|
||||||
int32 flags, tl_object_ptr<telegram_api::ReplyMarkup> &&reply_markup) const;
|
|
||||||
|
|
||||||
template <class StorerT>
|
|
||||||
void store(StorerT &storer) const {
|
|
||||||
using td::store;
|
|
||||||
store(location_, storer);
|
|
||||||
store(title_, storer);
|
|
||||||
store(address_, storer);
|
|
||||||
store(provider_, storer);
|
|
||||||
store(id_, storer);
|
|
||||||
store(type_, storer);
|
|
||||||
}
|
|
||||||
|
|
||||||
template <class ParserT>
|
|
||||||
void parse(ParserT &parser) {
|
|
||||||
using td::parse;
|
|
||||||
parse(location_, parser);
|
|
||||||
parse(title_, parser);
|
|
||||||
parse(address_, parser);
|
|
||||||
parse(provider_, parser);
|
|
||||||
parse(id_, parser);
|
|
||||||
if (parser.version() >= static_cast<int32>(Version::AddVenueType)) {
|
|
||||||
parse(type_, parser);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
bool operator==(const Venue &lhs, const Venue &rhs);
|
|
||||||
bool operator!=(const Venue &lhs, const Venue &rhs);
|
|
||||||
|
|
||||||
StringBuilder &operator<<(StringBuilder &string_builder, const Venue &venue);
|
|
||||||
|
|
||||||
Result<std::pair<Location, int32>> process_input_message_location(
|
Result<std::pair<Location, int32>> process_input_message_location(
|
||||||
td_api::object_ptr<td_api::InputMessageContent> &&input_message_content) TD_WARN_UNUSED_RESULT;
|
td_api::object_ptr<td_api::InputMessageContent> &&input_message_content) TD_WARN_UNUSED_RESULT;
|
||||||
|
|
||||||
Result<Venue> process_input_message_venue(td_api::object_ptr<td_api::InputMessageContent> &&input_message_content)
|
|
||||||
TD_WARN_UNUSED_RESULT;
|
|
||||||
|
|
||||||
} // namespace td
|
} // namespace td
|
||||||
|
@ -50,6 +50,7 @@
|
|||||||
#include "td/telegram/StickersManager.hpp"
|
#include "td/telegram/StickersManager.hpp"
|
||||||
#include "td/telegram/Td.h"
|
#include "td/telegram/Td.h"
|
||||||
#include "td/telegram/UserId.h"
|
#include "td/telegram/UserId.h"
|
||||||
|
#include "td/telegram/Venue.h"
|
||||||
#include "td/telegram/Version.h"
|
#include "td/telegram/Version.h"
|
||||||
#include "td/telegram/VideoNotesManager.h"
|
#include "td/telegram/VideoNotesManager.h"
|
||||||
#include "td/telegram/VideoNotesManager.hpp"
|
#include "td/telegram/VideoNotesManager.hpp"
|
||||||
|
@ -38,6 +38,7 @@
|
|||||||
#include "td/telegram/InlineQueriesManager.h"
|
#include "td/telegram/InlineQueriesManager.h"
|
||||||
#include "td/telegram/JsonValue.h"
|
#include "td/telegram/JsonValue.h"
|
||||||
#include "td/telegram/LanguagePackManager.h"
|
#include "td/telegram/LanguagePackManager.h"
|
||||||
|
#include "td/telegram/Location.h"
|
||||||
#include "td/telegram/Logging.h"
|
#include "td/telegram/Logging.h"
|
||||||
#include "td/telegram/MessageEntity.h"
|
#include "td/telegram/MessageEntity.h"
|
||||||
#include "td/telegram/MessageId.h"
|
#include "td/telegram/MessageId.h"
|
||||||
|
122
td/telegram/Venue.cpp
Normal file
122
td/telegram/Venue.cpp
Normal file
@ -0,0 +1,122 @@
|
|||||||
|
//
|
||||||
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
|
||||||
|
//
|
||||||
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||||
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
//
|
||||||
|
#include "td/telegram/Venue.h"
|
||||||
|
|
||||||
|
#include "td/telegram/misc.h"
|
||||||
|
|
||||||
|
namespace td {
|
||||||
|
|
||||||
|
Venue::Venue(const tl_object_ptr<telegram_api::GeoPoint> &geo_point_ptr, string title, string address, string provider,
|
||||||
|
string id, string type)
|
||||||
|
: location_(geo_point_ptr)
|
||||||
|
, title_(std::move(title))
|
||||||
|
, address_(std::move(address))
|
||||||
|
, provider_(std::move(provider))
|
||||||
|
, id_(std::move(id))
|
||||||
|
, type_(std::move(type)) {
|
||||||
|
}
|
||||||
|
|
||||||
|
Venue::Venue(Location location, string title, string address, string provider, string id, string type)
|
||||||
|
: location_(location)
|
||||||
|
, title_(std::move(title))
|
||||||
|
, address_(std::move(address))
|
||||||
|
, provider_(std::move(provider))
|
||||||
|
, id_(std::move(id))
|
||||||
|
, type_(std::move(type)) {
|
||||||
|
}
|
||||||
|
|
||||||
|
Venue::Venue(const tl_object_ptr<td_api::venue> &venue)
|
||||||
|
: location_(venue->location_)
|
||||||
|
, title_(venue->title_)
|
||||||
|
, address_(venue->address_)
|
||||||
|
, provider_(venue->provider_)
|
||||||
|
, id_(venue->id_)
|
||||||
|
, type_(venue->type_) {
|
||||||
|
}
|
||||||
|
|
||||||
|
bool Venue::empty() const {
|
||||||
|
return location_.empty();
|
||||||
|
}
|
||||||
|
|
||||||
|
Location &Venue::location() {
|
||||||
|
return location_;
|
||||||
|
}
|
||||||
|
|
||||||
|
const Location &Venue::location() const {
|
||||||
|
return location_;
|
||||||
|
}
|
||||||
|
|
||||||
|
tl_object_ptr<td_api::venue> Venue::get_venue_object() const {
|
||||||
|
return make_tl_object<td_api::venue>(location_.get_location_object(), title_, address_, provider_, id_, type_);
|
||||||
|
}
|
||||||
|
|
||||||
|
tl_object_ptr<telegram_api::inputMediaVenue> Venue::get_input_media_venue() const {
|
||||||
|
return make_tl_object<telegram_api::inputMediaVenue>(location_.get_input_geo_point(), title_, address_, provider_,
|
||||||
|
id_, type_);
|
||||||
|
}
|
||||||
|
|
||||||
|
SecretInputMedia Venue::get_secret_input_media_venue() const {
|
||||||
|
return SecretInputMedia{nullptr,
|
||||||
|
make_tl_object<secret_api::decryptedMessageMediaVenue>(
|
||||||
|
location_.get_latitude(), location_.get_longitude(), title_, address_, provider_, id_)};
|
||||||
|
}
|
||||||
|
|
||||||
|
tl_object_ptr<telegram_api::inputBotInlineMessageMediaVenue> Venue::get_input_bot_inline_message_media_venue(
|
||||||
|
int32 flags, tl_object_ptr<telegram_api::ReplyMarkup> &&reply_markup) const {
|
||||||
|
return make_tl_object<telegram_api::inputBotInlineMessageMediaVenue>(
|
||||||
|
flags, location_.get_input_geo_point(), title_, address_, provider_, id_, type_, std::move(reply_markup));
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator==(const Venue &lhs, const Venue &rhs) {
|
||||||
|
return lhs.location_ == rhs.location_ && lhs.title_ == rhs.title_ && lhs.address_ == rhs.address_ &&
|
||||||
|
lhs.provider_ == rhs.provider_ && lhs.id_ == rhs.id_ && lhs.type_ == rhs.type_;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator!=(const Venue &lhs, const Venue &rhs) {
|
||||||
|
return !(lhs == rhs);
|
||||||
|
}
|
||||||
|
|
||||||
|
StringBuilder &operator<<(StringBuilder &string_builder, const Venue &venue) {
|
||||||
|
return string_builder << "Venue[location = " << venue.location_ << ", title = " << venue.title_
|
||||||
|
<< ", address = " << venue.address_ << ", provider = " << venue.provider_
|
||||||
|
<< ", id = " << venue.id_ << ", type = " << venue.type_ << "]";
|
||||||
|
}
|
||||||
|
|
||||||
|
Result<Venue> process_input_message_venue(tl_object_ptr<td_api::InputMessageContent> &&input_message_content) {
|
||||||
|
CHECK(input_message_content != nullptr);
|
||||||
|
CHECK(input_message_content->get_id() == td_api::inputMessageVenue::ID);
|
||||||
|
auto venue = std::move(static_cast<td_api::inputMessageVenue *>(input_message_content.get())->venue_);
|
||||||
|
|
||||||
|
if (venue == nullptr) {
|
||||||
|
return Status::Error(400, "Venue can't be empty");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!clean_input_string(venue->title_)) {
|
||||||
|
return Status::Error(400, "Venue title must be encoded in UTF-8");
|
||||||
|
}
|
||||||
|
if (!clean_input_string(venue->address_)) {
|
||||||
|
return Status::Error(400, "Venue address must be encoded in UTF-8");
|
||||||
|
}
|
||||||
|
if (!clean_input_string(venue->provider_)) {
|
||||||
|
return Status::Error(400, "Venue provider must be encoded in UTF-8");
|
||||||
|
}
|
||||||
|
if (!clean_input_string(venue->id_)) {
|
||||||
|
return Status::Error(400, "Venue identifier must be encoded in UTF-8");
|
||||||
|
}
|
||||||
|
if (!clean_input_string(venue->type_)) {
|
||||||
|
return Status::Error(400, "Venue type must be encoded in UTF-8");
|
||||||
|
}
|
||||||
|
|
||||||
|
Venue result(venue);
|
||||||
|
if (result.empty()) {
|
||||||
|
return Status::Error(400, "Wrong venue location specified");
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace td
|
96
td/telegram/Venue.h
Normal file
96
td/telegram/Venue.h
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
//
|
||||||
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
|
||||||
|
//
|
||||||
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||||
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
//
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "td/telegram/Location.h"
|
||||||
|
#include "td/telegram/SecretInputMedia.h"
|
||||||
|
#include "td/telegram/Version.h"
|
||||||
|
|
||||||
|
#include "td/telegram/secret_api.h"
|
||||||
|
#include "td/telegram/td_api.h"
|
||||||
|
#include "td/telegram/telegram_api.h"
|
||||||
|
|
||||||
|
#include "td/utils/common.h"
|
||||||
|
#include "td/utils/Status.h"
|
||||||
|
#include "td/utils/StringBuilder.h"
|
||||||
|
#include "td/utils/tl_helpers.h"
|
||||||
|
|
||||||
|
namespace td {
|
||||||
|
|
||||||
|
class Venue {
|
||||||
|
Location location_;
|
||||||
|
string title_;
|
||||||
|
string address_;
|
||||||
|
string provider_;
|
||||||
|
string id_;
|
||||||
|
string type_;
|
||||||
|
|
||||||
|
friend bool operator==(const Venue &lhs, const Venue &rhs);
|
||||||
|
friend bool operator!=(const Venue &lhs, const Venue &rhs);
|
||||||
|
|
||||||
|
friend StringBuilder &operator<<(StringBuilder &string_builder, const Venue &venue);
|
||||||
|
|
||||||
|
public:
|
||||||
|
Venue() = default;
|
||||||
|
|
||||||
|
Venue(const tl_object_ptr<telegram_api::GeoPoint> &geo_point_ptr, string title, string address, string provider,
|
||||||
|
string id, string type);
|
||||||
|
|
||||||
|
Venue(Location location, string title, string address, string provider, string id, string type);
|
||||||
|
|
||||||
|
explicit Venue(const tl_object_ptr<td_api::venue> &venue);
|
||||||
|
|
||||||
|
bool empty() const;
|
||||||
|
|
||||||
|
Location &location();
|
||||||
|
|
||||||
|
const Location &location() const;
|
||||||
|
|
||||||
|
tl_object_ptr<td_api::venue> get_venue_object() const;
|
||||||
|
|
||||||
|
tl_object_ptr<telegram_api::inputMediaVenue> get_input_media_venue() const;
|
||||||
|
|
||||||
|
SecretInputMedia get_secret_input_media_venue() const;
|
||||||
|
|
||||||
|
// TODO very strange function
|
||||||
|
tl_object_ptr<telegram_api::inputBotInlineMessageMediaVenue> get_input_bot_inline_message_media_venue(
|
||||||
|
int32 flags, tl_object_ptr<telegram_api::ReplyMarkup> &&reply_markup) const;
|
||||||
|
|
||||||
|
template <class StorerT>
|
||||||
|
void store(StorerT &storer) const {
|
||||||
|
using td::store;
|
||||||
|
store(location_, storer);
|
||||||
|
store(title_, storer);
|
||||||
|
store(address_, storer);
|
||||||
|
store(provider_, storer);
|
||||||
|
store(id_, storer);
|
||||||
|
store(type_, storer);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <class ParserT>
|
||||||
|
void parse(ParserT &parser) {
|
||||||
|
using td::parse;
|
||||||
|
parse(location_, parser);
|
||||||
|
parse(title_, parser);
|
||||||
|
parse(address_, parser);
|
||||||
|
parse(provider_, parser);
|
||||||
|
parse(id_, parser);
|
||||||
|
if (parser.version() >= static_cast<int32>(Version::AddVenueType)) {
|
||||||
|
parse(type_, parser);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
bool operator==(const Venue &lhs, const Venue &rhs);
|
||||||
|
bool operator!=(const Venue &lhs, const Venue &rhs);
|
||||||
|
|
||||||
|
StringBuilder &operator<<(StringBuilder &string_builder, const Venue &venue);
|
||||||
|
|
||||||
|
Result<Venue> process_input_message_venue(td_api::object_ptr<td_api::InputMessageContent> &&input_message_content)
|
||||||
|
TD_WARN_UNUSED_RESULT;
|
||||||
|
|
||||||
|
} // namespace td
|
Reference in New Issue
Block a user