2019-11-13 14:12:04 +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
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "mtproto/core_types.h"
|
|
|
|
#include "mtproto/auth_key.h"
|
|
|
|
|
|
|
|
namespace MTP {
|
|
|
|
class Instance;
|
|
|
|
} // namespace MTP
|
|
|
|
|
|
|
|
namespace MTP::details {
|
|
|
|
|
2019-11-14 13:34:58 +00:00
|
|
|
enum class DcKeyState {
|
|
|
|
MaybeExisting,
|
|
|
|
DefinitelyDestroyed,
|
|
|
|
};
|
|
|
|
|
2019-11-13 14:12:04 +00:00
|
|
|
class DcKeyChecker final {
|
|
|
|
public:
|
|
|
|
DcKeyChecker(
|
|
|
|
not_null<Instance*> instance,
|
2019-11-14 13:34:58 +00:00
|
|
|
ShiftedDcId shiftedDcId,
|
|
|
|
const AuthKeyPtr &persistentKey);
|
|
|
|
|
|
|
|
[[nodiscard]] SecureRequest prepareRequest(
|
|
|
|
const AuthKeyPtr &temporaryKey,
|
|
|
|
uint64 sessionId);
|
|
|
|
bool handleResponse(MTPlong requestMsgId, const mtpBuffer &response);
|
2019-11-13 14:12:04 +00:00
|
|
|
|
|
|
|
private:
|
2019-11-14 13:34:58 +00:00
|
|
|
const not_null<Instance*> _instance;
|
|
|
|
const ShiftedDcId _shiftedDcId = 0;
|
|
|
|
const AuthKeyPtr _persistentKey;
|
|
|
|
mtpMsgId _requestMsgId = 0;
|
2019-11-13 14:12:04 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace MTP::details
|