init
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
This commit is contained in:
475
Telegram/SourceFiles/inline_bots/bot_attach_web_view.h
Normal file
475
Telegram/SourceFiles/inline_bots/bot_attach_web_view.h
Normal file
@@ -0,0 +1,475 @@
|
||||
/*
|
||||
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
|
||||
|
||||
#include "api/api_common.h"
|
||||
#include "base/flags.h"
|
||||
#include "base/timer.h"
|
||||
#include "base/weak_ptr.h"
|
||||
#include "dialogs/dialogs_key.h"
|
||||
#include "mtproto/sender.h"
|
||||
#include "ui/chat/attach/attach_bot_webview.h"
|
||||
#include "ui/rp_widget.h"
|
||||
|
||||
namespace Data {
|
||||
class Thread;
|
||||
} // namespace Data
|
||||
|
||||
namespace Ui {
|
||||
class Show;
|
||||
class GenericBox;
|
||||
class DropdownMenu;
|
||||
} // namespace Ui
|
||||
|
||||
namespace Ui::BotWebView {
|
||||
class Panel;
|
||||
struct DownloadsEntry;
|
||||
} // namespace Ui::BotWebView
|
||||
|
||||
namespace Main {
|
||||
class Session;
|
||||
class SessionShow;
|
||||
} // namespace Main
|
||||
|
||||
namespace Window {
|
||||
class SessionController;
|
||||
} // namespace Window
|
||||
|
||||
namespace Data {
|
||||
class DocumentMedia;
|
||||
} // namespace Data
|
||||
|
||||
namespace Payments {
|
||||
struct NonPanelPaymentForm;
|
||||
enum class CheckoutResult;
|
||||
} // namespace Payments
|
||||
|
||||
namespace InlineBots {
|
||||
|
||||
class WebViewInstance;
|
||||
class Downloads;
|
||||
class Storage;
|
||||
|
||||
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);
|
||||
[[nodiscard]] PeerTypes ParseChooseTypes(QStringView choose);
|
||||
|
||||
struct AttachWebViewBot {
|
||||
not_null<UserData*> user;
|
||||
DocumentData *icon = nullptr;
|
||||
std::shared_ptr<Data::DocumentMedia> media;
|
||||
QString name;
|
||||
PeerTypes types = 0;
|
||||
bool inactive : 1 = false;
|
||||
bool inMainMenu : 1 = false;
|
||||
bool inAttachMenu : 1 = false;
|
||||
bool disclaimerRequired : 1 = false;
|
||||
bool requestWriteAccess : 1 = false;
|
||||
};
|
||||
|
||||
struct WebViewSourceButton {
|
||||
bool simple = false;
|
||||
|
||||
friend inline bool operator==(
|
||||
WebViewSourceButton,
|
||||
WebViewSourceButton) = default;
|
||||
};
|
||||
|
||||
struct WebViewSourceSwitch {
|
||||
friend inline bool operator==(
|
||||
const WebViewSourceSwitch &,
|
||||
const WebViewSourceSwitch &) = default;
|
||||
};
|
||||
|
||||
struct WebViewSourceLinkApp { // t.me/botusername/appname
|
||||
base::weak_ptr<WebViewInstance> from;
|
||||
QString appname;
|
||||
QString token;
|
||||
|
||||
friend inline bool operator==(
|
||||
const WebViewSourceLinkApp &,
|
||||
const WebViewSourceLinkApp &) = default;
|
||||
};
|
||||
|
||||
struct WebViewSourceLinkAttachMenu { // ?startattach
|
||||
base::weak_ptr<WebViewInstance> from;
|
||||
base::weak_ptr<Data::Thread> thread;
|
||||
PeerTypes choose;
|
||||
QString token;
|
||||
|
||||
friend inline bool operator==(
|
||||
const WebViewSourceLinkAttachMenu &,
|
||||
const WebViewSourceLinkAttachMenu &) = default;
|
||||
};
|
||||
|
||||
struct WebViewSourceLinkBotProfile { // t.me/botusername?startapp
|
||||
base::weak_ptr<WebViewInstance> from;
|
||||
QString token;
|
||||
bool compact = false;
|
||||
|
||||
friend inline bool operator==(
|
||||
const WebViewSourceLinkBotProfile &,
|
||||
const WebViewSourceLinkBotProfile &) = default;
|
||||
};
|
||||
|
||||
struct WebViewSourceMainMenu {
|
||||
friend inline bool operator==(
|
||||
WebViewSourceMainMenu,
|
||||
WebViewSourceMainMenu) = default;
|
||||
};
|
||||
|
||||
struct WebViewSourceAttachMenu {
|
||||
base::weak_ptr<Data::Thread> thread;
|
||||
|
||||
friend inline bool operator==(
|
||||
const WebViewSourceAttachMenu &,
|
||||
const WebViewSourceAttachMenu &) = default;
|
||||
};
|
||||
|
||||
struct WebViewSourceBotMenu {
|
||||
friend inline bool operator==(
|
||||
WebViewSourceBotMenu,
|
||||
WebViewSourceBotMenu) = default;
|
||||
};
|
||||
|
||||
struct WebViewSourceGame {
|
||||
FullMsgId messageId;
|
||||
QString title;
|
||||
|
||||
friend inline bool operator==(
|
||||
WebViewSourceGame,
|
||||
WebViewSourceGame) = default;
|
||||
};
|
||||
|
||||
struct WebViewSourceBotProfile {
|
||||
friend inline bool operator==(
|
||||
WebViewSourceBotProfile,
|
||||
WebViewSourceBotProfile) = default;
|
||||
};
|
||||
|
||||
struct WebViewSourceAgeVerification {
|
||||
Fn<void(int)> done;
|
||||
|
||||
friend inline bool operator==(
|
||||
WebViewSourceAgeVerification,
|
||||
WebViewSourceAgeVerification) {
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
struct WebViewSource : std::variant<
|
||||
WebViewSourceButton,
|
||||
WebViewSourceSwitch,
|
||||
WebViewSourceLinkApp,
|
||||
WebViewSourceLinkAttachMenu,
|
||||
WebViewSourceLinkBotProfile,
|
||||
WebViewSourceMainMenu,
|
||||
WebViewSourceAttachMenu,
|
||||
WebViewSourceBotMenu,
|
||||
WebViewSourceGame,
|
||||
WebViewSourceBotProfile,
|
||||
WebViewSourceAgeVerification> {
|
||||
using variant::variant;
|
||||
};
|
||||
|
||||
struct WebViewButton {
|
||||
QString text;
|
||||
QString startCommand;
|
||||
QByteArray url;
|
||||
bool fromAttachMenu = false;
|
||||
bool fromMainMenu = false;
|
||||
bool fromSwitch = false;
|
||||
};
|
||||
|
||||
struct WebViewContext {
|
||||
base::weak_ptr<Window::SessionController> controller;
|
||||
Dialogs::EntryState dialogsEntryState;
|
||||
std::optional<Api::SendAction> action;
|
||||
bool fullscreen = false;
|
||||
bool maySkipConfirmation = false;
|
||||
};
|
||||
|
||||
struct WebViewDescriptor {
|
||||
not_null<UserData*> bot;
|
||||
std::shared_ptr<Ui::Show> parentShow;
|
||||
WebViewContext context;
|
||||
WebViewButton button;
|
||||
WebViewSource source;
|
||||
};
|
||||
|
||||
class WebViewInstance final
|
||||
: public base::has_weak_ptr
|
||||
, public Ui::BotWebView::Delegate {
|
||||
public:
|
||||
explicit WebViewInstance(WebViewDescriptor &&descriptor);
|
||||
~WebViewInstance();
|
||||
|
||||
[[nodiscard]] Main::Session &session() const;
|
||||
[[nodiscard]] not_null<UserData*> bot() const;
|
||||
[[nodiscard]] WebViewSource source() const;
|
||||
|
||||
void activate();
|
||||
void close();
|
||||
|
||||
[[nodiscard]] std::shared_ptr<Main::SessionShow> uiShow();
|
||||
|
||||
private:
|
||||
void resolve();
|
||||
void requestFullBot();
|
||||
|
||||
bool openAppFromBotMenuLink();
|
||||
|
||||
void requestButton();
|
||||
void requestSimple();
|
||||
void requestMain();
|
||||
void requestApp(bool allowWrite);
|
||||
void requestWithMainMenuDisclaimer();
|
||||
void requestWithMenuAdd();
|
||||
void maybeChooseAndRequestButton(PeerTypes supported);
|
||||
|
||||
enum class ConfirmType : uchar {
|
||||
Always,
|
||||
Once,
|
||||
None,
|
||||
};
|
||||
void resolveApp(
|
||||
const QString &appname,
|
||||
const QString &startparam,
|
||||
ConfirmType confirmType);
|
||||
void confirmOpen(Fn<void()> done);
|
||||
void confirmAppOpen(
|
||||
bool writeAccess,
|
||||
Fn<void(bool allowWrite)> done,
|
||||
bool forceConfirmation);
|
||||
|
||||
struct ShowArgs {
|
||||
QString url;
|
||||
QString title;
|
||||
uint64 queryId = 0;
|
||||
bool fullscreen = false;
|
||||
};
|
||||
void show(ShowArgs &&args);
|
||||
void showGame();
|
||||
void started(uint64 queryId);
|
||||
|
||||
auto nonPanelPaymentFormFactory(
|
||||
Fn<void(Payments::CheckoutResult)> reactivate)
|
||||
-> Fn<void(Payments::NonPanelPaymentForm)>;
|
||||
|
||||
Webview::ThemeParams botThemeParams() override;
|
||||
auto botDownloads(bool forceCheck = false)
|
||||
-> const std::vector<Ui::BotWebView::DownloadsEntry> & override;
|
||||
void botDownloadsAction(
|
||||
uint32 id,
|
||||
Ui::BotWebView::DownloadsAction type) override;
|
||||
bool botHandleLocalUri(QString uri, bool keepOpen) override;
|
||||
void botHandleInvoice(QString slug) override;
|
||||
void botHandleMenuButton(Ui::BotWebView::MenuButton button) override;
|
||||
bool botValidateExternalLink(QString uri) override;
|
||||
void botOpenIvLink(QString uri) override;
|
||||
void botSendData(QByteArray data) override;
|
||||
void botSwitchInlineQuery(
|
||||
std::vector<QString> chatTypes,
|
||||
QString query) override;
|
||||
void botCheckWriteAccess(Fn<void(bool allowed)> callback) override;
|
||||
void botAllowWriteAccess(Fn<void(bool allowed)> callback) override;
|
||||
bool botStorageWrite(QString key, std::optional<QString> value) override;
|
||||
std::optional<QString> botStorageRead(QString key) override;
|
||||
void botStorageClear() override;
|
||||
void botRequestEmojiStatusAccess(
|
||||
Fn<void(bool allowed)> callback) override;
|
||||
void botSharePhone(Fn<void(bool shared)> callback) override;
|
||||
void botInvokeCustomMethod(
|
||||
Ui::BotWebView::CustomMethodRequest request) override;
|
||||
void botSendPreparedMessage(
|
||||
Ui::BotWebView::SendPreparedMessageRequest request) override;
|
||||
void botSetEmojiStatus(
|
||||
Ui::BotWebView::SetEmojiStatusRequest request) override;
|
||||
void botDownloadFile(
|
||||
Ui::BotWebView::DownloadFileRequest request) override;
|
||||
void botVerifyAge(int age) override;
|
||||
void botOpenPrivacyPolicy() override;
|
||||
void botClose() override;
|
||||
|
||||
const std::shared_ptr<Ui::Show> _parentShow;
|
||||
const not_null<Main::Session*> _session;
|
||||
const not_null<UserData*> _bot;
|
||||
const WebViewContext _context;
|
||||
const WebViewButton _button;
|
||||
const WebViewSource _source;
|
||||
|
||||
std::optional<ShowArgs> _botFullWaitingArgs;
|
||||
|
||||
BotAppData *_app = nullptr;
|
||||
QString _appStartParam;
|
||||
bool _dataSent = false;
|
||||
bool _confirmingDownload = false;
|
||||
|
||||
mtpRequestId _requestId = 0;
|
||||
mtpRequestId _prolongId = 0;
|
||||
|
||||
QString _panelUrl;
|
||||
std::unique_ptr<Ui::BotWebView::Panel> _panel;
|
||||
|
||||
rpl::lifetime _lifetime;
|
||||
|
||||
static base::weak_ptr<WebViewInstance> PendingActivation;
|
||||
|
||||
};
|
||||
|
||||
class AttachWebView final : public base::has_weak_ptr {
|
||||
public:
|
||||
explicit AttachWebView(not_null<Main::Session*> session);
|
||||
~AttachWebView();
|
||||
|
||||
[[nodiscard]] Downloads &downloads() const {
|
||||
return *_downloads;
|
||||
}
|
||||
[[nodiscard]] Storage &storage() const {
|
||||
return *_storage;
|
||||
}
|
||||
|
||||
void open(WebViewDescriptor &&descriptor);
|
||||
void openByUsername(
|
||||
not_null<Window::SessionController*> controller,
|
||||
const Api::SendAction &action,
|
||||
const QString &botUsername,
|
||||
const QString &startCommand,
|
||||
bool fullscreen);
|
||||
|
||||
void cancel();
|
||||
|
||||
void requestBots(Fn<void()> callback = nullptr);
|
||||
[[nodiscard]] const std::vector<AttachWebViewBot> &attachBots() const {
|
||||
return _attachBots;
|
||||
}
|
||||
[[nodiscard]] rpl::producer<> attachBotsUpdates() const {
|
||||
return _attachBotsUpdates.events();
|
||||
}
|
||||
void notifyBotIconLoaded() {
|
||||
_attachBotsUpdates.fire({});
|
||||
}
|
||||
[[nodiscard]] bool disclaimerAccepted(
|
||||
const AttachWebViewBot &bot) const;
|
||||
[[nodiscard]] bool showMainMenuNewBadge(
|
||||
const AttachWebViewBot &bot) const;
|
||||
|
||||
void removeFromMenu(
|
||||
std::shared_ptr<Ui::Show> show,
|
||||
not_null<UserData*> bot);
|
||||
|
||||
enum class AddToMenuResult {
|
||||
AlreadyInMenu,
|
||||
Added,
|
||||
Unsupported,
|
||||
Cancelled,
|
||||
};
|
||||
void requestAddToMenu(
|
||||
not_null<UserData*> bot,
|
||||
Fn<void(AddToMenuResult, PeerTypes supported)> done);
|
||||
void acceptMainMenuDisclaimer(
|
||||
std::shared_ptr<Ui::Show> show,
|
||||
not_null<UserData*> bot,
|
||||
Fn<void(AddToMenuResult, PeerTypes supported)> done);
|
||||
|
||||
void close(not_null<WebViewInstance*> instance);
|
||||
void closeAll();
|
||||
|
||||
void loadPopularAppBots();
|
||||
[[nodiscard]] auto popularAppBots() const
|
||||
-> const std::vector<not_null<UserData*>> &;
|
||||
[[nodiscard]] rpl::producer<> popularAppBotsLoaded() const;
|
||||
|
||||
private:
|
||||
void resolveUsername(
|
||||
std::shared_ptr<Ui::Show> show,
|
||||
Fn<void(not_null<PeerData*>)> done);
|
||||
|
||||
enum class ToggledState {
|
||||
Removed,
|
||||
Added,
|
||||
AllowedToWrite,
|
||||
};
|
||||
void toggleInMenu(
|
||||
not_null<UserData*> bot,
|
||||
ToggledState state,
|
||||
Fn<void(bool success)> callback = nullptr);
|
||||
void confirmAddToMenu(
|
||||
AttachWebViewBot bot,
|
||||
Fn<void(bool added)> callback = nullptr);
|
||||
|
||||
const not_null<Main::Session*> _session;
|
||||
const std::unique_ptr<Downloads> _downloads;
|
||||
const std::unique_ptr<Storage> _storage;
|
||||
|
||||
base::Timer _refreshTimer;
|
||||
|
||||
QString _botUsername;
|
||||
QString _startCommand;
|
||||
bool _fullScreenRequested = false;
|
||||
|
||||
mtpRequestId _requestId = 0;
|
||||
|
||||
uint64 _botsHash = 0;
|
||||
mtpRequestId _botsRequestId = 0;
|
||||
std::vector<Fn<void()>> _botsRequestCallbacks;
|
||||
|
||||
struct AddToMenuProcess {
|
||||
mtpRequestId requestId = 0;
|
||||
std::vector<Fn<void(AddToMenuResult, PeerTypes supported)>> done;
|
||||
};
|
||||
base::flat_map<not_null<UserData*>, AddToMenuProcess> _addToMenu;
|
||||
|
||||
std::vector<AttachWebViewBot> _attachBots;
|
||||
rpl::event_stream<> _attachBotsUpdates;
|
||||
base::flat_set<not_null<UserData*>> _disclaimerAccepted;
|
||||
|
||||
std::vector<std::unique_ptr<WebViewInstance>> _instances;
|
||||
|
||||
std::vector<not_null<UserData*>> _popularAppBots;
|
||||
mtpRequestId _popularAppBotsRequestId = 0;
|
||||
rpl::variable<bool> _popularAppBotsLoaded = false;
|
||||
|
||||
};
|
||||
|
||||
[[nodiscard]] std::unique_ptr<Ui::DropdownMenu> MakeAttachBotsMenu(
|
||||
not_null<QWidget*> parent,
|
||||
not_null<Window::SessionController*> controller,
|
||||
not_null<PeerData*> peer,
|
||||
Fn<Api::SendAction()> actionFactory,
|
||||
Fn<void(bool)> attach);
|
||||
|
||||
class MenuBotIcon final : public Ui::RpWidget {
|
||||
public:
|
||||
MenuBotIcon(
|
||||
QWidget *parent,
|
||||
std::shared_ptr<Data::DocumentMedia> media);
|
||||
|
||||
private:
|
||||
void paintEvent(QPaintEvent *e) override;
|
||||
|
||||
void validate();
|
||||
|
||||
std::shared_ptr<Data::DocumentMedia> _media;
|
||||
QImage _image;
|
||||
QImage _mask;
|
||||
|
||||
};
|
||||
|
||||
} // namespace InlineBots
|
||||
Reference in New Issue
Block a user