mirror of https://github.com/procxx/kepka.git
Handle some updates even while not authed.
This commit is contained in:
parent
c209aedb22
commit
c89c98183d
|
@ -128,7 +128,7 @@ public:
|
||||||
void saveSettingsDelayed(crl::time delay = kDefaultSaveDelay);
|
void saveSettingsDelayed(crl::time delay = kDefaultSaveDelay);
|
||||||
|
|
||||||
// Dc options and proxy.
|
// Dc options and proxy.
|
||||||
MTP::DcOptions *dcOptions() {
|
not_null<MTP::DcOptions*> dcOptions() {
|
||||||
return _dcOptions.get();
|
return _dcOptions.get();
|
||||||
}
|
}
|
||||||
struct ProxyChange {
|
struct ProxyChange {
|
||||||
|
|
|
@ -23,9 +23,12 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "ui/widgets/labels.h"
|
#include "ui/widgets/labels.h"
|
||||||
#include "ui/wrap/fade_wrap.h"
|
#include "ui/wrap/fade_wrap.h"
|
||||||
#include "core/update_checker.h"
|
#include "core/update_checker.h"
|
||||||
|
#include "core/application.h"
|
||||||
|
#include "mtproto/dc_options.h"
|
||||||
#include "window/window_slide_animation.h"
|
#include "window/window_slide_animation.h"
|
||||||
#include "window/window_connecting_widget.h"
|
#include "window/window_connecting_widget.h"
|
||||||
#include "base/platform/base_platform_info.h"
|
#include "base/platform/base_platform_info.h"
|
||||||
|
#include "api/api_text_entities.h"
|
||||||
#include "facades.h"
|
#include "facades.h"
|
||||||
#include "app.h"
|
#include "app.h"
|
||||||
#include "styles/style_layers.h"
|
#include "styles/style_layers.h"
|
||||||
|
@ -72,6 +75,11 @@ Widget::Widget(QWidget *parent, not_null<Main::Account*> account)
|
||||||
createLanguageLink();
|
createLanguageLink();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
_account->mtpUpdates(
|
||||||
|
) | rpl::start_with_next([=](const MTPUpdates &updates) {
|
||||||
|
handleUpdates(updates);
|
||||||
|
}, lifetime());
|
||||||
|
|
||||||
_back->entity()->setClickedCallback([=] {
|
_back->entity()->setClickedCallback([=] {
|
||||||
historyMove(Direction::Back);
|
historyMove(Direction::Back);
|
||||||
});
|
});
|
||||||
|
@ -116,6 +124,34 @@ void Widget::refreshLang() {
|
||||||
InvokeQueued(this, [this] { updateControlsGeometry(); });
|
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<InformBox>(text));
|
||||||
|
}, [](const auto &) {});
|
||||||
|
}
|
||||||
|
|
||||||
void Widget::createLanguageLink() {
|
void Widget::createLanguageLink() {
|
||||||
if (_changeLanguage) {
|
if (_changeLanguage) {
|
||||||
return;
|
return;
|
||||||
|
@ -651,7 +687,6 @@ void Widget::updateControlsGeometry() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void Widget::keyPressEvent(QKeyEvent *e) {
|
void Widget::keyPressEvent(QKeyEvent *e) {
|
||||||
if (_a_show.animating() || getStep()->animating()) return;
|
if (_a_show.animating() || getStep()->animating()) return;
|
||||||
|
|
||||||
|
|
|
@ -93,6 +93,8 @@ private:
|
||||||
void createLanguageLink();
|
void createLanguageLink();
|
||||||
void checkUpdateStatus();
|
void checkUpdateStatus();
|
||||||
void setupNextButton();
|
void setupNextButton();
|
||||||
|
void handleUpdates(const MTPUpdates &updates);
|
||||||
|
void handleUpdate(const MTPUpdate &update);
|
||||||
|
|
||||||
void updateControlsGeometry();
|
void updateControlsGeometry();
|
||||||
[[nodiscard]] not_null<details::Data*> getData() {
|
[[nodiscard]] not_null<details::Data*> getData() {
|
||||||
|
|
Loading…
Reference in New Issue