2018-09-29 01:45:43 +02:00
|
|
|
//
|
2024-01-01 01:07:21 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
|
2018-09-29 01:45:43 +02:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
2021-10-21 11:51:16 +02:00
|
|
|
#include "td/telegram/DialogId.h"
|
2018-09-29 01:45:43 +02:00
|
|
|
#include "td/telegram/InputMessageText.h"
|
|
|
|
#include "td/telegram/MessageId.h"
|
2023-10-25 01:07:37 +02:00
|
|
|
#include "td/telegram/MessageInputReplyTo.h"
|
2018-09-29 01:45:43 +02:00
|
|
|
#include "td/telegram/td_api.h"
|
2018-09-29 02:29:57 +02:00
|
|
|
#include "td/telegram/telegram_api.h"
|
2018-09-29 01:45:43 +02:00
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
2023-05-31 14:57:30 +02:00
|
|
|
#include "td/utils/Promise.h"
|
2021-09-29 13:06:43 +02:00
|
|
|
#include "td/utils/Status.h"
|
2018-09-29 01:45:43 +02:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2023-05-31 15:34:12 +02:00
|
|
|
class Dependencies;
|
2022-07-22 17:11:55 +02:00
|
|
|
class Td;
|
2018-09-29 01:45:43 +02:00
|
|
|
|
|
|
|
class DraftMessage {
|
2023-05-31 16:46:06 +02:00
|
|
|
int32 date_ = 0;
|
2023-10-25 01:07:37 +02:00
|
|
|
MessageInputReplyTo message_input_reply_to_;
|
2023-05-31 16:46:06 +02:00
|
|
|
InputMessageText input_message_text_;
|
|
|
|
|
|
|
|
friend class SaveDraftMessageQuery;
|
2023-05-31 16:35:56 +02:00
|
|
|
|
2023-05-31 16:46:06 +02:00
|
|
|
public:
|
2023-05-31 16:35:56 +02:00
|
|
|
DraftMessage() = default;
|
2023-10-16 19:12:33 +02:00
|
|
|
DraftMessage(Td *td, telegram_api::object_ptr<telegram_api::draftMessage> &&draft_message);
|
2023-05-31 16:35:56 +02:00
|
|
|
|
2023-05-31 16:46:06 +02:00
|
|
|
int32 get_date() const {
|
|
|
|
return date_;
|
|
|
|
}
|
|
|
|
|
2023-05-31 16:35:56 +02:00
|
|
|
bool need_update_to(const DraftMessage &other, bool from_update) const;
|
|
|
|
|
|
|
|
void add_dependencies(Dependencies &dependencies) const;
|
|
|
|
|
2023-10-28 23:50:33 +02:00
|
|
|
td_api::object_ptr<td_api::draftMessage> get_draft_message_object(Td *td) const;
|
2023-05-31 16:35:56 +02:00
|
|
|
|
|
|
|
static Result<unique_ptr<DraftMessage>> get_draft_message(Td *td, DialogId dialog_id, MessageId top_thread_message_id,
|
|
|
|
td_api::object_ptr<td_api::draftMessage> &&draft_message);
|
2023-05-31 16:46:06 +02:00
|
|
|
|
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const;
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser);
|
2018-09-29 01:45:43 +02:00
|
|
|
};
|
|
|
|
|
2023-05-31 14:29:37 +02:00
|
|
|
bool need_update_draft_message(const unique_ptr<DraftMessage> &old_draft_message,
|
|
|
|
const unique_ptr<DraftMessage> &new_draft_message, bool from_update);
|
|
|
|
|
2023-05-31 15:34:12 +02:00
|
|
|
void add_draft_message_dependencies(Dependencies &dependencies, const unique_ptr<DraftMessage> &draft_message);
|
|
|
|
|
2023-10-28 23:50:33 +02:00
|
|
|
td_api::object_ptr<td_api::draftMessage> get_draft_message_object(Td *td,
|
2023-10-25 01:07:37 +02:00
|
|
|
const unique_ptr<DraftMessage> &draft_message);
|
2018-09-29 01:45:43 +02:00
|
|
|
|
2023-10-16 19:12:33 +02:00
|
|
|
unique_ptr<DraftMessage> get_draft_message(Td *td,
|
2021-09-29 13:06:43 +02:00
|
|
|
telegram_api::object_ptr<telegram_api::DraftMessage> &&draft_message_ptr);
|
|
|
|
|
2023-05-31 14:57:30 +02:00
|
|
|
void save_draft_message(Td *td, DialogId dialog_id, const unique_ptr<DraftMessage> &draft_message,
|
|
|
|
Promise<Unit> &&promise);
|
|
|
|
|
2023-05-31 15:17:20 +02:00
|
|
|
void load_all_draft_messages(Td *td);
|
|
|
|
|
2023-05-31 15:23:23 +02:00
|
|
|
void clear_all_draft_messages(Td *td, Promise<Unit> &&promise);
|
|
|
|
|
2018-09-29 01:45:43 +02:00
|
|
|
} // namespace td
|