mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-04-01 23:00:58 +00:00
Replace TLHelp helpers with .match()
This commit is contained in:
parent
9a60e744d3
commit
dba9ca2084
@ -21,10 +21,8 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||||||
#include "data/data_chat.h"
|
#include "data/data_chat.h"
|
||||||
#include "data/data_user.h"
|
#include "data/data_user.h"
|
||||||
#include "dialogs/dialogs_key.h"
|
#include "dialogs/dialogs_key.h"
|
||||||
#include "core/tl_help.h"
|
|
||||||
#include "core/core_cloud_password.h"
|
#include "core/core_cloud_password.h"
|
||||||
#include "base/openssl_help.h"
|
#include "base/openssl_help.h"
|
||||||
#include "base/overload.h"
|
|
||||||
#include "observer_peer.h"
|
#include "observer_peer.h"
|
||||||
#include "lang/lang_keys.h"
|
#include "lang/lang_keys.h"
|
||||||
#include "application.h"
|
#include "application.h"
|
||||||
@ -1377,16 +1375,15 @@ void ApiWrap::requestAdmins(not_null<ChannelData*> channel) {
|
|||||||
MTP_int(participantsHash)
|
MTP_int(participantsHash)
|
||||||
)).done([this, channel](const MTPchannels_ChannelParticipants &result) {
|
)).done([this, channel](const MTPchannels_ChannelParticipants &result) {
|
||||||
_adminsRequests.remove(channel);
|
_adminsRequests.remove(channel);
|
||||||
TLHelp::VisitChannelParticipants(result, base::overload([&](
|
result.match([&](const MTPDchannels_channelParticipants &data) {
|
||||||
const MTPDchannels_channelParticipants &data) {
|
|
||||||
App::feedUsers(data.vusers);
|
App::feedUsers(data.vusers);
|
||||||
applyAdminsList(
|
applyAdminsList(
|
||||||
channel,
|
channel,
|
||||||
data.vcount.v,
|
data.vcount.v,
|
||||||
data.vparticipants.v);
|
data.vparticipants.v);
|
||||||
}, [&](mtpTypeId) {
|
}, [&](const MTPDchannels_channelParticipantsNotModified &) {
|
||||||
LOG(("API Error: channels.channelParticipantsNotModified received!"));
|
LOG(("API Error: channels.channelParticipantsNotModified received!"));
|
||||||
}));
|
});
|
||||||
}).fail([this, channel](const RPCError &error) {
|
}).fail([this, channel](const RPCError &error) {
|
||||||
_adminsRequests.remove(channel);
|
_adminsRequests.remove(channel);
|
||||||
}).send();
|
}).send();
|
||||||
@ -1409,7 +1406,9 @@ void ApiWrap::applyLastParticipantsList(
|
|||||||
MTP_flags(0),
|
MTP_flags(0),
|
||||||
MTP_int(0));
|
MTP_int(0));
|
||||||
for (const auto &p : list) {
|
for (const auto &p : list) {
|
||||||
const auto userId = TLHelp::ReadChannelParticipantUserId(p);
|
const auto userId = p.match([](const auto &data) {
|
||||||
|
return data.vuser_id.v;
|
||||||
|
});
|
||||||
const auto adminCanEdit = (p.type() == mtpc_channelParticipantAdmin)
|
const auto adminCanEdit = (p.type() == mtpc_channelParticipantAdmin)
|
||||||
? p.c_channelParticipantAdmin().is_can_edit()
|
? p.c_channelParticipantAdmin().is_can_edit()
|
||||||
: false;
|
: false;
|
||||||
@ -1483,7 +1482,9 @@ void ApiWrap::applyBotsList(
|
|||||||
auto botStatus = channel->mgInfo->botStatus;
|
auto botStatus = channel->mgInfo->botStatus;
|
||||||
auto keyboardBotFound = !history || !history->lastKeyboardFrom;
|
auto keyboardBotFound = !history || !history->lastKeyboardFrom;
|
||||||
for (const auto &p : list) {
|
for (const auto &p : list) {
|
||||||
const auto userId = TLHelp::ReadChannelParticipantUserId(p);
|
const auto userId = p.match([](const auto &data) {
|
||||||
|
return data.vuser_id.v;
|
||||||
|
});
|
||||||
if (!userId) {
|
if (!userId) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -1518,7 +1519,7 @@ void ApiWrap::applyAdminsList(
|
|||||||
auto admins = ranges::make_iterator_range(
|
auto admins = ranges::make_iterator_range(
|
||||||
list.begin(), list.end()
|
list.begin(), list.end()
|
||||||
) | ranges::view::transform([](const MTPChannelParticipant &p) {
|
) | ranges::view::transform([](const MTPChannelParticipant &p) {
|
||||||
return TLHelp::ReadChannelParticipantUserId(p);
|
return p.match([](const auto &data) { return data.vuser_id.v; });
|
||||||
});
|
});
|
||||||
auto adding = base::flat_set<UserId>{ admins.begin(), admins.end() };
|
auto adding = base::flat_set<UserId>{ admins.begin(), admins.end() };
|
||||||
if (channel->mgInfo->creator) {
|
if (channel->mgInfo->creator) {
|
||||||
@ -3224,8 +3225,7 @@ void ApiWrap::parseChannelParticipants(
|
|||||||
int availableCount,
|
int availableCount,
|
||||||
const QVector<MTPChannelParticipant> &list)> callbackList,
|
const QVector<MTPChannelParticipant> &list)> callbackList,
|
||||||
Fn<void()> callbackNotModified) {
|
Fn<void()> callbackNotModified) {
|
||||||
TLHelp::VisitChannelParticipants(result, base::overload([&](
|
result.match([&](const MTPDchannels_channelParticipants &data) {
|
||||||
const MTPDchannels_channelParticipants &data) {
|
|
||||||
App::feedUsers(data.vusers);
|
App::feedUsers(data.vusers);
|
||||||
if (channel->mgInfo) {
|
if (channel->mgInfo) {
|
||||||
refreshChannelAdmins(channel, data.vparticipants.v);
|
refreshChannelAdmins(channel, data.vparticipants.v);
|
||||||
@ -3233,21 +3233,24 @@ void ApiWrap::parseChannelParticipants(
|
|||||||
if (callbackList) {
|
if (callbackList) {
|
||||||
callbackList(data.vcount.v, data.vparticipants.v);
|
callbackList(data.vcount.v, data.vparticipants.v);
|
||||||
}
|
}
|
||||||
}, [&](mtpTypeId) {
|
}, [&](const MTPDchannels_channelParticipantsNotModified &) {
|
||||||
if (callbackNotModified) {
|
if (callbackNotModified) {
|
||||||
callbackNotModified();
|
callbackNotModified();
|
||||||
} else {
|
} else {
|
||||||
LOG(("API Error: channels.channelParticipantsNotModified received!"));
|
LOG(("API Error: "
|
||||||
|
"channels.channelParticipantsNotModified received!"));
|
||||||
}
|
}
|
||||||
}));
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
void ApiWrap::refreshChannelAdmins(
|
void ApiWrap::refreshChannelAdmins(
|
||||||
not_null<ChannelData*> channel,
|
not_null<ChannelData*> channel,
|
||||||
const QVector<MTPChannelParticipant> &participants) {
|
const QVector<MTPChannelParticipant> &participants) {
|
||||||
Data::ChannelAdminChanges changes(channel);
|
Data::ChannelAdminChanges changes(channel);
|
||||||
for (auto &p : participants) {
|
for (const auto &p : participants) {
|
||||||
const auto userId = TLHelp::ReadChannelParticipantUserId(p);
|
const auto userId = p.match([](const auto &data) {
|
||||||
|
return data.vuser_id.v;
|
||||||
|
});
|
||||||
const auto isAdmin = (p.type() == mtpc_channelParticipantAdmin)
|
const auto isAdmin = (p.type() == mtpc_channelParticipantAdmin)
|
||||||
|| (p.type() == mtpc_channelParticipantCreator);
|
|| (p.type() == mtpc_channelParticipantCreator);
|
||||||
changes.feed(userId, isAdmin);
|
changes.feed(userId, isAdmin);
|
||||||
|
@ -15,8 +15,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||||||
#include "data/data_user.h"
|
#include "data/data_user.h"
|
||||||
#include "history/history.h"
|
#include "history/history.h"
|
||||||
#include "dialogs/dialogs_indexed_list.h"
|
#include "dialogs/dialogs_indexed_list.h"
|
||||||
#include "core/tl_help.h"
|
|
||||||
#include "base/overload.h"
|
|
||||||
#include "auth_session.h"
|
#include "auth_session.h"
|
||||||
#include "mainwidget.h"
|
#include "mainwidget.h"
|
||||||
#include "apiwrap.h"
|
#include "apiwrap.h"
|
||||||
@ -874,8 +872,7 @@ void AddSpecialBoxSearchController::searchParticipantsDone(
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_requestId = 0;
|
_requestId = 0;
|
||||||
TLHelp::VisitChannelParticipants(result, base::overload([&](
|
result.match([&](const MTPDchannels_channelParticipants &data) {
|
||||||
const MTPDchannels_channelParticipants &data) {
|
|
||||||
auto &list = data.vparticipants.v;
|
auto &list = data.vparticipants.v;
|
||||||
if (list.size() < requestedCount) {
|
if (list.size() < requestedCount) {
|
||||||
// We want cache to have full information about a query with small
|
// We want cache to have full information about a query with small
|
||||||
@ -893,9 +890,9 @@ void AddSpecialBoxSearchController::searchParticipantsDone(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
_offset += list.size();
|
_offset += list.size();
|
||||||
}, [&](mtpTypeId type) {
|
}, [&](const MTPDchannels_channelParticipantsNotModified &) {
|
||||||
_participantsLoaded = true;
|
_participantsLoaded = true;
|
||||||
}));
|
});
|
||||||
|
|
||||||
delegate()->peerListSearchRefreshRows();
|
delegate()->peerListSearchRefreshRows();
|
||||||
}
|
}
|
||||||
|
@ -12,8 +12,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||||||
#include "boxes/peers/add_participants_box.h"
|
#include "boxes/peers/add_participants_box.h"
|
||||||
#include "boxes/confirm_box.h"
|
#include "boxes/confirm_box.h"
|
||||||
#include "boxes/add_contact_box.h"
|
#include "boxes/add_contact_box.h"
|
||||||
#include "core/tl_help.h"
|
|
||||||
#include "base/overload.h"
|
|
||||||
#include "auth_session.h"
|
#include "auth_session.h"
|
||||||
#include "apiwrap.h"
|
#include "apiwrap.h"
|
||||||
#include "lang/lang_keys.h"
|
#include "lang/lang_keys.h"
|
||||||
@ -1705,8 +1703,7 @@ void ParticipantsBoxSearchController::searchDone(
|
|||||||
}
|
}
|
||||||
|
|
||||||
_requestId = 0;
|
_requestId = 0;
|
||||||
TLHelp::VisitChannelParticipants(result, base::overload([&](
|
result.match([&](const MTPDchannels_channelParticipants &data) {
|
||||||
const MTPDchannels_channelParticipants &data) {
|
|
||||||
auto &list = data.vparticipants.v;
|
auto &list = data.vparticipants.v;
|
||||||
if (list.size() < requestedCount) {
|
if (list.size() < requestedCount) {
|
||||||
// We want cache to have full information about a query with small
|
// We want cache to have full information about a query with small
|
||||||
@ -1726,9 +1723,9 @@ void ParticipantsBoxSearchController::searchDone(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
_offset += list.size();
|
_offset += list.size();
|
||||||
}, [&](mtpTypeId type) {
|
}, [&](const MTPDchannels_channelParticipantsNotModified &) {
|
||||||
_allLoaded = true;
|
_allLoaded = true;
|
||||||
}));
|
});
|
||||||
|
|
||||||
delegate()->peerListSearchRefreshRows();
|
delegate()->peerListSearchRefreshRows();
|
||||||
}
|
}
|
||||||
|
@ -1,50 +0,0 @@
|
|||||||
/*
|
|
||||||
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
|
|
||||||
|
|
||||||
namespace TLHelp {
|
|
||||||
|
|
||||||
template <typename Callback>
|
|
||||||
inline auto VisitChannelParticipant(
|
|
||||||
const MTPChannelParticipant &p,
|
|
||||||
Callback &&callback) {
|
|
||||||
switch (p.type()) {
|
|
||||||
case mtpc_channelParticipant:
|
|
||||||
return callback(p.c_channelParticipant());
|
|
||||||
case mtpc_channelParticipantSelf:
|
|
||||||
return callback(p.c_channelParticipantSelf());
|
|
||||||
case mtpc_channelParticipantAdmin:
|
|
||||||
return callback(p.c_channelParticipantAdmin());
|
|
||||||
case mtpc_channelParticipantCreator:
|
|
||||||
return callback(p.c_channelParticipantCreator());
|
|
||||||
case mtpc_channelParticipantBanned:
|
|
||||||
return callback(p.c_channelParticipantBanned());
|
|
||||||
default: Unexpected("Type in VisitChannelParticipant()");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
inline UserId ReadChannelParticipantUserId(const MTPChannelParticipant &p) {
|
|
||||||
return VisitChannelParticipant(p, [](auto &&data) {
|
|
||||||
return data.vuser_id.v;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
template <typename Callback>
|
|
||||||
inline auto VisitChannelParticipants(
|
|
||||||
const MTPchannels_ChannelParticipants &p,
|
|
||||||
Callback &&callback) {
|
|
||||||
switch (p.type()) {
|
|
||||||
case mtpc_channels_channelParticipants:
|
|
||||||
return callback(p.c_channels_channelParticipants());
|
|
||||||
case mtpc_channels_channelParticipantsNotModified:
|
|
||||||
return callback(p.type());
|
|
||||||
default: Unexpected("Type in VisitChannelParticipants()");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace TLHelp
|
|
@ -31,8 +31,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||||||
#include "ui/widgets/popup_menu.h"
|
#include "ui/widgets/popup_menu.h"
|
||||||
#include "ui/image/image.h"
|
#include "ui/image/image.h"
|
||||||
#include "core/file_utilities.h"
|
#include "core/file_utilities.h"
|
||||||
#include "core/tl_help.h"
|
|
||||||
#include "base/overload.h"
|
|
||||||
#include "lang/lang_keys.h"
|
#include "lang/lang_keys.h"
|
||||||
#include "boxes/peers/edit_participant_box.h"
|
#include "boxes/peers/edit_participant_box.h"
|
||||||
#include "data/data_session.h"
|
#include "data/data_session.h"
|
||||||
@ -388,20 +386,22 @@ void InnerWidget::requestAdmins() {
|
|||||||
MTP_int(kMaxChannelAdmins),
|
MTP_int(kMaxChannelAdmins),
|
||||||
MTP_int(participantsHash)
|
MTP_int(participantsHash)
|
||||||
)).done([this](const MTPchannels_ChannelParticipants &result) {
|
)).done([this](const MTPchannels_ChannelParticipants &result) {
|
||||||
auto readCanEdit = base::overload([](const MTPDchannelParticipantAdmin &v) {
|
|
||||||
return v.is_can_edit();
|
|
||||||
}, [](auto &&) {
|
|
||||||
return false;
|
|
||||||
});
|
|
||||||
Auth().api().parseChannelParticipants(_channel, result, [&](
|
Auth().api().parseChannelParticipants(_channel, result, [&](
|
||||||
int availableCount,
|
int availableCount,
|
||||||
const QVector<MTPChannelParticipant> &list) {
|
const QVector<MTPChannelParticipant> &list) {
|
||||||
auto filtered = (
|
auto filtered = (
|
||||||
list
|
list
|
||||||
) | ranges::view::transform([&](const MTPChannelParticipant &p) {
|
) | ranges::view::transform([&](const MTPChannelParticipant &p) {
|
||||||
return std::make_pair(
|
const auto userId = p.match([](const auto &data) {
|
||||||
TLHelp::ReadChannelParticipantUserId(p),
|
return data.vuser_id.v;
|
||||||
TLHelp::VisitChannelParticipant(p, readCanEdit));
|
});
|
||||||
|
const auto canEdit = p.match([](
|
||||||
|
const MTPDchannelParticipantAdmin &data) {
|
||||||
|
return data.is_can_edit();
|
||||||
|
}, [](const auto &) {
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
return std::make_pair(userId, canEdit);
|
||||||
}) | ranges::view::transform([&](auto &&pair) {
|
}) | ranges::view::transform([&](auto &&pair) {
|
||||||
return std::make_pair(
|
return std::make_pair(
|
||||||
App::userLoaded(pair.first),
|
App::userLoaded(pair.first),
|
||||||
|
@ -17,8 +17,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||||||
#include "data/data_session.h"
|
#include "data/data_session.h"
|
||||||
#include "lang/lang_keys.h"
|
#include "lang/lang_keys.h"
|
||||||
#include "boxes/sticker_set_box.h"
|
#include "boxes/sticker_set_box.h"
|
||||||
#include "core/tl_help.h"
|
|
||||||
#include "base/overload.h"
|
|
||||||
#include "messenger.h"
|
#include "messenger.h"
|
||||||
#include "auth_session.h"
|
#include "auth_session.h"
|
||||||
|
|
||||||
@ -278,9 +276,8 @@ auto GenerateParticipantChangeTextInner(
|
|||||||
not_null<ChannelData*> channel,
|
not_null<ChannelData*> channel,
|
||||||
const MTPChannelParticipant &participant,
|
const MTPChannelParticipant &participant,
|
||||||
const MTPChannelParticipant *oldParticipant) {
|
const MTPChannelParticipant *oldParticipant) {
|
||||||
auto oldType = oldParticipant ? oldParticipant->type() : 0;
|
const auto oldType = oldParticipant ? oldParticipant->type() : 0;
|
||||||
|
return participant.match([&](const MTPDchannelParticipantCreator &data) {
|
||||||
auto readResult = base::overload([&](const MTPDchannelParticipantCreator &data) {
|
|
||||||
// No valid string here :(
|
// No valid string here :(
|
||||||
return lng_admin_log_invited__generic(
|
return lng_admin_log_invited__generic(
|
||||||
lt_user,
|
lt_user,
|
||||||
@ -318,8 +315,6 @@ auto GenerateParticipantChangeTextInner(
|
|||||||
}
|
}
|
||||||
return lng_admin_log_invited__generic(lt_user, user);
|
return lng_admin_log_invited__generic(lt_user, user);
|
||||||
});
|
});
|
||||||
|
|
||||||
return TLHelp::VisitChannelParticipant(participant, readResult);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
TextWithEntities GenerateParticipantChangeText(not_null<ChannelData*> channel, const MTPChannelParticipant &participant, const MTPChannelParticipant *oldParticipant = nullptr) {
|
TextWithEntities GenerateParticipantChangeText(not_null<ChannelData*> channel, const MTPChannelParticipant &participant, const MTPChannelParticipant *oldParticipant = nullptr) {
|
||||||
|
@ -27,8 +27,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||||||
#include "window/window_peer_menu.h"
|
#include "window/window_peer_menu.h"
|
||||||
#include "auth_session.h"
|
#include "auth_session.h"
|
||||||
#include "ui/widgets/popup_menu.h"
|
#include "ui/widgets/popup_menu.h"
|
||||||
#include "core/tl_help.h"
|
|
||||||
#include "base/overload.h"
|
|
||||||
#include "lang/lang_keys.h"
|
#include "lang/lang_keys.h"
|
||||||
#include "boxes/peers/edit_participant_box.h"
|
#include "boxes/peers/edit_participant_box.h"
|
||||||
#include "data/data_session.h"
|
#include "data/data_session.h"
|
||||||
|
@ -17,7 +17,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||||||
#include "boxes/peers/manage_peer_box.h"
|
#include "boxes/peers/manage_peer_box.h"
|
||||||
#include "boxes/peers/edit_peer_info_box.h"
|
#include "boxes/peers/edit_peer_info_box.h"
|
||||||
#include "ui/toast/toast.h"
|
#include "ui/toast/toast.h"
|
||||||
#include "core/tl_help.h"
|
|
||||||
#include "auth_session.h"
|
#include "auth_session.h"
|
||||||
#include "apiwrap.h"
|
#include "apiwrap.h"
|
||||||
#include "mainwidget.h"
|
#include "mainwidget.h"
|
||||||
@ -698,14 +697,16 @@ void PeerMenuAddChannelMembers(not_null<ChannelData*> channel) {
|
|||||||
LayerOption::KeepOther);
|
LayerOption::KeepOther);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
auto callback = [channel](const MTPchannels_ChannelParticipants &result) {
|
auto callback = [=](const MTPchannels_ChannelParticipants &result) {
|
||||||
Auth().api().parseChannelParticipants(channel, result, [&](
|
Auth().api().parseChannelParticipants(channel, result, [&](
|
||||||
int availableCount,
|
int availableCount,
|
||||||
const QVector<MTPChannelParticipant> &list) {
|
const QVector<MTPChannelParticipant> &list) {
|
||||||
auto already = (
|
auto already = (
|
||||||
list
|
list
|
||||||
) | ranges::view::transform([&](auto &&p) {
|
) | ranges::view::transform([](const MTPChannelParticipant &p) {
|
||||||
return TLHelp::ReadChannelParticipantUserId(p);
|
return p.match([](const auto &data) {
|
||||||
|
return data.vuser_id.v;
|
||||||
|
});
|
||||||
}) | ranges::view::transform([](UserId userId) {
|
}) | ranges::view::transform([](UserId userId) {
|
||||||
return App::userLoaded(userId);
|
return App::userLoaded(userId);
|
||||||
}) | ranges::view::filter([](UserData *user) {
|
}) | ranges::view::filter([](UserData *user) {
|
||||||
|
@ -142,7 +142,6 @@
|
|||||||
<(src_loc)/core/shortcuts.h
|
<(src_loc)/core/shortcuts.h
|
||||||
<(src_loc)/core/single_timer.cpp
|
<(src_loc)/core/single_timer.cpp
|
||||||
<(src_loc)/core/single_timer.h
|
<(src_loc)/core/single_timer.h
|
||||||
<(src_loc)/core/tl_help.h
|
|
||||||
<(src_loc)/core/update_checker.cpp
|
<(src_loc)/core/update_checker.cpp
|
||||||
<(src_loc)/core/update_checker.h
|
<(src_loc)/core/update_checker.h
|
||||||
<(src_loc)/core/utils.cpp
|
<(src_loc)/core/utils.cpp
|
||||||
|
Loading…
Reference in New Issue
Block a user