tdlight/td/telegram/AttachMenuManager.h

100 lines
2.7 KiB
C
Raw Normal View History

2022-03-25 12:17:09 +01:00
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
//
// 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
2022-03-25 14:00:06 +01:00
#include "td/telegram/files/FileId.h"
2022-03-25 12:17:09 +01:00
#include "td/telegram/td_api.h"
2022-03-25 14:00:06 +01:00
#include "td/telegram/telegram_api.h"
#include "td/telegram/UserId.h"
2022-03-25 12:17:09 +01:00
#include "td/actor/actor.h"
#include "td/actor/PromiseFuture.h"
2022-03-25 12:17:09 +01:00
#include "td/utils/common.h"
2022-03-25 14:00:06 +01:00
#include "td/utils/Status.h"
2022-03-25 12:17:09 +01:00
namespace td {
class Td;
class AttachMenuManager final : public Actor {
public:
AttachMenuManager(Td *td, ActorShared<> parent);
2022-03-25 14:00:06 +01:00
void init();
void reload_attach_menu_bots(Promise<Unit> &&promise);
2022-03-25 14:00:06 +01:00
2022-03-29 14:00:00 +02:00
void get_attach_menu_bot(UserId user_id, Promise<td_api::object_ptr<td_api::attachMenuBot>> &&promise);
void toggle_bot_is_added_to_attach_menu(UserId user_id, bool is_added, Promise<Unit> &&promise);
void get_current_state(vector<td_api::object_ptr<td_api::Update>> &updates) const;
2022-03-25 14:00:06 +01:00
2022-03-25 12:17:09 +01:00
private:
2022-03-25 14:00:06 +01:00
void start_up() final;
2022-03-25 12:17:09 +01:00
2022-03-25 16:10:25 +01:00
void timeout_expired() final;
2022-03-25 12:17:09 +01:00
void tear_down() final;
2022-03-25 14:00:06 +01:00
bool is_active() const;
struct AttachMenuBot {
bool is_added_ = false;
2022-03-25 14:00:06 +01:00
UserId user_id_;
string name_;
FileId default_icon_file_id_;
FileId ios_static_icon_file_id_;
FileId ios_animated_icon_file_id_;
FileId android_icon_file_id_;
FileId macos_icon_file_id_;
template <class StorerT>
void store(StorerT &storer) const;
template <class ParserT>
void parse(ParserT &parser);
2022-03-25 14:00:06 +01:00
};
class AttachMenuBotsLogEvent;
2022-03-25 14:00:06 +01:00
friend bool operator==(const AttachMenuBot &lhs, const AttachMenuBot &rhs);
friend bool operator!=(const AttachMenuBot &lhs, const AttachMenuBot &rhs);
Result<AttachMenuBot> get_attach_menu_bot(tl_object_ptr<telegram_api::attachMenuBot> &&bot) const;
2022-03-29 13:03:06 +02:00
td_api::object_ptr<td_api::attachMenuBot> get_attach_menu_bot_object(const AttachMenuBot &bot) const;
2022-03-25 14:00:06 +01:00
td_api::object_ptr<td_api::updateAttachMenuBots> get_update_attach_menu_bots_object() const;
void remove_bot_from_attach_menu(UserId user_id);
2022-03-25 14:00:06 +01:00
void send_update_attach_menu_bots() const;
static string get_attach_menu_bots_database_key();
void save_attach_menu_bots();
void on_reload_attach_menu_bots(Result<telegram_api::object_ptr<telegram_api::AttachMenuBots>> &&result,
Promise<Unit> &&promise);
2022-03-29 14:00:00 +02:00
void on_get_attach_menu_bot(UserId user_id,
Result<telegram_api::object_ptr<telegram_api::attachMenuBotsBot>> &&result,
Promise<td_api::object_ptr<td_api::attachMenuBot>> &&promise);
2022-03-25 12:17:09 +01:00
Td *td_;
ActorShared<> parent_;
2022-03-25 14:00:06 +01:00
bool is_inited_ = false;
int64 hash_ = 0;
vector<AttachMenuBot> attach_menu_bots_;
2022-03-25 12:17:09 +01:00
};
} // namespace td