// // 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" #include "td/telegram/InputMessageText.h" #include "td/telegram/MessageId.h" #include "td/telegram/MessageInputReplyTo.h" #include "td/telegram/td_api.h" #include "td/telegram/telegram_api.h" #include "td/utils/common.h" #include "td/utils/Promise.h" #include "td/utils/Status.h" namespace td { class Dependencies; class Td; class DraftMessage { int32 date_ = 0; MessageInputReplyTo message_input_reply_to_; InputMessageText input_message_text_; friend class SaveDraftMessageQuery; public: DraftMessage() = default; DraftMessage(Td *td, telegram_api::object_ptr &&draft_message); int32 get_date() const { return date_; } bool need_update_to(const DraftMessage &other, bool from_update) const; void add_dependencies(Dependencies &dependencies) const; td_api::object_ptr get_draft_message_object(Td *td) const; static Result> get_draft_message(Td *td, DialogId dialog_id, MessageId top_thread_message_id, td_api::object_ptr &&draft_message); template void store(StorerT &storer) const; template void parse(ParserT &parser); }; bool need_update_draft_message(const unique_ptr &old_draft_message, const unique_ptr &new_draft_message, bool from_update); void add_draft_message_dependencies(Dependencies &dependencies, const unique_ptr &draft_message); td_api::object_ptr get_draft_message_object(Td *td, const unique_ptr &draft_message); unique_ptr get_draft_message(Td *td, telegram_api::object_ptr &&draft_message_ptr); void save_draft_message(Td *td, DialogId dialog_id, const unique_ptr &draft_message, Promise &&promise); void load_all_draft_messages(Td *td); void clear_all_draft_messages(Td *td, Promise &&promise); } // namespace td