2019-04-30 11:12:30 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
|
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
|
|
*/
|
|
|
|
#include "main/main_account.h"
|
|
|
|
|
|
|
|
#include "core/application.h"
|
2019-07-24 08:46:23 +00:00
|
|
|
#include "core/launcher.h"
|
|
|
|
#include "core/shortcuts.h"
|
|
|
|
#include "storage/serialize_common.h"
|
|
|
|
#include "storage/localstorage.h"
|
|
|
|
#include "data/data_session.h"
|
|
|
|
#include "data/data_user.h"
|
|
|
|
#include "window/window_controller.h"
|
|
|
|
#include "media/audio/media_audio.h"
|
|
|
|
#include "mainwidget.h"
|
|
|
|
#include "observer_peer.h"
|
2019-11-27 09:45:23 +00:00
|
|
|
#include "main/main_app_config.h"
|
2019-07-24 11:45:24 +00:00
|
|
|
#include "main/main_session.h"
|
2019-09-13 06:06:02 +00:00
|
|
|
#include "facades.h"
|
2019-04-30 11:12:30 +00:00
|
|
|
|
|
|
|
namespace Main {
|
|
|
|
|
|
|
|
Account::Account(const QString &dataName) {
|
2019-07-24 08:46:23 +00:00
|
|
|
watchProxyChanges();
|
|
|
|
watchSessionChanges();
|
2019-11-27 09:45:23 +00:00
|
|
|
_appConfig = std::make_unique<AppConfig>(this);
|
2019-07-24 08:46:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Account::~Account() = default;
|
|
|
|
|
|
|
|
void Account::watchProxyChanges() {
|
|
|
|
using ProxyChange = Core::Application::ProxyChange;
|
|
|
|
|
|
|
|
Core::App().proxyChanges(
|
|
|
|
) | rpl::start_with_next([=](const ProxyChange &change) {
|
2019-11-13 14:12:04 +00:00
|
|
|
const auto key = [&](const MTP::ProxyData &proxy) {
|
|
|
|
return (proxy.type == MTP::ProxyData::Type::Mtproto)
|
2019-07-24 08:46:23 +00:00
|
|
|
? std::make_pair(proxy.host, proxy.port)
|
|
|
|
: std::make_pair(QString(), uint32(0));
|
|
|
|
};
|
|
|
|
if (_mtp) {
|
|
|
|
_mtp->restart();
|
|
|
|
if (key(change.was) != key(change.now)) {
|
|
|
|
_mtp->reInitConnection(_mtp->mainDcId());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (_mtpForKeysDestroy) {
|
|
|
|
_mtpForKeysDestroy->restart();
|
|
|
|
}
|
|
|
|
}, _lifetime);
|
2019-04-30 11:12:30 +00:00
|
|
|
}
|
|
|
|
|
2019-07-24 08:46:23 +00:00
|
|
|
void Account::watchSessionChanges() {
|
|
|
|
sessionChanges(
|
|
|
|
) | rpl::start_with_next([=] {
|
|
|
|
crl::on_main(this, [=] {
|
|
|
|
const auto phone = sessionExists()
|
|
|
|
? session().user()->phone()
|
|
|
|
: QString();
|
|
|
|
const auto support = sessionExists() && session().supportMode();
|
|
|
|
if (cLoggedPhoneNumber() != phone) {
|
|
|
|
cSetLoggedPhoneNumber(phone);
|
|
|
|
if (_mtp) {
|
|
|
|
_mtp->setUserPhone(phone);
|
|
|
|
}
|
|
|
|
Local::writeSettings();
|
|
|
|
}
|
|
|
|
if (_mtp) {
|
|
|
|
_mtp->requestConfig();
|
|
|
|
}
|
|
|
|
Shortcuts::ToggleSupportShortcuts(support);
|
|
|
|
Platform::SetApplicationIcon(Window::CreateIcon(this));
|
|
|
|
});
|
|
|
|
}, _lifetime);
|
2019-06-05 20:41:51 +00:00
|
|
|
}
|
|
|
|
|
2019-06-06 09:37:12 +00:00
|
|
|
void Account::createSession(const MTPUser &user) {
|
2019-10-02 10:46:02 +00:00
|
|
|
createSession(user, QByteArray(), 0, Settings());
|
|
|
|
}
|
|
|
|
|
|
|
|
void Account::createSession(
|
|
|
|
UserId id,
|
|
|
|
QByteArray serialized,
|
|
|
|
int streamVersion,
|
|
|
|
Settings &&settings) {
|
|
|
|
DEBUG_LOG(("sessionUserSerialized.size: %1").arg(serialized.size()));
|
|
|
|
QDataStream peekStream(serialized);
|
|
|
|
const auto phone = Serialize::peekUserPhone(streamVersion, peekStream);
|
|
|
|
const auto flags = MTPDuser::Flag::f_self | (phone.isEmpty()
|
|
|
|
? MTPDuser::Flag()
|
|
|
|
: MTPDuser::Flag::f_phone);
|
|
|
|
createSession(
|
|
|
|
MTP_user(
|
|
|
|
MTP_flags(flags),
|
|
|
|
MTP_int(base::take(_sessionUserId)),
|
|
|
|
MTPlong(), // access_hash
|
|
|
|
MTPstring(), // first_name
|
|
|
|
MTPstring(), // last_name
|
|
|
|
MTPstring(), // username
|
|
|
|
MTP_string(phone),
|
|
|
|
MTPUserProfilePhoto(),
|
|
|
|
MTPUserStatus(),
|
|
|
|
MTPint(), // bot_info_version
|
|
|
|
MTPVector<MTPRestrictionReason>(),
|
|
|
|
MTPstring(), // bot_inline_placeholder
|
|
|
|
MTPstring()), // lang_code
|
|
|
|
serialized,
|
|
|
|
streamVersion,
|
|
|
|
std::move(settings));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Account::createSession(
|
|
|
|
const MTPUser &user,
|
|
|
|
QByteArray serialized,
|
|
|
|
int streamVersion,
|
|
|
|
Settings &&settings) {
|
2019-07-24 08:46:23 +00:00
|
|
|
Expects(_mtp != nullptr);
|
2019-06-06 09:37:12 +00:00
|
|
|
Expects(_session == nullptr);
|
|
|
|
Expects(_sessionValue.current() == nullptr);
|
|
|
|
|
2019-10-02 10:46:02 +00:00
|
|
|
_session = std::make_unique<Session>(this, user, std::move(settings));
|
2019-06-06 09:37:12 +00:00
|
|
|
_sessionValue = _session.get();
|
2019-10-02 10:46:02 +00:00
|
|
|
|
|
|
|
if (!serialized.isEmpty()) {
|
|
|
|
// For now it depends on Auth() which depends on _sessionValue.
|
|
|
|
Local::readSelf(serialized, streamVersion);
|
|
|
|
}
|
2019-06-06 09:37:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Account::destroySession() {
|
2019-07-24 11:45:24 +00:00
|
|
|
_storedSettings.reset();
|
|
|
|
_sessionUserId = 0;
|
|
|
|
_sessionUserSerialized = {};
|
2019-07-24 08:46:23 +00:00
|
|
|
if (!sessionExists()) {
|
|
|
|
return;
|
|
|
|
}
|
2019-08-09 19:33:05 +00:00
|
|
|
session().data().clear();
|
2019-07-24 08:46:23 +00:00
|
|
|
|
2019-06-06 09:37:12 +00:00
|
|
|
_sessionValue = nullptr;
|
|
|
|
_session = nullptr;
|
2019-07-24 08:46:23 +00:00
|
|
|
|
|
|
|
Notify::unreadCounterUpdated();
|
2019-06-06 09:37:12 +00:00
|
|
|
}
|
|
|
|
|
2019-04-30 11:12:30 +00:00
|
|
|
bool Account::sessionExists() const {
|
2019-06-06 09:37:12 +00:00
|
|
|
return (_sessionValue.current() != nullptr);
|
2019-04-30 11:12:30 +00:00
|
|
|
}
|
|
|
|
|
2019-07-24 11:45:24 +00:00
|
|
|
Session &Account::session() {
|
2019-04-30 11:12:30 +00:00
|
|
|
Expects(sessionExists());
|
|
|
|
|
2019-06-06 09:37:12 +00:00
|
|
|
return *_sessionValue.current();
|
2019-04-30 11:12:30 +00:00
|
|
|
}
|
|
|
|
|
2019-07-24 11:45:24 +00:00
|
|
|
const Session &Account::session() const {
|
2019-07-24 08:46:23 +00:00
|
|
|
Expects(sessionExists());
|
|
|
|
|
|
|
|
return *_sessionValue.current();
|
|
|
|
}
|
|
|
|
|
2019-07-24 11:45:24 +00:00
|
|
|
rpl::producer<Session*> Account::sessionValue() const {
|
2019-06-06 09:37:12 +00:00
|
|
|
return _sessionValue.value();
|
2019-04-30 11:12:30 +00:00
|
|
|
}
|
|
|
|
|
2019-07-24 11:45:24 +00:00
|
|
|
rpl::producer<Session*> Account::sessionChanges() const {
|
2019-06-06 09:37:12 +00:00
|
|
|
return _sessionValue.changes();
|
2019-06-05 20:41:51 +00:00
|
|
|
}
|
|
|
|
|
2019-07-24 08:46:23 +00:00
|
|
|
rpl::producer<MTP::Instance*> Account::mtpValue() const {
|
|
|
|
return _mtpValue.value();
|
|
|
|
}
|
|
|
|
|
|
|
|
rpl::producer<MTP::Instance*> Account::mtpChanges() const {
|
|
|
|
return _mtpValue.changes();
|
|
|
|
}
|
|
|
|
|
2019-11-22 09:40:52 +00:00
|
|
|
rpl::producer<MTPUpdates> Account::mtpUpdates() const {
|
|
|
|
return _mtpUpdates.events();
|
|
|
|
}
|
|
|
|
|
|
|
|
rpl::producer<> Account::mtpNewSessionCreated() const {
|
|
|
|
return _mtpNewSessionCreated.events();
|
|
|
|
}
|
|
|
|
|
2019-07-24 08:46:23 +00:00
|
|
|
void Account::setMtpMainDcId(MTP::DcId mainDcId) {
|
|
|
|
Expects(!_mtp);
|
|
|
|
|
|
|
|
_mtpConfig.mainDcId = mainDcId;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Account::setMtpKey(MTP::DcId dcId, const MTP::AuthKey::Data &keyData) {
|
|
|
|
Expects(!_mtp);
|
|
|
|
|
|
|
|
_mtpConfig.keys.push_back(std::make_shared<MTP::AuthKey>(
|
|
|
|
MTP::AuthKey::Type::ReadFromFile,
|
|
|
|
dcId,
|
|
|
|
keyData));
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray Account::serializeMtpAuthorization() const {
|
|
|
|
const auto serialize = [&](
|
|
|
|
MTP::DcId mainDcId,
|
|
|
|
const MTP::AuthKeysList &keys,
|
|
|
|
const MTP::AuthKeysList &keysToDestroy) {
|
|
|
|
const auto keysSize = [](auto &list) {
|
|
|
|
const auto keyDataSize = MTP::AuthKey::Data().size();
|
|
|
|
return sizeof(qint32)
|
|
|
|
+ list.size() * (sizeof(qint32) + keyDataSize);
|
|
|
|
};
|
|
|
|
const auto writeKeys = [](
|
|
|
|
QDataStream &stream,
|
|
|
|
const MTP::AuthKeysList &keys) {
|
|
|
|
stream << qint32(keys.size());
|
|
|
|
for (const auto &key : keys) {
|
|
|
|
stream << qint32(key->dcId());
|
|
|
|
key->write(stream);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
auto result = QByteArray();
|
|
|
|
auto size = sizeof(qint32) + sizeof(qint32); // userId + mainDcId
|
|
|
|
size += keysSize(keys) + keysSize(keysToDestroy);
|
|
|
|
result.reserve(size);
|
|
|
|
{
|
|
|
|
QDataStream stream(&result, QIODevice::WriteOnly);
|
|
|
|
stream.setVersion(QDataStream::Qt_5_1);
|
|
|
|
|
|
|
|
const auto currentUserId = sessionExists()
|
|
|
|
? session().userId()
|
|
|
|
: 0;
|
|
|
|
stream << qint32(currentUserId) << qint32(mainDcId);
|
|
|
|
writeKeys(stream, keys);
|
|
|
|
writeKeys(stream, keysToDestroy);
|
|
|
|
|
|
|
|
DEBUG_LOG(("MTP Info: Keys written, userId: %1, dcId: %2").arg(currentUserId).arg(mainDcId));
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
};
|
|
|
|
if (_mtp) {
|
|
|
|
const auto keys = _mtp->getKeysForWrite();
|
|
|
|
const auto keysToDestroy = _mtpForKeysDestroy
|
|
|
|
? _mtpForKeysDestroy->getKeysForWrite()
|
|
|
|
: MTP::AuthKeysList();
|
|
|
|
return serialize(_mtp->mainDcId(), keys, keysToDestroy);
|
|
|
|
}
|
|
|
|
const auto &keys = _mtpConfig.keys;
|
|
|
|
const auto &keysToDestroy = _mtpKeysToDestroy;
|
|
|
|
return serialize(_mtpConfig.mainDcId, keys, keysToDestroy);
|
|
|
|
}
|
|
|
|
|
2019-07-24 11:45:24 +00:00
|
|
|
void Account::setSessionUserId(UserId userId) {
|
2019-07-24 08:46:23 +00:00
|
|
|
Expects(!sessionExists());
|
|
|
|
|
2019-07-24 11:45:24 +00:00
|
|
|
_sessionUserId = userId;
|
2019-07-24 08:46:23 +00:00
|
|
|
}
|
|
|
|
|
2019-07-24 11:45:24 +00:00
|
|
|
void Account::setSessionFromStorage(
|
|
|
|
std::unique_ptr<Settings> data,
|
2019-07-24 08:46:23 +00:00
|
|
|
QByteArray &&selfSerialized,
|
|
|
|
int32 selfStreamVersion) {
|
|
|
|
Expects(!sessionExists());
|
|
|
|
|
2019-07-24 11:45:24 +00:00
|
|
|
DEBUG_LOG(("sessionUserSerialized set: %1"
|
2019-07-24 08:46:23 +00:00
|
|
|
).arg(selfSerialized.size()));
|
|
|
|
|
2019-07-24 11:45:24 +00:00
|
|
|
_storedSettings = std::move(data);
|
|
|
|
_sessionUserSerialized = std::move(selfSerialized);
|
|
|
|
_sessionUserStreamVersion = selfStreamVersion;
|
2019-07-24 08:46:23 +00:00
|
|
|
}
|
|
|
|
|
2019-07-24 11:45:24 +00:00
|
|
|
Settings *Account::getSessionSettings() {
|
|
|
|
if (_sessionUserId) {
|
|
|
|
return _storedSettings ? _storedSettings.get() : nullptr;
|
2019-07-24 08:46:23 +00:00
|
|
|
} else if (sessionExists()) {
|
|
|
|
return &session().settings();
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Account::setMtpAuthorization(const QByteArray &serialized) {
|
|
|
|
Expects(!_mtp);
|
|
|
|
|
|
|
|
QDataStream stream(serialized);
|
|
|
|
stream.setVersion(QDataStream::Qt_5_1);
|
|
|
|
|
|
|
|
auto userId = Serialize::read<qint32>(stream);
|
|
|
|
auto mainDcId = Serialize::read<qint32>(stream);
|
|
|
|
if (stream.status() != QDataStream::Ok) {
|
|
|
|
LOG(("MTP Error: "
|
|
|
|
"Could not read main fields from mtp authorization."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-07-24 11:45:24 +00:00
|
|
|
setSessionUserId(userId);
|
2019-07-24 08:46:23 +00:00
|
|
|
_mtpConfig.mainDcId = mainDcId;
|
|
|
|
|
|
|
|
const auto readKeys = [&stream](auto &keys) {
|
|
|
|
const auto count = Serialize::read<qint32>(stream);
|
|
|
|
if (stream.status() != QDataStream::Ok) {
|
|
|
|
LOG(("MTP Error: "
|
|
|
|
"Could not read keys count from mtp authorization."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
keys.reserve(count);
|
|
|
|
for (auto i = 0; i != count; ++i) {
|
|
|
|
const auto dcId = Serialize::read<qint32>(stream);
|
|
|
|
const auto keyData = Serialize::read<MTP::AuthKey::Data>(stream);
|
|
|
|
if (stream.status() != QDataStream::Ok) {
|
|
|
|
LOG(("MTP Error: "
|
|
|
|
"Could not read key from mtp authorization."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
keys.push_back(std::make_shared<MTP::AuthKey>(MTP::AuthKey::Type::ReadFromFile, dcId, keyData));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
readKeys(_mtpConfig.keys);
|
|
|
|
readKeys(_mtpKeysToDestroy);
|
|
|
|
LOG(("MTP Info: "
|
|
|
|
"read keys, current: %1, to destroy: %2"
|
|
|
|
).arg(_mtpConfig.keys.size()
|
|
|
|
).arg(_mtpKeysToDestroy.size()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Account::startMtp() {
|
|
|
|
Expects(!_mtp);
|
|
|
|
|
|
|
|
auto config = base::take(_mtpConfig);
|
|
|
|
config.deviceModel = Core::App().launcher()->deviceModel();
|
|
|
|
config.systemVersion = Core::App().launcher()->systemVersion();
|
|
|
|
_mtp = std::make_unique<MTP::Instance>(
|
|
|
|
Core::App().dcOptions(),
|
|
|
|
MTP::Instance::Mode::Normal,
|
|
|
|
std::move(config));
|
|
|
|
_mtp->setUserPhone(cLoggedPhoneNumber());
|
|
|
|
_mtpConfig.mainDcId = _mtp->mainDcId();
|
|
|
|
|
2019-11-22 09:40:52 +00:00
|
|
|
_mtp->setUpdatesHandler(::rpcDone([=](
|
|
|
|
const mtpPrime *from,
|
|
|
|
const mtpPrime *end) {
|
2019-12-02 09:16:15 +00:00
|
|
|
return checkForUpdates(from, end)
|
|
|
|
|| checkForNewSession(from, end);
|
2019-11-22 09:40:52 +00:00
|
|
|
}));
|
|
|
|
_mtp->setGlobalFailHandler(::rpcFail([=](const RPCError &error) {
|
|
|
|
if (sessionExists()) {
|
|
|
|
crl::on_main(&session(), [=] { logOut(); });
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}));
|
2019-07-24 08:46:23 +00:00
|
|
|
_mtp->setStateChangedHandler([](MTP::ShiftedDcId dc, int32 state) {
|
|
|
|
if (dc == MTP::maindc()) {
|
|
|
|
Global::RefConnectionTypeChanged().notify();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
_mtp->setSessionResetHandler([](MTP::ShiftedDcId shiftedDcId) {
|
|
|
|
if (App::main() && shiftedDcId == MTP::maindc()) {
|
|
|
|
App::main()->getDifference();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!_mtpKeysToDestroy.empty()) {
|
|
|
|
destroyMtpKeys(base::take(_mtpKeysToDestroy));
|
|
|
|
}
|
|
|
|
|
2019-07-24 11:45:24 +00:00
|
|
|
if (_sessionUserId) {
|
2019-10-02 10:46:02 +00:00
|
|
|
createSession(
|
|
|
|
_sessionUserId,
|
2019-07-24 11:45:24 +00:00
|
|
|
base::take(_sessionUserSerialized),
|
2019-10-02 10:46:02 +00:00
|
|
|
base::take(_sessionUserStreamVersion),
|
|
|
|
_storedSettings ? std::move(*_storedSettings) : Settings());
|
2019-07-24 08:46:23 +00:00
|
|
|
}
|
2019-10-02 10:46:02 +00:00
|
|
|
_storedSettings = nullptr;
|
2019-07-24 08:46:23 +00:00
|
|
|
|
|
|
|
if (sessionExists()) {
|
|
|
|
// Skip all pending self updates so that we won't Local::writeSelf.
|
|
|
|
Notify::peerUpdatedSendDelayed();
|
|
|
|
}
|
|
|
|
|
|
|
|
_mtpValue = _mtp.get();
|
|
|
|
}
|
|
|
|
|
2019-12-02 09:16:15 +00:00
|
|
|
bool Account::checkForUpdates(const mtpPrime *from, const mtpPrime *end) {
|
|
|
|
auto updates = MTPUpdates();
|
|
|
|
if (!updates.read(from, end)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
_mtpUpdates.fire(std::move(updates));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Account::checkForNewSession(const mtpPrime *from, const mtpPrime *end) {
|
|
|
|
auto newSession = MTPNewSession();
|
|
|
|
if (!newSession.read(from, end)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
_mtpNewSessionCreated.fire({});
|
|
|
|
return true;
|
|
|
|
}
|
2019-07-24 08:46:23 +00:00
|
|
|
|
|
|
|
void Account::logOut() {
|
2019-11-20 13:33:45 +00:00
|
|
|
if (_loggingOut) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
_loggingOut = true;
|
2019-07-24 08:46:23 +00:00
|
|
|
if (_mtp) {
|
2019-11-20 13:33:45 +00:00
|
|
|
_mtp->logout([=] { loggedOut(); });
|
2019-07-24 08:46:23 +00:00
|
|
|
} else {
|
|
|
|
// We log out because we've forgotten passcode.
|
|
|
|
loggedOut();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Account::forcedLogOut() {
|
|
|
|
if (sessionExists()) {
|
|
|
|
resetAuthorizationKeys();
|
|
|
|
loggedOut();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Account::loggedOut() {
|
2019-11-20 13:33:45 +00:00
|
|
|
_loggingOut = false;
|
2019-07-24 08:46:23 +00:00
|
|
|
if (Global::LocalPasscode()) {
|
|
|
|
Global::SetLocalPasscode(false);
|
|
|
|
Global::RefLocalPasscodeChanged().notify();
|
|
|
|
}
|
|
|
|
Core::App().unlockPasscode();
|
|
|
|
Core::App().unlockTerms();
|
|
|
|
Media::Player::mixer()->stopAndClear();
|
|
|
|
Global::SetVoiceMsgPlaybackDoubled(false);
|
|
|
|
if (const auto window = Core::App().activeWindow()) {
|
|
|
|
window->tempDirDelete(Local::ClearManagerAll);
|
|
|
|
window->setupIntro();
|
|
|
|
}
|
2019-08-09 19:33:05 +00:00
|
|
|
if (sessionExists()) {
|
|
|
|
session().data().clearLocalStorage();
|
|
|
|
}
|
2019-07-24 08:46:23 +00:00
|
|
|
destroySession();
|
|
|
|
Local::reset();
|
|
|
|
|
|
|
|
cSetOtherOnline(0);
|
|
|
|
Images::ClearRemote();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Account::destroyMtpKeys(MTP::AuthKeysList &&keys) {
|
|
|
|
if (keys.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (_mtpForKeysDestroy) {
|
|
|
|
_mtpForKeysDestroy->addKeysForDestroy(std::move(keys));
|
|
|
|
Local::writeMtpData();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto destroyConfig = MTP::Instance::Config();
|
|
|
|
destroyConfig.mainDcId = MTP::Instance::Config::kNoneMainDc;
|
|
|
|
destroyConfig.keys = std::move(keys);
|
|
|
|
destroyConfig.deviceModel = Core::App().launcher()->deviceModel();
|
|
|
|
destroyConfig.systemVersion = Core::App().launcher()->systemVersion();
|
|
|
|
_mtpForKeysDestroy = std::make_unique<MTP::Instance>(
|
|
|
|
Core::App().dcOptions(),
|
|
|
|
MTP::Instance::Mode::KeysDestroyer,
|
|
|
|
std::move(destroyConfig));
|
2019-11-27 14:22:22 +00:00
|
|
|
_mtpForKeysDestroy->allKeysDestroyed(
|
|
|
|
) | rpl::start_with_next([=] {
|
|
|
|
LOG(("MTP Info: all keys scheduled for destroy are destroyed."));
|
|
|
|
crl::on_main(this, [=] {
|
|
|
|
_mtpForKeysDestroy = nullptr;
|
|
|
|
Local::writeMtpData();
|
|
|
|
});
|
|
|
|
}, _lifetime);
|
2019-07-24 08:46:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Account::suggestMainDcId(MTP::DcId mainDcId) {
|
|
|
|
Expects(_mtp != nullptr);
|
|
|
|
|
|
|
|
_mtp->suggestMainDcId(mainDcId);
|
|
|
|
if (_mtpConfig.mainDcId != MTP::Instance::Config::kNotSetMainDc) {
|
|
|
|
_mtpConfig.mainDcId = mainDcId;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Account::destroyStaleAuthorizationKeys() {
|
|
|
|
Expects(_mtp != nullptr);
|
|
|
|
|
|
|
|
for (const auto &key : _mtp->getKeysForWrite()) {
|
|
|
|
// Disable this for now.
|
|
|
|
if (key->type() == MTP::AuthKey::Type::ReadFromFile) {
|
|
|
|
_mtpKeysToDestroy = _mtp->getKeysForWrite();
|
|
|
|
LOG(("MTP Info: destroying stale keys, count: %1"
|
|
|
|
).arg(_mtpKeysToDestroy.size()));
|
|
|
|
resetAuthorizationKeys();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Account::configUpdated() {
|
|
|
|
_configUpdates.fire({});
|
|
|
|
}
|
|
|
|
|
|
|
|
rpl::producer<> Account::configUpdates() const {
|
|
|
|
return _configUpdates.events();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Account::resetAuthorizationKeys() {
|
2019-11-27 08:02:56 +00:00
|
|
|
_mtpValue = nullptr;
|
2019-07-24 08:46:23 +00:00
|
|
|
_mtp = nullptr;
|
|
|
|
startMtp();
|
|
|
|
Local::writeMtpData();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Account::clearMtp() {
|
2019-11-27 08:02:56 +00:00
|
|
|
_mtpValue = nullptr;
|
2019-07-24 08:46:23 +00:00
|
|
|
_mtp = nullptr;
|
|
|
|
_mtpForKeysDestroy = nullptr;
|
2019-04-30 11:12:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Main
|