tdlight/td/telegram/MessageInputReplyTo.h

91 lines
2.8 KiB
C
Raw Normal View History

2023-06-08 16:27:24 +02:00
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2023
//
// 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/DialogId.h"
2023-10-27 12:06:38 +02:00
#include "td/telegram/MessageEntity.h"
#include "td/telegram/MessageFullId.h"
2023-06-08 16:27:24 +02:00
#include "td/telegram/MessageId.h"
#include "td/telegram/StoryFullId.h"
#include "td/telegram/td_api.h"
#include "td/telegram/telegram_api.h"
#include "td/utils/common.h"
#include "td/utils/StringBuilder.h"
namespace td {
class Td;
class MessageInputReplyTo {
2023-06-08 16:27:24 +02:00
MessageId message_id_;
2023-10-27 12:06:38 +02:00
FormattedText quote_;
2023-06-08 16:27:24 +02:00
// or
StoryFullId story_full_id_;
2023-10-24 14:02:57 +02:00
friend bool operator==(const MessageInputReplyTo &lhs, const MessageInputReplyTo &rhs);
2023-06-08 16:27:24 +02:00
friend StringBuilder &operator<<(StringBuilder &string_builder, const MessageInputReplyTo &input_reply_to);
friend class RepliedMessageInfo;
public:
2023-06-08 16:27:24 +02:00
MessageInputReplyTo() = default;
2023-10-27 02:37:26 +02:00
MessageInputReplyTo(const MessageInputReplyTo &) = delete;
MessageInputReplyTo &operator=(const MessageInputReplyTo &) = delete;
MessageInputReplyTo(MessageInputReplyTo &&) = default;
MessageInputReplyTo &operator=(MessageInputReplyTo &&) = default;
~MessageInputReplyTo();
2023-06-08 16:27:24 +02:00
2023-10-27 12:06:38 +02:00
MessageInputReplyTo(MessageId message_id, FormattedText &&quote) : message_id_(message_id), quote_(std::move(quote)) {
2023-06-08 16:27:24 +02:00
}
explicit MessageInputReplyTo(StoryFullId story_full_id) : story_full_id_(story_full_id) {
}
2023-06-08 16:27:24 +02:00
MessageInputReplyTo(Td *td, telegram_api::object_ptr<telegram_api::InputReplyTo> &&input_reply_to);
2023-10-24 14:02:57 +02:00
bool is_empty() const {
2023-10-25 12:07:25 +02:00
return !message_id_.is_valid() && !message_id_.is_valid_scheduled() && !story_full_id_.is_valid();
2023-10-24 14:02:57 +02:00
}
bool is_valid() const {
return !is_empty();
}
bool is_same_chat_reply() const {
2023-10-27 12:06:38 +02:00
return message_id_.is_valid() || message_id_.is_valid_scheduled();
}
StoryFullId get_story_full_id() const {
return story_full_id_;
}
2023-06-08 16:27:24 +02:00
telegram_api::object_ptr<telegram_api::InputReplyTo> get_input_reply_to(Td *td,
MessageId top_thread_message_id) const;
2023-10-24 14:02:57 +02:00
td_api::object_ptr<td_api::InputMessageReplyTo> get_input_message_reply_to_object(Td *td, DialogId dialog_id) const;
MessageId get_same_chat_reply_to_message_id() const;
MessageFullId get_reply_message_full_id(DialogId owner_dialog_id) const;
2023-10-24 14:02:57 +02:00
template <class StorerT>
void store(StorerT &storer) const;
template <class ParserT>
void parse(ParserT &parser);
2023-06-08 16:27:24 +02:00
};
2023-10-24 14:02:57 +02:00
bool operator==(const MessageInputReplyTo &lhs, const MessageInputReplyTo &rhs);
bool operator!=(const MessageInputReplyTo &lhs, const MessageInputReplyTo &rhs);
2023-06-08 16:27:24 +02:00
StringBuilder &operator<<(StringBuilder &string_builder, const MessageInputReplyTo &input_reply_to);
} // namespace td