Move _authSession to Main::Account.

This commit is contained in:
John Preston 2019-06-06 12:37:12 +03:00
parent 94c4ea6174
commit 263bbf1788
15 changed files with 85 additions and 99 deletions

View File

@ -786,8 +786,7 @@ void Application::authSessionCreate(const MTPUser &user) {
return true;
}));
_authSession = std::make_unique<AuthSession>(&activeAccount(), user);
authSessionChanged().notify(true);
activeAccount().createSession(user);
}
void Application::authSessionDestroy() {
@ -798,12 +797,7 @@ void Application::authSessionDestroy() {
unlockTerms();
_mtproto->clearGlobalHandlers();
// Must be called before Auth().data() is destroyed,
// because streaming media holds pointers to it.
Media::Player::instance()->handleLogout();
_authSession = nullptr;
authSessionChanged().notify(true);
activeAccount().destroySession();
Notify::unreadCounterUpdated();
}

View File

@ -11,7 +11,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "mtproto/auth_key.h"
#include "base/timer.h"
class AuthSession;
class AuthSessionSettings;
class MainWidget;
class FileUploader;
@ -158,13 +157,7 @@ public:
}
// AuthSession component.
AuthSession *authSession() {
return _authSession.get();
}
void authSessionCreate(const MTPUser &user);
base::Observable<void> &authSessionChanged() {
return _authSessionChanged;
}
int unreadBadge() const;
bool unreadBadgeMuted() const;
void logOut();
@ -289,8 +282,6 @@ private:
std::unique_ptr<MTP::Instance> _mtproto;
std::unique_ptr<MTP::Instance> _mtprotoForKeysDestroy;
rpl::event_stream<> _configUpdates;
std::unique_ptr<AuthSession> _authSession;
base::Observable<void> _authSessionChanged;
base::Observable<void> _passcodedChanged;
QPointer<BoxContent> _badProxyDisableBox;

View File

