Provide user phone on auth session create.

We need the phone in the constructor to switch on the support mode.
This commit is contained in:
John Preston 2018-10-07 12:02:44 +03:00
parent e712a51833
commit b322f986a8
3 changed files with 25 additions and 2 deletions

View File

@ -463,14 +463,21 @@ void Messenger::startMtp() {
}
if (_private->authSessionUserId) {
QDataStream peekStream(_private->authSessionUserSerialized);
const auto phone = Serialize::peekUserPhone(
_private->authSessionUserStreamVersion,
peekStream);
const auto flags = MTPDuser::Flag::f_self | (phone.isEmpty()
? MTPDuser::Flag()
: MTPDuser::Flag::f_phone);
authSessionCreate(MTP_user(
MTP_flags(MTPDuser::Flag::f_self),
MTP_flags(flags),
MTP_int(base::take(_private->authSessionUserId)),
MTPlong(), // access_hash
MTPstring(), // first_name
MTPstring(), // last_name
MTPstring(), // username
MTPstring(), // phone
MTP_string(phone),
MTPUserProfilePhoto(),
MTPUserStatus(),
MTPint(), // bot_info_version

View File

@ -260,4 +260,19 @@ PeerData *readPeer(int streamAppVersion, QDataStream &stream) {
return result;
}
QString peekUserPhone(int streamAppVersion, QDataStream &stream) {
quint64 peerId = 0, photoId = 0;
stream >> peerId >> photoId;
if (!peerId || !peerIsUser(peerId)) {
return QString();
}
const auto photoLoc = readStorageImageLocation(
streamAppVersion,
stream);
QString first, last, phone;
stream >> first >> last >> phone;
return phone;
}
} // namespace Serialize

View File

@ -110,5 +110,6 @@ inline MTP::AuthKey::Data read<MTP::AuthKey::Data>(QDataStream &stream) {
uint32 peerSize(not_null<PeerData*> peer);
void writePeer(QDataStream &stream, PeerData *peer);
PeerData *readPeer(int streamAppVersion, QDataStream &stream);
QString peekUserPhone(int streamAppVersion, QDataStream &stream);
} // namespace Serialize