From c89c98183de55b92694910b423f2f370b901b564 Mon Sep 17 00:00:00 2001 From: John Preston Date: Sun, 29 Mar 2020 14:06:10 +0400 Subject: [PATCH] Handle some updates even while not authed. --- Telegram/SourceFiles/core/application.h | 2 +- Telegram/SourceFiles/intro/intro_widget.cpp | 37 ++++++++++++++++++++- Telegram/SourceFiles/intro/intro_widget.h | 2 ++ 3 files changed, 39 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/core/application.h b/Telegram/SourceFiles/core/application.h index 3bec6b4ae..f2643fcbe 100644 --- a/Telegram/SourceFiles/core/application.h +++ b/Telegram/SourceFiles/core/application.h @@ -128,7 +128,7 @@ public: void saveSettingsDelayed(crl::time delay = kDefaultSaveDelay); // Dc options and proxy. - MTP::DcOptions *dcOptions() { + not_null dcOptions() { return _dcOptions.get(); } struct ProxyChange { diff --git a/Telegram/SourceFiles/intro/intro_widget.cpp b/Telegram/SourceFiles/intro/intro_widget.cpp index 80ad033a0..87e048d83 100644 --- a/Telegram/SourceFiles/intro/intro_widget.cpp +++ b/Telegram/SourceFiles/intro/intro_widget.cpp @@ -23,9 +23,12 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL #include "ui/widgets/labels.h" #include "ui/wrap/fade_wrap.h" #include "core/update_checker.h" +#include "core/application.h" +#include "mtproto/dc_options.h" #include "window/window_slide_animation.h" #include "window/window_connecting_widget.h" #include "base/platform/base_platform_info.h" +#include "api/api_text_entities.h" #include "facades.h" #include "app.h" #include "styles/style_layers.h" @@ -72,6 +75,11 @@ Widget::Widget(QWidget *parent, not_null account) createLanguageLink(); }); + _account->mtpUpdates( + ) | rpl::start_with_next([=](const MTPUpdates &updates) { + handleUpdates(updates); + }, lifetime()); + _back->entity()->setClickedCallback([=] { historyMove(Direction::Back); }); @@ -116,6 +124,34 @@ void Widget::refreshLang() { InvokeQueued(this, [this] { updateControlsGeometry(); }); } +void Widget::handleUpdates(const MTPUpdates &updates) { + updates.match([&](const MTPDupdateShort &data) { + handleUpdate(data.vupdate()); + }, [&](const MTPDupdates &data) { + for (const auto &update : data.vupdates().v) { + handleUpdate(update); + } + }, [&](const MTPDupdatesCombined &data) { + for (const auto &update : data.vupdates().v) { + handleUpdate(update); + } + }, [](const auto &) {}); +} + +void Widget::handleUpdate(const MTPUpdate &update) { + update.match([&](const MTPDupdateDcOptions &data) { + Core::App().dcOptions()->addFromList(data.vdc_options()); + }, [&](const MTPDupdateConfig &data) { + _account->mtp()->requestConfig(); + }, [&](const MTPDupdateServiceNotification &data) { + const auto text = TextWithEntities{ + qs(data.vmessage()), + Api::EntitiesFromMTP(data.ventities().v) + }; + Ui::show(Box(text)); + }, [](const auto &) {}); +} + void Widget::createLanguageLink() { if (_changeLanguage) { return; @@ -651,7 +687,6 @@ void Widget::updateControlsGeometry() { } } - void Widget::keyPressEvent(QKeyEvent *e) { if (_a_show.animating() || getStep()->animating()) return; diff --git a/Telegram/SourceFiles/intro/intro_widget.h b/Telegram/SourceFiles/intro/intro_widget.h index b26e1f452..978bfc812 100644 --- a/Telegram/SourceFiles/intro/intro_widget.h +++ b/Telegram/SourceFiles/intro/intro_widget.h @@ -93,6 +93,8 @@ private: void createLanguageLink(); void checkUpdateStatus(); void setupNextButton(); + void handleUpdates(const MTPUpdates &updates); + void handleUpdate(const MTPUpdate &update); void updateControlsGeometry(); [[nodiscard]] not_null getData() {