tdlight/td/telegram/BotInfoManager.h

199 lines
7.4 KiB
C
Raw Normal View History

2023-04-16 22:12:28 +02:00
//
2024-01-01 01:07:21 +01:00
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
2023-04-16 22:12:28 +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
#include "td/telegram/DialogParticipant.h"
2024-07-18 22:28:08 +02:00
#include "td/telegram/files/FileId.h"
#include "td/telegram/files/FileSourceId.h"
2024-07-28 09:06:53 +02:00
#include "td/telegram/td_api.h"
#include "td/telegram/telegram_api.h"
#include "td/telegram/UserId.h"
2023-04-16 22:12:28 +02:00
#include "td/actor/actor.h"
#include "td/utils/common.h"
#include "td/utils/FlatHashMap.h"
2024-07-28 09:06:53 +02:00
#include "td/utils/HashTableUtils.h"
#include "td/utils/Promise.h"
2024-07-18 22:28:08 +02:00
#include "td/utils/Status.h"
2023-04-16 22:12:28 +02:00
2024-07-28 09:06:53 +02:00
#include <memory>
2023-04-16 22:12:28 +02:00
namespace td {
2024-07-18 22:28:08 +02:00
class StoryContent;
2023-04-16 22:12:28 +02:00
class Td;
class BotInfoManager final : public Actor {
public:
BotInfoManager(Td *td, ActorShared<> parent);
2024-07-18 22:28:08 +02:00
BotInfoManager(const BotInfoManager &) = delete;
BotInfoManager &operator=(const BotInfoManager &) = delete;
BotInfoManager(BotInfoManager &&) = delete;
BotInfoManager &operator=(BotInfoManager &&) = delete;
~BotInfoManager() final;
2023-04-16 22:12:28 +02:00
void set_default_group_administrator_rights(AdministratorRights administrator_rights, Promise<Unit> &&promise);
void set_default_channel_administrator_rights(AdministratorRights administrator_rights, Promise<Unit> &&promise);
2023-08-25 16:23:04 +02:00
void can_bot_send_messages(UserId bot_user_id, Promise<Unit> &&promise);
2023-08-25 17:06:56 +02:00
void allow_bot_to_send_messages(UserId bot_user_id, Promise<Unit> &&promise);
FileSourceId get_bot_media_preview_file_source_id(UserId bot_user_id);
FileSourceId get_bot_media_preview_info_file_source_id(UserId bot_user_id, const string &language_code);
2024-07-18 16:54:41 +02:00
void get_bot_media_previews(UserId bot_user_id, Promise<td_api::object_ptr<td_api::botMediaPreviews>> &&promise);
2024-07-22 18:09:10 +02:00
void get_bot_media_preview_info(UserId bot_user_id, const string &language_code,
Promise<td_api::object_ptr<td_api::botMediaPreviewInfo>> &&promise);
void reload_bot_media_previews(UserId bot_user_id, Promise<Unit> &&promise);
void reload_bot_media_preview_info(UserId bot_user_id, const string &language_code, Promise<Unit> &&promise);
2024-07-18 22:28:08 +02:00
void add_bot_media_preview(UserId bot_user_id, const string &language_code,
td_api::object_ptr<td_api::InputStoryContent> &&input_content,
2024-07-23 11:15:11 +02:00
Promise<td_api::object_ptr<td_api::botMediaPreview>> &&promise);
2024-07-18 22:28:08 +02:00
2024-07-19 13:18:17 +02:00
void edit_bot_media_preview(UserId bot_user_id, const string &language_code, FileId file_id,
td_api::object_ptr<td_api::InputStoryContent> &&input_content,
2024-07-23 11:15:11 +02:00
Promise<td_api::object_ptr<td_api::botMediaPreview>> &&promise);
2024-07-19 13:18:17 +02:00
2024-07-19 13:52:36 +02:00
void reorder_bot_media_previews(UserId bot_user_id, const string &language_code, const vector<int32> &file_ids,
Promise<Unit> &&promise);
2024-07-19 13:38:38 +02:00
void delete_bot_media_previews(UserId bot_user_id, const string &language_code, const vector<int32> &file_ids,
Promise<Unit> &&promise);
void set_bot_name(UserId bot_user_id, const string &language_code, const string &name, Promise<Unit> &&promise);
void get_bot_name(UserId bot_user_id, const string &language_code, Promise<string> &&promise);
void set_bot_info_description(UserId bot_user_id, const string &language_code, const string &description,
Promise<Unit> &&promise);
void get_bot_info_description(UserId bot_user_id, const string &language_code, Promise<string> &&promise);
void set_bot_info_about(UserId bot_user_id, const string &language_code, const string &about,
Promise<Unit> &&promise);
void get_bot_info_about(UserId bot_user_id, const string &language_code, Promise<string> &&promise);
2023-04-16 22:12:28 +02:00
private:
2023-04-17 11:23:21 +02:00
static constexpr double MAX_QUERY_DELAY = 0.01;
2024-07-18 22:28:08 +02:00
class UploadMediaCallback;
class AddPreviewMediaQuery;
struct PendingBotMediaPreview {
2024-07-19 13:18:17 +02:00
FileId edited_file_id_;
2024-07-18 22:28:08 +02:00
UserId bot_user_id_;
string language_code_;
unique_ptr<StoryContent> content_;
uint32 upload_order_ = 0;
bool was_reuploaded_ = false;
2024-07-23 11:15:11 +02:00
Promise<td_api::object_ptr<td_api::botMediaPreview>> promise_;
2024-07-18 22:28:08 +02:00
};
2023-04-17 12:28:26 +02:00
struct PendingSetBotInfoQuery {
UserId bot_user_id_;
string language_code_;
int type_ = 0;
string value_;
Promise<Unit> promise_;
PendingSetBotInfoQuery(UserId bot_user_id, const string &language_code, int type, const string &value,
Promise<Unit> &&promise)
: bot_user_id_(bot_user_id)
, language_code_(language_code)
, type_(type)
, value_(value)
, promise_(std::move(promise)) {
}
};
2023-04-17 11:23:21 +02:00
struct PendingGetBotInfoQuery {
UserId bot_user_id_;
string language_code_;
int type_ = 0;
Promise<string> promise_;
PendingGetBotInfoQuery(UserId bot_user_id, const string &language_code, int type, Promise<string> &&promise)
: bot_user_id_(bot_user_id), language_code_(language_code), type_(type), promise_(std::move(promise)) {
}
};
2023-04-16 22:12:28 +02:00
void tear_down() final;
2023-04-17 11:23:21 +02:00
void hangup() final;
void timeout_expired() final;
2024-07-18 16:54:41 +02:00
Result<telegram_api::object_ptr<telegram_api::InputUser>> get_media_preview_bot_input_user(
UserId user_id, bool can_be_edited = false);
static Status validate_bot_media_preview_language_code(const string &language_code);
2024-07-18 22:28:08 +02:00
void do_add_bot_media_preview(unique_ptr<PendingBotMediaPreview> &&pending_preview, vector<int> bad_parts);
void on_add_bot_media_preview_file_parts_missing(unique_ptr<PendingBotMediaPreview> &&pending_preview,
vector<int> &&bad_parts);
void on_upload_bot_media_preview(FileId file_id, telegram_api::object_ptr<telegram_api::InputFile> input_file);
void on_upload_bot_media_preview_error(FileId file_id, Status status);
telegram_api::object_ptr<telegram_api::InputMedia> get_fake_input_media(FileId file_id) const;
2023-04-17 12:28:26 +02:00
void add_pending_set_query(UserId bot_user_id, const string &language_code, int type, const string &value,
Promise<Unit> &&promise);
2023-04-17 11:23:21 +02:00
void add_pending_get_query(UserId bot_user_id, const string &language_code, int type, Promise<string> &&promise);
2023-04-17 12:28:26 +02:00
vector<PendingSetBotInfoQuery> pending_set_bot_info_queries_;
2023-04-17 11:23:21 +02:00
vector<PendingGetBotInfoQuery> pending_get_bot_info_queries_;
FlatHashMap<UserId, FileSourceId, UserIdHash> bot_media_preview_file_source_ids_;
struct MediaPreviewSource {
UserId bot_user_id_;
string language_code_;
MediaPreviewSource() = default;
MediaPreviewSource(UserId bot_user_id, string language_code)
: bot_user_id_(bot_user_id), language_code_(std::move(language_code)) {
}
friend bool operator==(const MediaPreviewSource &lhs, const MediaPreviewSource &rhs) {
return lhs.bot_user_id_ == rhs.bot_user_id_ && lhs.language_code_ == rhs.language_code_;
}
};
struct MediaPreviewSourceHash {
uint32 operator()(MediaPreviewSource source) const {
return combine_hashes(UserIdHash()(source.bot_user_id_), Hash<string>()(source.language_code_));
}
};
FlatHashMap<MediaPreviewSource, FileSourceId, MediaPreviewSourceHash> bot_media_preview_info_file_source_ids_;
2024-07-18 22:28:08 +02:00
FlatHashMap<FileId, unique_ptr<PendingBotMediaPreview>, FileIdHash> being_uploaded_files_;
std::shared_ptr<UploadMediaCallback> upload_media_callback_;
uint32 bot_media_preview_upload_order_ = 0;
2023-04-16 22:12:28 +02:00
Td *td_;
ActorShared<> parent_;
};
} // namespace td