tdesktop/Telegram/SourceFiles/inline_bots/bot_attach_web_view.h

179 lines
4.1 KiB
C
Raw Normal View History

/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
2022-10-28 07:57:09 +00:00
#include "api/api_common.h"
#include "mtproto/sender.h"
#include "base/weak_ptr.h"
2022-04-28 12:16:26 +00:00
#include "base/flags.h"
namespace Ui {
class GenericBox;
class DropdownMenu;
} // namespace Ui
namespace Ui::BotWebView {
class Panel;
} // namespace Ui::BotWebView
namespace Main {
class Session;
} // namespace Main
namespace Window {
class SessionController;
} // namespace Window
2022-03-29 14:14:11 +00:00
namespace Data {
class DocumentMedia;
} // namespace Data
namespace InlineBots {
2022-04-28 12:16:26 +00:00
enum class PeerType : uint8 {
SameBot = 0x01,
Bot = 0x02,
User = 0x04,
Group = 0x08,
Broadcast = 0x10,
};
using PeerTypes = base::flags<PeerType>;
[[nodiscard]] bool PeerMatchesTypes(
not_null<PeerData*> peer,
not_null<UserData*> bot,
PeerTypes types);
2022-06-10 13:38:52 +00:00
[[nodiscard]] PeerTypes ParseChooseTypes(QStringView choose);
2022-04-28 12:16:26 +00:00
struct AttachWebViewBot {
not_null<UserData*> user;
2022-03-31 09:24:13 +00:00
DocumentData *icon = nullptr;
2022-03-29 14:14:11 +00:00
std::shared_ptr<Data::DocumentMedia> media;
QString name;
2022-04-28 12:16:26 +00:00
PeerTypes types = 0;
2022-03-29 14:14:11 +00:00
bool inactive = false;
bool hasSettings = false;
bool requestWriteAccess = false;
};
class AttachWebView final : public base::has_weak_ptr {
public:
explicit AttachWebView(not_null<Main::Session*> session);
~AttachWebView();
struct WebViewButton {
QString text;
2022-03-31 09:24:13 +00:00
QString startCommand;
QByteArray url;
bool fromMenu = false;
};
2022-03-31 09:24:13 +00:00
void request(
2022-10-28 07:57:09 +00:00
const Api::SendAction &action,
2022-03-31 09:24:13 +00:00
const QString &botUsername,
const QString &startCommand);
void request(
Window::SessionController *controller,
2022-10-28 07:57:09 +00:00
const Api::SendAction &action,
not_null<UserData*> bot,
2022-03-31 09:24:13 +00:00
const WebViewButton &button);
2022-03-29 09:21:10 +00:00
void requestSimple(
not_null<Window::SessionController*> controller,
2022-03-29 09:21:10 +00:00
not_null<UserData*> bot,
const WebViewButton &button);
void requestMenu(
not_null<Window::SessionController*> controller,
not_null<UserData*> bot);
void cancel();
2022-03-29 10:34:57 +00:00
void requestBots();
[[nodiscard]] const std::vector<AttachWebViewBot> &attachBots() const {
return _attachBots;
}
[[nodiscard]] rpl::producer<> attachBotsUpdates() const {
return _attachBotsUpdates.events();
}
2022-03-31 09:24:13 +00:00
void requestAddToMenu(
2022-10-28 07:57:09 +00:00
const std::optional<Api::SendAction> &action,
2022-03-31 09:24:13 +00:00
not_null<UserData*> bot,
2022-06-02 20:26:41 +00:00
const QString &startCommand,
Window::SessionController *controller = nullptr,
PeerTypes chooseTypes = {});
2022-03-29 14:14:11 +00:00
void removeFromMenu(not_null<UserData*> bot);
2022-03-29 10:34:57 +00:00
static void ClearAll();
private:
void resolve();
2022-03-31 09:24:13 +00:00
void request(const WebViewButton &button);
void requestSimple(const WebViewButton &button);
void resolveUsername(
const QString &username,
Fn<void(not_null<PeerData*>)> done);
void confirmOpen(
not_null<Window::SessionController*> controller,
Fn<void()> done);
enum class ToggledState {
Removed,
Added,
AllowedToWrite,
};
2022-03-29 14:14:11 +00:00
void toggleInMenu(
not_null<UserData*> bot,
ToggledState state,
2022-03-29 16:12:47 +00:00
Fn<void()> callback = nullptr);
void show(
uint64 queryId,
const QString &url,
const QString &buttonText = QString(),
bool allowClipboardRead = false);
2022-03-29 14:14:11 +00:00
void confirmAddToMenu(
AttachWebViewBot bot,
Fn<void()> callback = nullptr);
2022-03-29 10:34:57 +00:00
void started(uint64 queryId);
const not_null<Main::Session*> _session;
2022-10-28 07:57:09 +00:00
std::optional<Api::SendAction> _action;
UserData *_bot = nullptr;
QString _botUsername;
2022-03-31 09:24:13 +00:00
QString _startCommand;
QPointer<Ui::GenericBox> _confirmAddBox;
mtpRequestId _requestId = 0;
2022-03-29 10:34:57 +00:00
mtpRequestId _prolongId = 0;
uint64 _botsHash = 0;
mtpRequestId _botsRequestId = 0;
2022-10-28 07:57:09 +00:00
std::optional<Api::SendAction> _addToMenuAction;
2022-03-29 14:14:11 +00:00
UserData *_addToMenuBot = nullptr;
mtpRequestId _addToMenuId = 0;
2022-03-31 09:24:13 +00:00
QString _addToMenuStartCommand;
2022-06-02 20:26:41 +00:00
base::weak_ptr<Window::SessionController> _addToMenuChooseController;
PeerTypes _addToMenuChooseTypes;
2022-03-29 14:14:11 +00:00
std::vector<AttachWebViewBot> _attachBots;
rpl::event_stream<> _attachBotsUpdates;
std::unique_ptr<Ui::BotWebView::Panel> _panel;
};
[[nodiscard]] std::unique_ptr<Ui::DropdownMenu> MakeAttachBotsMenu(
not_null<QWidget*> parent,
2022-04-28 12:16:26 +00:00
not_null<PeerData*> peer,
2022-10-28 07:57:09 +00:00
Fn<Api::SendAction()> actionFactory,
Fn<void(bool)> attach);
} // namespace InlineBots