Move ApiWrap to AuthSession.

Also send all ApiWrap requests as an MTP::Sender.
Also create AuthSession only after starting MTProto.
This commit is contained in:
John Preston 2017-04-06 22:02:40 +03:00
parent 835b1801bc
commit 0d0307e175
16 changed files with 553 additions and 610 deletions

File diff suppressed because it is too large Load Diff

View File

@ -21,6 +21,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
#pragma once #pragma once
#include "core/single_timer.h" #include "core/single_timer.h"
#include "mtproto/sender.h"
namespace Api { namespace Api {
@ -34,10 +35,9 @@ inline const MTPVector<MTPChat> *getChatsFromMessagesChats(const MTPmessages_Cha
} // namespace Api } // namespace Api
class ApiWrap : public QObject, public RPCSender { class ApiWrap : public QObject, private MTP::Sender {
public: public:
ApiWrap(QObject *parent); ApiWrap();
void init();
using RequestMessageDataCallback = base::lambda<void(ChannelData*, MsgId)>; using RequestMessageDataCallback = base::lambda<void(ChannelData*, MsgId)>;
void requestMessageData(ChannelData *channel, MsgId msgId, RequestMessageDataCallback callback); void requestMessageData(ChannelData *channel, MsgId msgId, RequestMessageDataCallback callback);
@ -45,12 +45,12 @@ public:
void requestFullPeer(PeerData *peer); void requestFullPeer(PeerData *peer);
void requestPeer(PeerData *peer); void requestPeer(PeerData *peer);
void requestPeers(const QList<PeerData*> &peers); void requestPeers(const QList<PeerData*> &peers);
void requestLastParticipants(ChannelData *peer, bool fromStart = true); void requestLastParticipants(ChannelData *channel, bool fromStart = true);
void requestBots(ChannelData *peer); void requestBots(ChannelData *channel);
void requestParticipantsCountDelayed(ChannelData *channel); void requestParticipantsCountDelayed(ChannelData *channel);
void processFullPeer(PeerData *peer, const MTPmessages_ChatFull &result); void processFullPeer(PeerData *peer, const MTPmessages_ChatFull &result);
void processFullPeer(PeerData *peer, const MTPUserFull &result); void processFullPeer(UserData *user, const MTPUserFull &result);
void requestSelfParticipant(ChannelData *channel); void requestSelfParticipant(ChannelData *channel);
void kickParticipant(PeerData *peer, UserData *user); void kickParticipant(PeerData *peer, UserData *user);
@ -87,105 +87,72 @@ public:
~ApiWrap(); ~ApiWrap();
private: private:
struct MessageDataRequest {
using Callbacks = QList<RequestMessageDataCallback>;
mtpRequestId requestId = 0;
Callbacks callbacks;
};
using MessageDataRequests = QMap<MsgId, MessageDataRequest>;
void updatesReceived(const MTPUpdates &updates); void updatesReceived(const MTPUpdates &updates);
void resolveMessageDatas(); void resolveMessageDatas();
void gotMessageDatas(ChannelData *channel, const MTPmessages_Messages &result, mtpRequestId req); void gotMessageDatas(ChannelData *channel, const MTPmessages_Messages &result, mtpRequestId requestId);
struct MessageDataRequest {
using Callbacks = QList<RequestMessageDataCallback>; QVector<MTPint> collectMessageIds(const MessageDataRequests &requests);
mtpRequestId req = 0;
Callbacks callbacks;
};
typedef QMap<MsgId, MessageDataRequest> MessageDataRequests;
MessageDataRequests _messageDataRequests;
typedef QMap<ChannelData*, MessageDataRequests> ChannelMessageDataRequests;
ChannelMessageDataRequests _channelMessageDataRequests;
SingleQueuedInvokation _messageDataResolveDelayed;
typedef QVector<MTPint> MessageIds;
MessageIds collectMessageIds(const MessageDataRequests &requests);
MessageDataRequests *messageDataRequests(ChannelData *channel, bool onlyExisting = false); MessageDataRequests *messageDataRequests(ChannelData *channel, bool onlyExisting = false);
void gotChatFull(PeerData *peer, const MTPmessages_ChatFull &result, mtpRequestId req); void gotChatFull(PeerData *peer, const MTPmessages_ChatFull &result, mtpRequestId req);
void gotUserFull(PeerData *peer, const MTPUserFull &result, mtpRequestId req); void gotUserFull(UserData *user, const MTPUserFull &result, mtpRequestId req);
bool gotPeerFullFailed(PeerData *peer, const RPCError &err); void lastParticipantsDone(ChannelData *peer, const MTPchannels_ChannelParticipants &result, mtpRequestId req);
typedef QMap<PeerData*, mtpRequestId> PeerRequests; void resolveWebPages();
PeerRequests _fullPeerRequests; void gotWebPages(ChannelData *channel, const MTPmessages_Messages &result, mtpRequestId req);
void gotStickerSet(uint64 setId, const MTPmessages_StickerSet &result);
void gotChat(PeerData *peer, const MTPmessages_Chats &result); PeerData *notifySettingReceived(MTPInputNotifyPeer peer, const MTPPeerNotifySettings &settings);
void gotUser(PeerData *peer, const MTPVector<MTPUser> &result);
void gotChats(const MTPmessages_Chats &result); void stickerSetDisenabled(mtpRequestId requestId);
void gotUsers(const MTPVector<MTPUser> &result); void stickersSaveOrder();
bool gotPeerFailed(PeerData *peer, const RPCError &err);
MessageDataRequests _messageDataRequests;
QMap<ChannelData*, MessageDataRequests> _channelMessageDataRequests;
SingleQueuedInvokation _messageDataResolveDelayed;
using PeerRequests = QMap<PeerData*, mtpRequestId>;
PeerRequests _fullPeerRequests;
PeerRequests _peerRequests; PeerRequests _peerRequests;
void lastParticipantsDone(ChannelData *peer, const MTPchannels_ChannelParticipants &result, mtpRequestId req); PeerRequests _participantsRequests;
bool lastParticipantsFail(ChannelData *peer, const RPCError &error, mtpRequestId req); PeerRequests _botsRequests;
PeerRequests _participantsRequests, _botsRequests;
typedef QPair<PeerData*, UserData*> KickRequest; typedef QPair<PeerData*, UserData*> KickRequest;
typedef QMap<KickRequest, mtpRequestId> KickRequests; typedef QMap<KickRequest, mtpRequestId> KickRequests;
void kickParticipantDone(KickRequest kick, const MTPUpdates &updates, mtpRequestId req);
bool kickParticipantFail(KickRequest kick, const RPCError &error, mtpRequestId req);
KickRequests _kickRequests; KickRequests _kickRequests;
void gotSelfParticipant(ChannelData *channel, const MTPchannels_ChannelParticipant &result); QMap<ChannelData*, mtpRequestId> _selfParticipantRequests;
bool gotSelfParticipantFail(ChannelData *channel, const RPCError &error);
typedef QMap<ChannelData*, mtpRequestId> SelfParticipantRequests;
SelfParticipantRequests _selfParticipantRequests;
void resolveWebPages(); QMap<WebPageData*, mtpRequestId> _webPagesPending;
void gotWebPages(ChannelData *channel, const MTPmessages_Messages &result, mtpRequestId req);
typedef QMap<WebPageData*, mtpRequestId> WebPagesPending;
WebPagesPending _webPagesPending;
SingleTimer _webPagesTimer; SingleTimer _webPagesTimer;
QMap<uint64, QPair<uint64, mtpRequestId> > _stickerSetRequests; QMap<uint64, QPair<uint64, mtpRequestId> > _stickerSetRequests;
void gotStickerSet(uint64 setId, const MTPmessages_StickerSet &result);
bool gotStickerSetFail(uint64 setId, const RPCError &error);
QMap<ChannelData*, mtpRequestId> _channelAmInRequests; QMap<ChannelData*, mtpRequestId> _channelAmInRequests;
void channelAmInUpdated(ChannelData *channel);
void channelAmInDone(ChannelData *channel, const MTPUpdates &updates);
bool channelAmInFail(ChannelData *channel, const RPCError &error);
QMap<UserData*, mtpRequestId> _blockRequests; QMap<UserData*, mtpRequestId> _blockRequests;
void blockDone(UserData *user, const MTPBool &result);
void unblockDone(UserData *user, const MTPBool &result);
bool blockFail(UserData *user, const RPCError &error);
QMap<PeerData*, mtpRequestId> _exportInviteRequests; QMap<PeerData*, mtpRequestId> _exportInviteRequests;
void exportInviteDone(PeerData *peer, const MTPExportedChatInvite &result);
bool exportInviteFail(PeerData *peer, const RPCError &error);
QMap<PeerData*, mtpRequestId> _notifySettingRequests; QMap<PeerData*, mtpRequestId> _notifySettingRequests;
void notifySettingDone(MTPInputNotifyPeer peer, const MTPPeerNotifySettings &settings);
PeerData *notifySettingReceived(MTPInputNotifyPeer peer, const MTPPeerNotifySettings &settings);
bool notifySettingFail(PeerData *peer, const RPCError &error);
QMap<History*, mtpRequestId> _draftsSaveRequestIds; QMap<History*, mtpRequestId> _draftsSaveRequestIds;
SingleTimer _draftsSaveTimer; SingleTimer _draftsSaveTimer;
void saveCloudDraftDone(History *history, const MTPBool &result, mtpRequestId requestId);
bool saveCloudDraftFail(History *history, const RPCError &error, mtpRequestId requestId);
OrderedSet<mtpRequestId> _stickerSetDisenableRequests; OrderedSet<mtpRequestId> _stickerSetDisenableRequests;
void stickerSetDisenableDone(const MTPmessages_StickerSetInstallResult &result, mtpRequestId req);
bool stickerSetDisenableFail(const RPCError &error, mtpRequestId req);
Stickers::Order _stickersOrder; Stickers::Order _stickersOrder;
mtpRequestId _stickersReorderRequestId = 0; mtpRequestId _stickersReorderRequestId = 0;
void stickersSaveOrder();
void stickersReorderDone(const MTPBool &result);
bool stickersReorderFail(const RPCError &result);
mtpRequestId _stickersClearRecentRequestId = 0; mtpRequestId _stickersClearRecentRequestId = 0;
void stickersClearRecentDone(const MTPBool &result);
bool stickersClearRecentFail(const RPCError &result);
QMap<mtpTypeId, mtpRequestId> _privacySaveRequests; QMap<mtpTypeId, mtpRequestId> _privacySaveRequests;
void savePrivacyDone(mtpTypeId keyTypeId, const MTPaccount_PrivacyRules &result);
bool savePrivacyFail(mtpTypeId keyTypeId, const RPCError &error);
mtpRequestId _contactsStatusesRequestId = 0; mtpRequestId _contactsStatusesRequestId = 0;
void contactsStatusesDone(const MTPVector<MTPContactStatus> &result);
bool contactsStatusesFail(const RPCError &error);
base::Observable<PeerData*> _fullPeerUpdated; base::Observable<PeerData*> _fullPeerUpdated;

View File

@ -191,7 +191,7 @@ namespace App {
} }
ApiWrap *api() { ApiWrap *api() {
return main() ? main()->api() : 0; return AuthSession::Exists() ? &AuthSession::Current().api() : nullptr;
} }
namespace { namespace {

View File

@ -20,6 +20,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
*/ */
#include "auth_session.h" #include "auth_session.h"
#include "apiwrap.h"
#include "messenger.h" #include "messenger.h"
#include "storage/file_download.h" #include "storage/file_download.h"
#include "window/notifications_manager.h" #include "window/notifications_manager.h"
@ -75,6 +76,7 @@ void AuthSessionData::constructFromSerialized(const QByteArray &serialized) {
AuthSession::AuthSession(UserId userId) AuthSession::AuthSession(UserId userId)
: _userId(userId) : _userId(userId)
, _api(std::make_unique<ApiWrap>())
, _downloader(std::make_unique<Storage::Downloader>()) , _downloader(std::make_unique<Storage::Downloader>())
, _notifications(std::make_unique<Window::Notifications::System>(this)) { , _notifications(std::make_unique<Window::Notifications::System>(this)) {
Expects(_userId != 0); Expects(_userId != 0);

View File

@ -30,6 +30,8 @@ class System;
} // namespace Notifications } // namespace Notifications
} // namespace Window } // namespace Window
class ApiWrap;
enum class EmojiPanelTab { enum class EmojiPanelTab {
Emoji, Emoji,
Stickers, Stickers,
@ -121,12 +123,17 @@ public:
return _data; return _data;
} }
ApiWrap &api() {
return *_api;
}
~AuthSession(); ~AuthSession();
private: private:
UserId _userId = 0; const UserId _userId = 0;
AuthSessionData _data; AuthSessionData _data;
const std::unique_ptr<ApiWrap> _api;
const std::unique_ptr<Storage::Downloader> _downloader; const std::unique_ptr<Storage::Downloader> _downloader;
const std::unique_ptr<Window::Notifications::System> _notifications; const std::unique_ptr<Window::Notifications::System> _notifications;

View File

@ -345,11 +345,6 @@ public:
void searchMessages(const QString &query, PeerData *inPeer = 0); void searchMessages(const QString &query, PeerData *inPeer = 0);
void onSearchMore(); void onSearchMore();
void rpcClear() override {
_inner->rpcClear();
RPCSender::rpcClear();
}
void notify_userIsContactChanged(UserData *user, bool fromThisApp); void notify_userIsContactChanged(UserData *user, bool fromThisApp);
void notify_historyMuteUpdated(History *history); void notify_historyMuteUpdated(History *history);

View File

@ -170,7 +170,7 @@ void CodeWidget::finished() {
Step::finished(); Step::finished();
_checkRequest->stop(); _checkRequest->stop();
_callTimer->stop(); _callTimer->stop();
rpcClear(); rpcInvalidate();
cancelled(); cancelled();
_sentCode.clear(); _sentCode.clear();

View File

@ -249,7 +249,7 @@ void PhoneWidget::activate() {
void PhoneWidget::finished() { void PhoneWidget::finished() {
Step::finished(); Step::finished();
_checkRequest->stop(); _checkRequest->stop();
rpcClear(); rpcInvalidate();
cancelled(); cancelled();
} }

View File

@ -82,8 +82,7 @@ MainWidget::MainWidget(QWidget *parent, std::unique_ptr<Window::Controller> cont
, _dialogs(this, _controller.get()) , _dialogs(this, _controller.get())
, _history(this, _controller.get()) , _history(this, _controller.get())
, _playerPlaylist(this, Media::Player::Panel::Layout::OnlyPlaylist) , _playerPlaylist(this, Media::Player::Panel::Layout::OnlyPlaylist)
, _playerPanel(this, Media::Player::Panel::Layout::Full) , _playerPanel(this, Media::Player::Panel::Layout::Full) {
, _api(new ApiWrap(this)) {
Messenger::Instance().mtp()->setUpdatesHandler(rpcDone(&MainWidget::updateReceived)); Messenger::Instance().mtp()->setUpdatesHandler(rpcDone(&MainWidget::updateReceived));
Messenger::Instance().mtp()->setGlobalFailHandler(rpcFail(&MainWidget::updateFail)); Messenger::Instance().mtp()->setGlobalFailHandler(rpcFail(&MainWidget::updateFail));
@ -110,7 +109,7 @@ MainWidget::MainWidget(QWidget *parent, std::unique_ptr<Window::Controller> cont
handleAudioUpdate(audioId); handleAudioUpdate(audioId);
} }
}); });
subscribe(_api->fullPeerUpdated(), [this](PeerData *peer) { subscribe(AuthSession::Current().api().fullPeerUpdated(), [this](PeerData *peer) {
emit peerUpdated(peer); emit peerUpdated(peer);
}); });
subscribe(Global::RefDialogsListFocused(), [this](bool) { subscribe(Global::RefDialogsListFocused(), [this](bool) {
@ -179,8 +178,6 @@ MainWidget::MainWidget(QWidget *parent, std::unique_ptr<Window::Controller> cont
_sideResizeArea->installEventFilter(this); _sideResizeArea->installEventFilter(this);
_api->init();
#ifndef TDESKTOP_DISABLE_AUTOUPDATE #ifndef TDESKTOP_DISABLE_AUTOUPDATE
Sandbox::startUpdateCheck(); Sandbox::startUpdateCheck();
#endif // !TDESKTOP_DISABLE_AUTOUPDATE #endif // !TDESKTOP_DISABLE_AUTOUPDATE
@ -480,14 +477,6 @@ void MainWidget::onFilesOrForwardDrop(const PeerId &peer, const QMimeData *data)
} }
} }
void MainWidget::rpcClear() {
_history->rpcClear();
_dialogs->rpcClear();
if (_overview) _overview->rpcClear();
if (_api) _api->rpcClear();
RPCSender::rpcClear();
}
bool MainWidget::isItemVisible(HistoryItem *item) { bool MainWidget::isItemVisible(HistoryItem *item) {
if (isHidden() || _a_show.animating()) { if (isHidden() || _a_show.animating()) {
return false; return false;
@ -1863,10 +1852,6 @@ ImagePtr MainWidget::newBackgroundThumb() {
return _background ? _background->thumb : ImagePtr(); return _background ? _background->thumb : ImagePtr();
} }
ApiWrap *MainWidget::api() {
return _api.get();
}
void MainWidget::messageDataReceived(ChannelData *channel, MsgId msgId) { void MainWidget::messageDataReceived(ChannelData *channel, MsgId msgId) {
_history->messageDataReceived(channel, msgId); _history->messageDataReceived(channel, msgId);
} }
@ -4549,7 +4534,7 @@ void MainWidget::feedUpdates(const MTPUpdates &updates, uint64 randomId) {
if (peerId) { if (peerId) {
if (auto item = App::histItemById(peerToChannel(peerId), d.vid.v)) { if (auto item = App::histItemById(peerToChannel(peerId), d.vid.v)) {
if (d.has_entities() && !mentionUsersLoaded(d.ventities)) { if (d.has_entities() && !mentionUsersLoaded(d.ventities)) {
api()->requestMessageData(item->history()->peer->asChannel(), item->id, ApiWrap::RequestMessageDataCallback()); AuthSession::Current().api().requestMessageData(item->history()->peer->asChannel(), item->id, ApiWrap::RequestMessageDataCallback());
} }
auto entities = d.has_entities() ? entitiesFromMTP(d.ventities.v) : EntitiesInText(); auto entities = d.has_entities() ? entitiesFromMTP(d.ventities.v) : EntitiesInText();
item->setText({ text, entities }); item->setText({ text, entities });

View File

@ -55,7 +55,6 @@ struct SectionSlideParams;
} // namespace Window } // namespace Window
class MainWindow; class MainWindow;
class ApiWrap;
class ConfirmBox; class ConfirmBox;
class DialogsWidget; class DialogsWidget;
class HistoryWidget; class HistoryWidget;
@ -334,7 +333,6 @@ public:
void checkChatBackground(); void checkChatBackground();
ImagePtr newBackgroundThumb(); ImagePtr newBackgroundThumb();
ApiWrap *api();
void messageDataReceived(ChannelData *channel, MsgId msgId); void messageDataReceived(ChannelData *channel, MsgId msgId);
void updateBotKeyboard(History *h); void updateBotKeyboard(History *h);
@ -374,8 +372,6 @@ public:
bool contentOverlapped(const QRect &globalRect); bool contentOverlapped(const QRect &globalRect);
void rpcClear() override;
bool isItemVisible(HistoryItem *item); bool isItemVisible(HistoryItem *item);
void documentLoadProgress(DocumentData *document); void documentLoadProgress(DocumentData *document);
@ -668,8 +664,6 @@ private:
std::unique_ptr<App::WallPaper> _background; std::unique_ptr<App::WallPaper> _background;
std::unique_ptr<ApiWrap> _api;
bool _resizingSide = false; bool _resizingSide = false;
int _resizingSideShift = 0; int _resizingSideShift = 0;

View File

@ -50,6 +50,8 @@ Messenger *Messenger::InstancePointer() {
} }
struct Messenger::Private { struct Messenger::Private {
UserId authSessionUserId = 0;
std::unique_ptr<AuthSessionData> authSessionData;
MTP::Instance::Config mtpConfig; MTP::Instance::Config mtpConfig;
MTP::AuthKeysList mtpKeysToDestroy; MTP::AuthKeysList mtpKeysToDestroy;
}; };
@ -159,12 +161,12 @@ Messenger::Messenger() : QObject()
} }
void Messenger::setMtpMainDcId(MTP::DcId mainDcId) { void Messenger::setMtpMainDcId(MTP::DcId mainDcId) {
t_assert(!_mtproto); Expects(!_mtproto);
_private->mtpConfig.mainDcId = mainDcId; _private->mtpConfig.mainDcId = mainDcId;
} }
void Messenger::setMtpKey(MTP::DcId dcId, const MTP::AuthKey::Data &keyData) { void Messenger::setMtpKey(MTP::DcId dcId, const MTP::AuthKey::Data &keyData) {
t_assert(!_mtproto); Expects(!_mtproto);
_private->mtpConfig.keys.push_back(std::make_shared<MTP::AuthKey>(MTP::AuthKey::Type::ReadFromFile, dcId, keyData)); _private->mtpConfig.keys.push_back(std::make_shared<MTP::AuthKey>(MTP::AuthKey::Type::ReadFromFile, dcId, keyData));
} }
@ -213,9 +215,27 @@ QByteArray Messenger::serializeMtpAuthorization() const {
return serialize(_private->mtpConfig.mainDcId, keys, keysToDestroy); return serialize(_private->mtpConfig.mainDcId, keys, keysToDestroy);
} }
void Messenger::setAuthSessionUserId(UserId userId) {
Expects(!authSession());
_private->authSessionUserId = userId;
}
void Messenger::setAuthSessionData(std::unique_ptr<AuthSessionData> data) {
Expects(!authSession());
_private->authSessionData = std::move(data);
}
AuthSessionData *Messenger::getAuthSessionData() {
if (_private->authSessionUserId) {
return _private->authSessionData.get();
} else if (AuthSession::Exists()) {
return &AuthSession::Current().data();
}
return nullptr;
}
void Messenger::setMtpAuthorization(const QByteArray &serialized) { void Messenger::setMtpAuthorization(const QByteArray &serialized) {
t_assert(!_mtproto); Expects(!_mtproto);
t_assert(!authSession());
auto readonly = serialized; auto readonly = serialized;
QBuffer buffer(&readonly); QBuffer buffer(&readonly);
@ -233,9 +253,7 @@ void Messenger::setMtpAuthorization(const QByteArray &serialized) {
return; return;
} }
if (userId) { setAuthSessionUserId(userId);
authSessionCreate(userId);
}
_private->mtpConfig.mainDcId = mainDcId; _private->mtpConfig.mainDcId = mainDcId;
auto readKeys = [&stream](auto &keys) { auto readKeys = [&stream](auto &keys) {
@ -261,7 +279,7 @@ void Messenger::setMtpAuthorization(const QByteArray &serialized) {
} }
void Messenger::startMtp() { void Messenger::startMtp() {
t_assert(!_mtproto); Expects(!_mtproto);
_mtproto = std::make_unique<MTP::Instance>(_dcOptions.get(), MTP::Instance::Mode::Normal, base::take(_private->mtpConfig)); _mtproto = std::make_unique<MTP::Instance>(_dcOptions.get(), MTP::Instance::Mode::Normal, base::take(_private->mtpConfig));
_private->mtpConfig.mainDcId = _mtproto->mainDcId(); _private->mtpConfig.mainDcId = _mtproto->mainDcId();
@ -279,6 +297,16 @@ void Messenger::startMtp() {
if (!_private->mtpKeysToDestroy.empty()) { if (!_private->mtpKeysToDestroy.empty()) {
destroyMtpKeys(base::take(_private->mtpKeysToDestroy)); destroyMtpKeys(base::take(_private->mtpKeysToDestroy));
} }
if (_private->authSessionUserId) {
authSessionCreate(base::take(_private->authSessionUserId));
}
if (_private->authSessionData) {
if (_authSession) {
_authSession->data().copyFrom(*_private->authSessionData);
}
_private->authSessionData.reset();
}
} }
void Messenger::destroyMtpKeys(MTP::AuthKeysList &&keys) { void Messenger::destroyMtpKeys(MTP::AuthKeysList &&keys) {
@ -583,12 +611,15 @@ void Messenger::onSwitchTestMode() {
} }
void Messenger::authSessionCreate(UserId userId) { void Messenger::authSessionCreate(UserId userId) {
Expects(_mtproto != nullptr);
_authSession = std::make_unique<AuthSession>(userId); _authSession = std::make_unique<AuthSession>(userId);
authSessionChanged().notify(); authSessionChanged().notify();
} }
void Messenger::authSessionDestroy() { void Messenger::authSessionDestroy() {
_authSession.reset(); _authSession.reset();
_private->authSessionData.reset();
_private->authSessionUserId = 0;
authSessionChanged().notify(); authSessionChanged().notify();
} }

View File

@ -28,6 +28,7 @@ class Instance;
} // namespace MTP } // namespace MTP
class AuthSession; class AuthSession;
class AuthSessionData;
class MainWidget; class MainWidget;
class FileUploader; class FileUploader;
class Translator; class Translator;
@ -57,10 +58,17 @@ public:
return _dcOptions.get(); return _dcOptions.get();
} }
// Set from legacy storage.
void setMtpMainDcId(MTP::DcId mainDcId); void setMtpMainDcId(MTP::DcId mainDcId);
void setMtpKey(MTP::DcId dcId, const MTP::AuthKey::Data &keyData); void setMtpKey(MTP::DcId dcId, const MTP::AuthKey::Data &keyData);
void setAuthSessionUserId(UserId userId);
void setAuthSessionData(std::unique_ptr<AuthSessionData> data);
AuthSessionData *getAuthSessionData();
// Serialization.
QByteArray serializeMtpAuthorization() const; QByteArray serializeMtpAuthorization() const;
void setMtpAuthorization(const QByteArray &serialized); void setMtpAuthorization(const QByteArray &serialized);
void startMtp(); void startMtp();
MTP::Instance *mtp() { MTP::Instance *mtp() {
return _mtproto.get(); return _mtproto.get();

View File

@ -837,14 +837,12 @@ public:
protected: protected:
void rpcInvalidate() { void rpcInvalidate() {
for (DoneHandlers::iterator i = _rpcDoneHandlers.begin(), e = _rpcDoneHandlers.end(); i != e; ++i) { for (auto handler : base::take(_rpcDoneHandlers)) {
(*i)->invalidate(); handler->invalidate();
} }
_rpcDoneHandlers.clear(); for (auto handler : base::take(_rpcFailHandlers)) {
for (FailHandlers::iterator i = _rpcFailHandlers.begin(), e = _rpcFailHandlers.end(); i != e; ++i) { handler->invalidate();
(*i)->invalidate();
} }
_rpcFailHandlers.clear();
} }
}; };

View File

@ -287,6 +287,10 @@ public:
SentRequestWrap request(mtpRequestId requestId) noexcept WARN_UNUSED_RESULT; SentRequestWrap request(mtpRequestId requestId) noexcept WARN_UNUSED_RESULT;
void requestSendDelayed() {
MTP::sendAnything();
}
private: private:
class RequestWrap { class RequestWrap {
public: public:

View File

@ -192,7 +192,7 @@ public:
} }
void stop() override { void stop() override {
rpcClear(); rpcInvalidate();
} }
~mtpFileLoader(); ~mtpFileLoader();

View File

@ -925,9 +925,7 @@ bool _readSetting(quint32 blockId, QDataStream &stream, int version, ReadSetting
DEBUG_LOG(("MTP Info: user found, dc %1, uid %2").arg(dcId).arg(userId)); DEBUG_LOG(("MTP Info: user found, dc %1, uid %2").arg(dcId).arg(userId));
Messenger::Instance().setMtpMainDcId(dcId); Messenger::Instance().setMtpMainDcId(dcId);
if (userId) { Messenger::Instance().setAuthSessionUserId(userId);
Messenger::Instance().authSessionCreate(UserId(userId));
}
} break; } break;
case dbiKey: { case dbiKey: {
@ -1709,7 +1707,7 @@ void _writeUserSettings() {
recentEmojiPreloadData.push_back(qMakePair(item.first->id(), item.second)); recentEmojiPreloadData.push_back(qMakePair(item.first->id(), item.second));
} }
} }
auto userDataInstance = AuthSessionDataCache ? AuthSessionDataCache.get() : AuthSession::Exists() ? &AuthSession::Current().data() : nullptr; auto userDataInstance = AuthSessionDataCache ? AuthSessionDataCache.get() : Messenger::Instance().getAuthSessionData();
auto userData = userDataInstance ? userDataInstance->serialize() : QByteArray(); auto userData = userDataInstance ? userDataInstance->serialize() : QByteArray();
uint32 size = 21 * (sizeof(quint32) + sizeof(qint32)); uint32 size = 21 * (sizeof(quint32) + sizeof(qint32));
@ -2065,12 +2063,7 @@ ReadMapState _readMap(const QByteArray &pass) {
_readUserSettings(); _readUserSettings();
_readMtpData(); _readMtpData();
if (AuthSessionDataCache) { Messenger::Instance().setAuthSessionData(std::move(AuthSessionDataCache));
if (AuthSession::Exists()) {
AuthSession::Current().data().copyFrom(*AuthSessionDataCache);
}
AuthSessionDataCache.reset();
}
LOG(("Map read time: %1").arg(getms() - ms)); LOG(("Map read time: %1").arg(getms() - ms));
if (_oldSettingsVersion < AppVersion) { if (_oldSettingsVersion < AppVersion) {