@ -18,32 +18,35 @@ Account::Account(const QString &dataName) {
Account::~Account() {
}
void Account::createSession(const MTPUser &user) {
Expects(_session == nullptr);
Expects(_sessionValue.current() == nullptr);
_session = std::make_unique<AuthSession>(this, user);
_sessionValue = _session.get();
}
void Account::destroySession() {
_sessionValue = nullptr;
_session = nullptr;
}
bool Account::sessionExists() const {
return Core::App().authSession() != nullptr;
return (_sessionValue.current() != nullptr);
}
AuthSession &Account::session() {
Expects(sessionExists());
return *Core::App().authSession();
return *_sessionValue.current();
}
rpl::producer<AuthSession*> Account::sessionValue() const {
return rpl::single(
rpl::empty_value()
) | rpl::then(
base::ObservableViewer(Core::App().authSessionChanged())
) | rpl::map([] {
return Core::App().authSession();
});
return _sessionValue.value();
}
rpl::producer<AuthSession*> Account::sessionChanges() const {
return base::ObservableViewer(
Core::App().authSessionChanged()
) | rpl::map([] {
return Core::App().authSession();
});
return _sessionValue.changes();
}
MTP::Instance *Account::mtp() {

View File

@ -19,6 +19,9 @@ public:
Account(const Account &other) = delete;
Account &operator=(const Account &other) = delete;
void createSession(const MTPUser &user);
void destroySession();
[[nodiscard]] bool sessionExists() const;
[[nodiscard]] AuthSession &session();
[[nodiscard]] rpl::producer<AuthSession*> sessionValue() const;
@ -27,6 +30,8 @@ public:
[[nodiscard]] MTP::Instance *mtp();
private:
std::unique_ptr<AuthSession> _session;
rpl::variable<AuthSession*> _sessionValue;
};

View File

@ -26,6 +26,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "core/application.h"
#include "auth_session.h"
#include "intro/introwidget.h"
#include "main/main_account.h" // Account::sessionValue.
#include "mainwidget.h"
#include "boxes/confirm_box.h"
#include "boxes/add_contact_box.h"
@ -80,12 +81,13 @@ MainWindow::MainWindow() {
setLocale(QLocale(QLocale::English, QLocale::UnitedStates));
subscribe(Core::App().authSessionChanged(), [this] {
Core::App().activeAccount().sessionValue(
) | rpl::start_with_next([=](AuthSession *session) {
updateGlobalMenu();
if (!AuthSession::Exists()) {
if (!session) {
_mediaPreview.destroy();
}
});
}, lifetime());
subscribe(Window::Theme::Background(), [this](const Window::Theme::BackgroundUpdate &data) {
themeUpdated(data);
});

View File

@ -22,6 +22,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "window/window_controller.h"
#include "core/shortcuts.h"
#include "core/application.h"
#include "main/main_account.h" // Account::sessionValue.
#include "mainwindow.h"
#include "auth_session.h"
@ -93,9 +94,10 @@ Instance::Instance()
});
// While we have one Media::Player::Instance for all authsessions we have to do this.
const auto handleAuthSessionChange = [=] {
if (AuthSession::Exists()) {
subscribe(Auth().calls().currentCallChanged(), [=](Calls::Call *call) {
Core::App().activeAccount().sessionValue(
) | rpl::start_with_next([=](AuthSession *session) {
if (session) {
subscribe(session->calls().currentCallChanged(), [=](Calls::Call *call) {
if (call) {
pauseOnCall(AudioMsgId::Type::Voice);
pauseOnCall(AudioMsgId::Type::Song);
@ -104,12 +106,15 @@ Instance::Instance()
resumeOnCall(AudioMsgId::Type::Song);
}
});
} else {
const auto reset = [&](AudioMsgId::Type type) {
const auto data = getData(type);
*data = Data(type, data->overview);
};
reset(AudioMsgId::Type::Voice);
reset(AudioMsgId::Type::Song);
}
};
subscribe(
Core::App().authSessionChanged(),
handleAuthSessionChange);
handleAuthSessionChange();
}, _lifetime);
setupShortcuts();
}
@ -636,15 +641,6 @@ void Instance::emitUpdate(AudioMsgId::Type type, CheckCallback check) {
}
}
void Instance::handleLogout() {
const auto reset = [&](AudioMsgId::Type type) {
const auto data = getData(type);
*data = Data(type, data->overview);
};
reset(AudioMsgId::Type::Voice);
reset(AudioMsgId::Type::Song);
}
void Instance::setupShortcuts() {
Shortcuts::Requests(
) | rpl::start_with_next([=](not_null<Shortcuts::Request*> request) {

View File

@ -156,8 +156,6 @@ public:
void documentLoadProgress(DocumentData *document);
void handleLogout();
private:
using SharedMediaType = Storage::SharedMediaType;
using SliceKey = SparseIdsMergedSlice::Key;

View File

@ -36,6 +36,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "data/data_user.h"
#include "window/themes/window_theme_preview.h"
#include "window/window_peer_menu.h"
#include "main/main_account.h" // Account::sessionValue.
#include "observer_peer.h"
#include "auth_session.h"
#include "layout.h"
@ -242,14 +243,15 @@ OverlayWidget::OverlayWidget()
connect(QApplication::desktop(), SIGNAL(resized(int)), this, SLOT(onScreenResized(int)));
// While we have one mediaview for all authsessions we have to do this.
auto handleAuthSessionChange = [this] {
if (AuthSession::Exists()) {
subscribe(Auth().downloaderTaskFinished(), [this] {
Core::App().activeAccount().sessionValue(
) | rpl::start_with_next([=](AuthSession *session) {
if (session) {
subscribe(session->downloaderTaskFinished(), [=] {
if (!isHidden()) {
updateControls();
}
});
subscribe(Auth().calls().currentCallChanged(), [this](Calls::Call *call) {
subscribe(session->calls().currentCallChanged(), [=](Calls::Call *call) {
if (!_streamed) {
return;
}
@ -259,12 +261,12 @@ OverlayWidget::OverlayWidget()
playbackResumeOnCall();
}
});
subscribe(Auth().documentUpdated, [this](DocumentData *document) {
subscribe(session->documentUpdated, [=](DocumentData *document) {
if (!isHidden()) {
documentUpdated(document);
}
});
subscribe(Auth().messageIdChanging, [this](std::pair<not_null<HistoryItem*>, MsgId> update) {
subscribe(session->messageIdChanging, [=](std::pair<not_null<HistoryItem*>, MsgId> update) {
changingMsgId(update.first, update.second);
});
} else {
@ -272,11 +274,7 @@ OverlayWidget::OverlayWidget()
_userPhotos = nullptr;
_collage = nullptr;
}
};
subscribe(Core::App().authSessionChanged(), [handleAuthSessionChange] {
handleAuthSessionChange();
});
handleAuthSessionChange();
}, lifetime());
#ifdef Q_OS_LINUX
setWindowFlags(Qt::FramelessWindowHint | Qt::MaximizeUsingFullscreenGeometryHint);

View File

@ -9,6 +9,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "auth_session.h"
#include "core/application.h"
#include "main/main_account.h" // Account::sessionChanges.
namespace MTP {
namespace {
@ -89,11 +90,12 @@ WeakInstance::WeakInstance(QPointer<MTP::Instance> instance)
_instance = nullptr;
die();
});
subscribe(Core::App().authSessionChanged(), [=] {
if (!AuthSession::Exists()) {
die();
}
});
Core::App().activeAccount().sessionChanges(
) | rpl::filter([](AuthSession *session) {
return !session;
}) | rpl::start_with_next([=] {
die();
}, _lifetime);
}
bool WeakInstance::valid() const {

View File

@ -34,6 +34,7 @@ private:
QPointer<Instance> _instance;
std::map<mtpRequestId, Fn<void(const RPCError &)>> _requests;
rpl::lifetime _lifetime;
};

View File

@ -15,6 +15,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "history/history.h"
#include "history/history_widget.h"
#include "history/history_inner_widget.h"
#include "main/main_account.h" // Account::sessionChanges.
#include "storage/localstorage.h"
#include "window/notifications_manager_default.h"
#include "window/themes/window_theme.h"
@ -405,8 +406,9 @@ void MainWindow::initTouchBar() {
return;
}
subscribe(Core::App().authSessionChanged(), [this] {
if (AuthSession::Exists()) {
Core::App().activeAccount().sessionValue(
) | rpl::start_with_next([=](AuthSession *session) {
if (session) {
// We need only common pinned dialogs.
if (!_private->_touchBar) {
if (auto view = reinterpret_cast<NSView*>(winId())) {
@ -422,7 +424,7 @@ void MainWindow::initTouchBar() {
}
_private->_touchBar = nil;
}
});
}, lifetime());
}
void MainWindow::closeWithoutDestroy() {

View File

@ -16,6 +16,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "window/window_lock_widgets.h"
#include "window/window_outdated_bar.h"
#include "boxes/confirm_box.h"
#include "main/main_account.h" // Account::authSessionValue.
#include "core/click_handler_types.h"
#include "core/application.h"
#include "core/sandbox.h"
@ -125,11 +126,14 @@ MainWindow::MainWindow()
subscribe(Global::RefWorkMode(), [=](DBIWorkMode mode) {
workmodeUpdated(mode);
});
subscribe(Core::App().authSessionChanged(), [=] {
checkAuthSession();
Core::App().activeAccount().sessionValue(
) | rpl::start_with_next([=](AuthSession *session) {
_controller = session
? std::make_unique<Window::Controller>(session, this)
: nullptr;
updateWindowIcon();
});
checkAuthSession();
}, lifetime());
Core::App().termsLockValue(
) | rpl::start_with_next([=] {
@ -639,14 +643,6 @@ void MainWindow::launchDrag(std::unique_ptr<QMimeData> data) {
}
}
void MainWindow::checkAuthSession() {
if (AuthSession::Exists()) {
_controller = std::make_unique<Window::Controller>(&Auth(), this);
} else {
_controller = nullptr;
}
}
void MainWindow::setInactivePress(bool inactive) {
_wasInactivePress = inactive;
if (_wasInactivePress) {

View File

@ -148,7 +148,6 @@ protected:
QSystemTrayIcon::ActivationReason reason) = 0;
private:
void checkAuthSession();
void updatePalette();
void updateUnreadCounter();
void initSize();

View File

@ -17,6 +17,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "base/parse_helper.h"
#include "base/zlib_help.h"
#include "data/data_session.h"
#include "main/main_account.h" // Account::sessionValue.
#include "ui/image/image.h"
#include "boxes/background_box.h"
#include "core/application.h"
@ -391,23 +392,20 @@ void ChatBackground::setThemeData(QImage &&themeImage, bool themeTile) {
}
void ChatBackground::start() {
if (Data::details::IsUninitializedWallPaper(_paper)) {
if (!Local::readBackground()) {
set(Data::ThemeWallPaper());
}
refreshSession();
subscribe(Core::App().authSessionChanged(), [=] {
refreshSession();
});
if (!Data::details::IsUninitializedWallPaper(_paper)) {
return;
}
if (!Local::readBackground()) {
set(Data::ThemeWallPaper());
}
}
void ChatBackground::refreshSession() {
const auto session = AuthSession::Exists() ? &Auth() : nullptr;
if (_session != session) {
Core::App().activeAccount().sessionValue(
) | rpl::filter([=](AuthSession *session) {
return session != _session;
}) | rpl::start_with_next([=](AuthSession *session) {
_session = session;
checkUploadWallPaper();
}
}, _lifetime);
}
void ChatBackground::checkUploadWallPaper() {

View File

@ -154,7 +154,6 @@ private:
void keepApplied(const QString &path, bool write);
[[nodiscard]] bool isNonDefaultThemeOrBackground();
[[nodiscard]] bool isNonDefaultBackground();
void refreshSession();
void checkUploadWallPaper();
[[nodiscard]] bool testingPalette() const;
@ -191,6 +190,8 @@ private:
mtpRequestId _wallPaperRequestId = 0;
rpl::lifetime _wallPaperUploadLifetime;
rpl::lifetime _lifetime;
};
ChatBackground *Background();