mirror of https://github.com/procxx/kepka.git
Don't apply count from getParticipants(Recent).
This commit is contained in:
parent
ff16897dde
commit
196ff7f4c1
|
@ -572,28 +572,21 @@ void ApiWrap::requestPeers(const QList<PeerData*> &peers) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ApiWrap::requestLastParticipants(ChannelData *channel, bool fromStart) {
|
void ApiWrap::requestLastParticipants(ChannelData *channel) {
|
||||||
if (!channel || !channel->isMegagroup()) {
|
if (!channel || !channel->isMegagroup()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto needAdmins = channel->canViewAdmins();
|
auto needAdmins = channel->canViewAdmins();
|
||||||
auto adminsOutdated = (channel->mgInfo->lastParticipantsStatus & MegagroupInfo::LastParticipantsAdminsOutdated) != 0;
|
auto adminsOutdated = (channel->mgInfo->lastParticipantsStatus & MegagroupInfo::LastParticipantsAdminsOutdated) != 0;
|
||||||
if ((needAdmins && adminsOutdated) || channel->lastParticipantsCountOutdated()) {
|
|
||||||
fromStart = true;
|
|
||||||
}
|
|
||||||
auto i = _participantsRequests.find(channel);
|
auto i = _participantsRequests.find(channel);
|
||||||
if (i != _participantsRequests.cend()) {
|
if (i != _participantsRequests.cend()) {
|
||||||
if (fromStart && i.value() < 0) { // was not loading from start
|
return;
|
||||||
_participantsRequests.erase(i);
|
|
||||||
} else {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
auto offset = fromStart ? 0 : channel->mgInfo->lastParticipants.size();
|
const auto offset = 0;
|
||||||
auto participantsHash = 0;
|
const auto participantsHash = 0;
|
||||||
auto requestId = request(MTPchannels_GetParticipants(
|
const auto requestId = request(MTPchannels_GetParticipants(
|
||||||
channel->inputChannel,
|
channel->inputChannel,
|
||||||
MTP_channelParticipantsRecent(),
|
MTP_channelParticipantsRecent(),
|
||||||
MTP_int(offset),
|
MTP_int(offset),
|
||||||
|
@ -608,7 +601,7 @@ void ApiWrap::requestLastParticipants(ChannelData *channel, bool fromStart) {
|
||||||
}
|
}
|
||||||
}).send();
|
}).send();
|
||||||
|
|
||||||
_participantsRequests.insert(channel, fromStart ? requestId : -requestId);
|
_participantsRequests.insert(channel, requestId);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ApiWrap::requestBots(ChannelData *channel) {
|
void ApiWrap::requestBots(ChannelData *channel) {
|
||||||
|
@ -656,11 +649,11 @@ void ApiWrap::lastParticipantsDone(
|
||||||
if (!peer->mgInfo) return;
|
if (!peer->mgInfo) return;
|
||||||
|
|
||||||
parseChannelParticipants(result, [&](
|
parseChannelParticipants(result, [&](
|
||||||
int fullCount,
|
int availableCount,
|
||||||
const QVector<MTPChannelParticipant> &list) {
|
const QVector<MTPChannelParticipant> &list) {
|
||||||
applyLastParticipantsList(
|
applyLastParticipantsList(
|
||||||
peer,
|
peer,
|
||||||
fullCount,
|
availableCount,
|
||||||
list,
|
list,
|
||||||
bots,
|
bots,
|
||||||
fromStart);
|
fromStart);
|
||||||
|
@ -669,7 +662,7 @@ void ApiWrap::lastParticipantsDone(
|
||||||
|
|
||||||
void ApiWrap::applyLastParticipantsList(
|
void ApiWrap::applyLastParticipantsList(
|
||||||
ChannelData *peer,
|
ChannelData *peer,
|
||||||
int fullCount,
|
int availableCount,
|
||||||
const QVector<MTPChannelParticipant> &list,
|
const QVector<MTPChannelParticipant> &list,
|
||||||
bool bots,
|
bool bots,
|
||||||
bool fromStart) {
|
bool fromStart) {
|
||||||
|
@ -753,11 +746,18 @@ void ApiWrap::applyLastParticipantsList(
|
||||||
h->clearLastKeyboard();
|
h->clearLastKeyboard();
|
||||||
}
|
}
|
||||||
if (!bots) {
|
if (!bots) {
|
||||||
if (list.isEmpty()) {
|
//
|
||||||
peer->setMembersCount(peer->mgInfo->lastParticipants.size());
|
// getParticipants(Recent) sometimes can't return all members,
|
||||||
} else {
|
// only some last subset, size of this subset is availableCount.
|
||||||
peer->setMembersCount(fullCount);
|
//
|
||||||
}
|
// So both list size and availableCount have nothing to do with
|
||||||
|
// the full supergroup members count.
|
||||||
|
//
|
||||||
|
//if (list.isEmpty()) {
|
||||||
|
// peer->setMembersCount(peer->mgInfo->lastParticipants.size());
|
||||||
|
//} else {
|
||||||
|
// peer->setMembersCount(availableCount);
|
||||||
|
//}
|
||||||
Notify::PeerUpdate update(peer);
|
Notify::PeerUpdate update(peer);
|
||||||
update.flags |= Notify::PeerUpdate::Flag::MembersChanged | Notify::PeerUpdate::Flag::AdminsChanged;
|
update.flags |= Notify::PeerUpdate::Flag::MembersChanged | Notify::PeerUpdate::Flag::AdminsChanged;
|
||||||
Notify::peerUpdatedDelayed(update);
|
Notify::peerUpdatedDelayed(update);
|
||||||
|
@ -1775,7 +1775,9 @@ void ApiWrap::readFeaturedSets() {
|
||||||
|
|
||||||
void ApiWrap::parseChannelParticipants(
|
void ApiWrap::parseChannelParticipants(
|
||||||
const MTPchannels_ChannelParticipants &result,
|
const MTPchannels_ChannelParticipants &result,
|
||||||
base::lambda<void(int fullCount, const QVector<MTPChannelParticipant> &list)> callbackList,
|
base::lambda<void(
|
||||||
|
int availableCount,
|
||||||
|
const QVector<MTPChannelParticipant> &list)> callbackList,
|
||||||
base::lambda<void()> callbackNotModified) {
|
base::lambda<void()> callbackNotModified) {
|
||||||
TLHelp::VisitChannelParticipants(result, base::overload([&](
|
TLHelp::VisitChannelParticipants(result, base::overload([&](
|
||||||
const MTPDchannels_channelParticipants &data) {
|
const MTPDchannels_channelParticipants &data) {
|
||||||
|
@ -1795,22 +1797,24 @@ void ApiWrap::parseChannelParticipants(
|
||||||
void ApiWrap::parseRecentChannelParticipants(
|
void ApiWrap::parseRecentChannelParticipants(
|
||||||
not_null<ChannelData*> channel,
|
not_null<ChannelData*> channel,
|
||||||
const MTPchannels_ChannelParticipants &result,
|
const MTPchannels_ChannelParticipants &result,
|
||||||
base::lambda<void(int fullCount, const QVector<MTPChannelParticipant> &list)> callbackList,
|
base::lambda<void(
|
||||||
|
int availableCount,
|
||||||
|
const QVector<MTPChannelParticipant> &list)> callbackList,
|
||||||
base::lambda<void()> callbackNotModified) {
|
base::lambda<void()> callbackNotModified) {
|
||||||
parseChannelParticipants(result, [&](
|
parseChannelParticipants(result, [&](
|
||||||
int fullCount,
|
int availableCount,
|
||||||
const QVector<MTPChannelParticipant> &list) {
|
const QVector<MTPChannelParticipant> &list) {
|
||||||
auto applyLast = channel->isMegagroup()
|
auto applyLast = channel->isMegagroup()
|
||||||
&& (channel->mgInfo->lastParticipants.size() <= list.size());
|
&& (channel->mgInfo->lastParticipants.size() <= list.size());
|
||||||
if (applyLast) {
|
if (applyLast) {
|
||||||
applyLastParticipantsList(
|
applyLastParticipantsList(
|
||||||
channel,
|
channel,
|
||||||
fullCount,
|
availableCount,
|
||||||
list,
|
list,
|
||||||
false,
|
false,
|
||||||
true);
|
true);
|
||||||
}
|
}
|
||||||
callbackList(fullCount, list);
|
callbackList(availableCount, list);
|
||||||
}, std::move(callbackNotModified));
|
}, std::move(callbackNotModified));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1819,13 +1823,43 @@ void ApiWrap::applyUpdatesNoPtsCheck(const MTPUpdates &updates) {
|
||||||
case mtpc_updateShortMessage: {
|
case mtpc_updateShortMessage: {
|
||||||
auto &d = updates.c_updateShortMessage();
|
auto &d = updates.c_updateShortMessage();
|
||||||
auto flags = mtpCastFlags(d.vflags.v) | MTPDmessage::Flag::f_from_id;
|
auto flags = mtpCastFlags(d.vflags.v) | MTPDmessage::Flag::f_from_id;
|
||||||
App::histories().addNewMessage(MTP_message(MTP_flags(flags), d.vid, d.is_out() ? MTP_int(Auth().userId()) : d.vuser_id, MTP_peerUser(d.is_out() ? d.vuser_id : MTP_int(Auth().userId())), d.vfwd_from, d.vvia_bot_id, d.vreply_to_msg_id, d.vdate, d.vmessage, MTP_messageMediaEmpty(), MTPnullMarkup, d.has_entities() ? d.ventities : MTPnullEntities, MTPint(), MTPint(), MTPstring()), NewMessageUnread);
|
App::histories().addNewMessage(MTP_message(
|
||||||
|
MTP_flags(flags),
|
||||||
|
d.vid,
|
||||||
|
d.is_out() ? MTP_int(Auth().userId()) : d.vuser_id,
|
||||||
|
MTP_peerUser(d.is_out() ? d.vuser_id : MTP_int(Auth().userId())),
|
||||||
|
d.vfwd_from,
|
||||||
|
d.vvia_bot_id,
|
||||||
|
d.vreply_to_msg_id,
|
||||||
|
d.vdate,
|
||||||
|
d.vmessage,
|
||||||
|
MTP_messageMediaEmpty(),
|
||||||
|
MTPnullMarkup,
|
||||||
|
d.has_entities() ? d.ventities : MTPnullEntities,
|
||||||
|
MTPint(),
|
||||||
|
MTPint(),
|
||||||
|
MTPstring()), NewMessageUnread);
|
||||||
} break;
|
} break;
|
||||||
|
|
||||||
case mtpc_updateShortChatMessage: {
|
case mtpc_updateShortChatMessage: {
|
||||||
auto &d = updates.c_updateShortChatMessage();
|
auto &d = updates.c_updateShortChatMessage();
|
||||||
auto flags = mtpCastFlags(d.vflags.v) | MTPDmessage::Flag::f_from_id;
|
auto flags = mtpCastFlags(d.vflags.v) | MTPDmessage::Flag::f_from_id;
|
||||||
App::histories().addNewMessage(MTP_message(MTP_flags(flags), d.vid, d.vfrom_id, MTP_peerChat(d.vchat_id), d.vfwd_from, d.vvia_bot_id, d.vreply_to_msg_id, d.vdate, d.vmessage, MTP_messageMediaEmpty(), MTPnullMarkup, d.has_entities() ? d.ventities : MTPnullEntities, MTPint(), MTPint(), MTPstring()), NewMessageUnread);
|
App::histories().addNewMessage(MTP_message(
|
||||||
|
MTP_flags(flags),
|
||||||
|
d.vid,
|
||||||
|
d.vfrom_id,
|
||||||
|
MTP_peerChat(d.vchat_id),
|
||||||
|
d.vfwd_from,
|
||||||
|
d.vvia_bot_id,
|
||||||
|
d.vreply_to_msg_id,
|
||||||
|
d.vdate,
|
||||||
|
d.vmessage,
|
||||||
|
MTP_messageMediaEmpty(),
|
||||||
|
MTPnullMarkup,
|
||||||
|
d.has_entities() ? d.ventities : MTPnullEntities,
|
||||||
|
MTPint(),
|
||||||
|
MTPint(),
|
||||||
|
MTPstring()), NewMessageUnread);
|
||||||
} break;
|
} break;
|
||||||
|
|
||||||
case mtpc_updateShortSentMessage: {
|
case mtpc_updateShortSentMessage: {
|
||||||
|
|
|
@ -61,7 +61,7 @@ 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 *channel, bool fromStart = true);
|
void requestLastParticipants(ChannelData *channel);
|
||||||
void requestBots(ChannelData *channel);
|
void requestBots(ChannelData *channel);
|
||||||
void requestParticipantsCountDelayed(ChannelData *channel);
|
void requestParticipantsCountDelayed(ChannelData *channel);
|
||||||
|
|
||||||
|
@ -145,12 +145,16 @@ public:
|
||||||
|
|
||||||
void parseChannelParticipants(
|
void parseChannelParticipants(
|
||||||
const MTPchannels_ChannelParticipants &result,
|
const MTPchannels_ChannelParticipants &result,
|
||||||
base::lambda<void(int fullCount, const QVector<MTPChannelParticipant> &list)> callbackList,
|
base::lambda<void(
|
||||||
|
int availableCount,
|
||||||
|
const QVector<MTPChannelParticipant> &list)> callbackList,
|
||||||
base::lambda<void()> callbackNotModified = nullptr);
|
base::lambda<void()> callbackNotModified = nullptr);
|
||||||
void parseRecentChannelParticipants(
|
void parseRecentChannelParticipants(
|
||||||
not_null<ChannelData*> channel,
|
not_null<ChannelData*> channel,
|
||||||
const MTPchannels_ChannelParticipants &result,
|
const MTPchannels_ChannelParticipants &result,
|
||||||
base::lambda<void(int fullCount, const QVector<MTPChannelParticipant> &list)> callbackList,
|
base::lambda<void(
|
||||||
|
int availableCount,
|
||||||
|
const QVector<MTPChannelParticipant> &list)> callbackList,
|
||||||
base::lambda<void()> callbackNotModified = nullptr);
|
base::lambda<void()> callbackNotModified = nullptr);
|
||||||
|
|
||||||
~ApiWrap();
|
~ApiWrap();
|
||||||
|
@ -188,7 +192,7 @@ private:
|
||||||
mtpRequestId req);
|
mtpRequestId req);
|
||||||
void applyLastParticipantsList(
|
void applyLastParticipantsList(
|
||||||
ChannelData *peer,
|
ChannelData *peer,
|
||||||
int fullCount,
|
int availableCount,
|
||||||
const QVector<MTPChannelParticipant> &list,
|
const QVector<MTPChannelParticipant> &list,
|
||||||
bool bots,
|
bool bots,
|
||||||
bool fromStart);
|
bool fromStart);
|
||||||
|
|
|
@ -358,7 +358,7 @@ void InnerWidget::requestAdmins() {
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
Auth().api().parseChannelParticipants(result, [&](
|
Auth().api().parseChannelParticipants(result, [&](
|
||||||
int fullCount,
|
int availableCount,
|
||||||
const QVector<MTPChannelParticipant> &list) {
|
const QVector<MTPChannelParticipant> &list) {
|
||||||
auto filtered = (
|
auto filtered = (
|
||||||
list
|
list
|
||||||
|
|
|
@ -668,7 +668,7 @@ void HistoryTopBarWidget::updateOnlineDisplay() {
|
||||||
}
|
}
|
||||||
} else if (auto channel = _historyPeer->asChannel()) {
|
} else if (auto channel = _historyPeer->asChannel()) {
|
||||||
if (channel->isMegagroup() && channel->membersCount() > 0 && channel->membersCount() <= Global::ChatSizeMax()) {
|
if (channel->isMegagroup() && channel->membersCount() > 0 && channel->membersCount() <= Global::ChatSizeMax()) {
|
||||||
if (channel->mgInfo->lastParticipants.size() < channel->membersCount() || channel->lastParticipantsCountOutdated()) {
|
if (channel->mgInfo->lastParticipants.isEmpty() || channel->lastParticipantsCountOutdated()) {
|
||||||
Auth().api().requestLastParticipants(channel);
|
Auth().api().requestLastParticipants(channel);
|
||||||
}
|
}
|
||||||
auto online = 0;
|
auto online = 0;
|
||||||
|
|
|
@ -175,12 +175,15 @@ void GroupMembersWidget::refreshUserOnline(UserData *user) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void GroupMembersWidget::preloadMore() {
|
void GroupMembersWidget::preloadMore() {
|
||||||
if (auto megagroup = peer()->asMegagroup()) {
|
//
|
||||||
auto &megagroupInfo = megagroup->mgInfo;
|
// This can cause a ddos, because lastParticipants may never reach members count.
|
||||||
if (!megagroupInfo->lastParticipants.isEmpty() && megagroupInfo->lastParticipants.size() < megagroup->membersCount()) {
|
//
|
||||||
Auth().api().requestLastParticipants(megagroup, false);
|
//if (auto megagroup = peer()->asMegagroup()) {
|
||||||
}
|
// auto &megagroupInfo = megagroup->mgInfo;
|
||||||
}
|
// if (!megagroupInfo->lastParticipants.isEmpty() && megagroupInfo->lastParticipants.size() < megagroup->membersCount()) {
|
||||||
|
// Auth().api().requestLastParticipants(megagroup, false);
|
||||||
|
// }
|
||||||
|
//}
|
||||||
}
|
}
|
||||||
|
|
||||||
int GroupMembersWidget::resizeGetHeight(int newWidth) {
|
int GroupMembersWidget::resizeGetHeight(int newWidth) {
|
||||||
|
|
|
@ -480,7 +480,7 @@ void ParticipantsBoxController::loadMoreRows() {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
parseParticipants(result, [&](
|
parseParticipants(result, [&](
|
||||||
int fullCount,
|
int availableCount,
|
||||||
const QVector<MTPChannelParticipant> &list) {
|
const QVector<MTPChannelParticipant> &list) {
|
||||||
for (auto &participant : list) {
|
for (auto &participant : list) {
|
||||||
HandleParticipant(
|
HandleParticipant(
|
||||||
|
@ -541,13 +541,6 @@ bool ParticipantsBoxController::feedMegagroupLastParticipants() {
|
||||||
if (info->lastParticipants.isEmpty()) {
|
if (info->lastParticipants.isEmpty()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if ((info->lastParticipants.size() < Global::ChatSizeMax() / 2)
|
|
||||||
&& (_channel->membersCount() > Global::ChatSizeMax())) {
|
|
||||||
// If we have really small non-empty count of last participants.
|
|
||||||
// Request them from the beginning so that we won't do that each
|
|
||||||
// time we open megagroup profile.
|
|
||||||
Auth().api().requestLastParticipants(_channel);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (info->creator) {
|
if (info->creator) {
|
||||||
_additional.creator = info->creator;
|
_additional.creator = info->creator;
|
||||||
|
@ -1192,7 +1185,7 @@ void AddParticipantBoxController::loadMoreRows() {
|
||||||
_loadRequestId = 0;
|
_loadRequestId = 0;
|
||||||
|
|
||||||
Auth().api().parseChannelParticipants(result, [&](
|
Auth().api().parseChannelParticipants(result, [&](
|
||||||
int fullCount,
|
int availableCount,
|
||||||
const QVector<MTPChannelParticipant> &list) {
|
const QVector<MTPChannelParticipant> &list) {
|
||||||
for (auto &participant : list) {
|
for (auto &participant : list) {
|
||||||
HandleParticipant(
|
HandleParticipant(
|
||||||
|
|
|
@ -712,6 +712,8 @@ void UserpicButton::grabOldUserpic() {
|
||||||
void UserpicButton::startNewPhotoShowing() {
|
void UserpicButton::startNewPhotoShowing() {
|
||||||
auto oldUniqueKey = _userpicUniqueKey;
|
auto oldUniqueKey = _userpicUniqueKey;
|
||||||
prepareUserpicPixmap();
|
prepareUserpicPixmap();
|
||||||
|
update();
|
||||||
|
|
||||||
if (_notShownYet) {
|
if (_notShownYet) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -719,7 +721,6 @@ void UserpicButton::startNewPhotoShowing() {
|
||||||
|| _a_appearance.animating()) {
|
|| _a_appearance.animating()) {
|
||||||
startAnimation();
|
startAnimation();
|
||||||
}
|
}
|
||||||
update();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void UserpicButton::startAnimation() {
|
void UserpicButton::startAnimation() {
|
||||||
|
|
|
@ -508,7 +508,7 @@ void PeerMenuAddChannelMembers(not_null<ChannelData*> channel) {
|
||||||
}
|
}
|
||||||
auto callback = [channel](const MTPchannels_ChannelParticipants &result) {
|
auto callback = [channel](const MTPchannels_ChannelParticipants &result) {
|
||||||
Auth().api().parseChannelParticipants(result, [&](
|
Auth().api().parseChannelParticipants(result, [&](
|
||||||
int fullCount,
|
int availableCount,
|
||||||
const QVector<MTPChannelParticipant> &list) {
|
const QVector<MTPChannelParticipant> &list) {
|
||||||
auto already = (
|
auto already = (
|
||||||
list
|
list
|
||||||
|
|
Loading…
Reference in New Issue