diff --git a/Telegram/SourceFiles/boxes/connection_box.cpp b/Telegram/SourceFiles/boxes/connection_box.cpp index dee7a165b..15c1bc5c2 100644 --- a/Telegram/SourceFiles/boxes/connection_box.cpp +++ b/Telegram/SourceFiles/boxes/connection_box.cpp @@ -295,8 +295,7 @@ ProxiesBox::ProxiesBox( this, object_ptr( this, - lang(lng_proxy_use), - Global::UseProxy()), + lang(lng_proxy_use)), st::proxyUsePadding) , _tryIPv6( this, @@ -333,9 +332,10 @@ void ProxiesBox::setupContent() { subscribe(_tryIPv6->entity()->checkedChanged, [=](bool checked) { _controller->setTryIPv6(checked); }); - subscribe(Global::RefConnectionTypeChanged(), [=] { - _useProxy->entity()->setChecked(Global::UseProxy()); - }); + _controller->proxyEnabledValue( + ) | rpl::start_with_next([=](bool enabled) { + _useProxy->entity()->setChecked(enabled); + }, _useProxy->entity()->lifetime()); _tryIPv6->resizeToWidth(st::boxWideWidth); @@ -1037,14 +1037,27 @@ ProxiesBoxController::ProxiesBoxController() ) | ranges::view::transform([&](const ProxyData &proxy) { return Item{ ++_idCounter, proxy }; }) | ranges::to_vector; - for (auto &item : _list) { - if (!Global::UseProxy() || item.data != Global::SelectedProxy()) { - createChecker(item); + + subscribe(Global::RefConnectionTypeChanged(), [=] { + _proxyEnabledChanges.fire_copy(Global::UseProxy()); + const auto i = findByProxy(Global::SelectedProxy()); + if (i != end(_list)) { + updateView(*i); } + }); + + for (auto &item : _list) { + refreshChecker(item); } } -void ProxiesBoxController::createChecker(Item &item) { +rpl::producer ProxiesBoxController::proxyEnabledValue() const { + return _proxyEnabledChanges.events_starting_with_copy( + Global::UseProxy() + ) | rpl::distinct_until_changed(); +} + +void ProxiesBoxController::refreshChecker(Item &item) { using Variants = MTP::DcOptions::Variants; const auto type = (item.data.type == ProxyData::Type::Http) ? Variants::Http @@ -1062,6 +1075,7 @@ void ProxiesBoxController::createChecker(Item &item) { setup(item.checker); if (item.data.type == ProxyData::Type::Mtproto) { item.checkerv6 = nullptr; + item.checker->setProxyOverride(item.data); item.checker->connectToServer( item.data.host, item.data.port, @@ -1281,6 +1295,7 @@ void ProxiesBoxController::replaceItemValue( Assert(i != end(proxies)); *i = proxy; which->data = proxy; + refreshChecker(*which); applyItem(which->id); saveDelayed(); @@ -1308,7 +1323,7 @@ void ProxiesBoxController::addNewItem(const ProxyData &proxy) { proxies.push_back(proxy); _list.push_back({ ++_idCounter, proxy }); - createChecker(_list.back()); + refreshChecker(_list.back()); applyItem(_list.back().id); } @@ -1367,6 +1382,14 @@ void ProxiesBoxController::updateView(const Item &item) { } Unexpected("Proxy type in ProxiesBoxController::updateView."); }(); + const auto state = [&] { + if (!selected || !Global::UseProxy()) { + return item.state; + } else if (MTP::dcstate() == MTP::ConnectedState) { + return ItemState::Online; + } + return ItemState::Connecting; + }(); _views.fire({ item.id, type, @@ -1375,7 +1398,7 @@ void ProxiesBoxController::updateView(const Item &item) { item.ping, !deleted && selected, deleted, - item.state }); + state }); } ProxiesBoxController::~ProxiesBoxController() { diff --git a/Telegram/SourceFiles/boxes/connection_box.h b/Telegram/SourceFiles/boxes/connection_box.h index e7acaa509..bee59587b 100644 --- a/Telegram/SourceFiles/boxes/connection_box.h +++ b/Telegram/SourceFiles/boxes/connection_box.h @@ -92,7 +92,7 @@ private: }; -class ProxiesBoxController { +class ProxiesBoxController : public base::Subscriber { public: ProxiesBoxController(); @@ -125,6 +125,7 @@ public: object_ptr addNewItemBox(); bool setProxyEnabled(bool enabled); void setTryIPv6(bool enabled); + rpl::producer proxyEnabledValue() const; rpl::producer views() const; @@ -149,7 +150,7 @@ private: void updateView(const Item &item); void applyChanges(); void saveDelayed(); - void createChecker(Item &item); + void refreshChecker(Item &item); void setupChecker(int id, const Checker &checker); void replaceItemWith( @@ -165,6 +166,7 @@ private: std::vector _list; rpl::event_stream _views; base::Timer _saveTimer; + rpl::event_stream _proxyEnabledChanges; ProxyData _lastSelectedProxy; bool _lastSelectedProxyUsed = false; diff --git a/Telegram/SourceFiles/core/utils.cpp b/Telegram/SourceFiles/core/utils.cpp index d2cd2ad79..4177cf837 100644 --- a/Telegram/SourceFiles/core/utils.cpp +++ b/Telegram/SourceFiles/core/utils.cpp @@ -269,9 +269,8 @@ bool ProxyData::ValidSecret(const QString &secret) { } QNetworkProxy ToNetworkProxy(const ProxyData &proxy) { - Expects(proxy.type != ProxyData::Type::Mtproto); - - if (proxy.type == ProxyData::Type::None) { + if (proxy.type == ProxyData::Type::None + || proxy.type == ProxyData::Type::Mtproto) { return QNetworkProxy::NoProxy; } return QNetworkProxy( diff --git a/Telegram/SourceFiles/mainwindow.cpp b/Telegram/SourceFiles/mainwindow.cpp index 0c4dd3d5d..36de6a6cb 100644 --- a/Telegram/SourceFiles/mainwindow.cpp +++ b/Telegram/SourceFiles/mainwindow.cpp @@ -408,7 +408,7 @@ void MainWindow::mtpStateChanged(int32 dc, int32 state) { } void MainWindow::updateConnectingStatus() { - auto state = MTP::dcstate(); + const auto state = MTP::dcstate(); const auto throughProxy = Global::UseProxy(); if (state == MTP::ConnectingState || state == MTP::DisconnectedState || (state < 0 && state > -600)) { if (_main || getms() > 5000 || _connecting) {