2020-11-20 19:25:35 +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 "data/data_group_call.h"
|
|
|
|
|
|
|
|
#include "data/data_channel.h"
|
|
|
|
#include "data/data_changes.h"
|
|
|
|
#include "data/data_session.h"
|
|
|
|
#include "main/main_session.h"
|
|
|
|
#include "apiwrap.h"
|
|
|
|
|
|
|
|
namespace Data {
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
constexpr auto kRequestPerPage = 30;
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
GroupCall::GroupCall(
|
|
|
|
not_null<ChannelData*> channel,
|
|
|
|
uint64 id,
|
|
|
|
uint64 accessHash)
|
|
|
|
: _channel(channel)
|
|
|
|
, _id(id)
|
|
|
|
, _accessHash(accessHash) {
|
|
|
|
}
|
|
|
|
|
2020-11-24 11:56:46 +00:00
|
|
|
GroupCall::~GroupCall() {
|
2020-12-01 09:06:06 +00:00
|
|
|
api().request(_unknownSsrcsRequestId).cancel();
|
2020-11-29 15:18:51 +00:00
|
|
|
api().request(_participantsRequestId).cancel();
|
|
|
|
api().request(_reloadRequestId).cancel();
|
2020-11-24 11:56:46 +00:00
|
|
|
}
|
|
|
|
|
2020-11-20 19:25:35 +00:00
|
|
|
uint64 GroupCall::id() const {
|
|
|
|
return _id;
|
|
|
|
}
|
|
|
|
|
2020-11-24 11:56:46 +00:00
|
|
|
not_null<ChannelData*> GroupCall::channel() const {
|
|
|
|
return _channel;
|
|
|
|
}
|
|
|
|
|
2020-11-20 19:25:35 +00:00
|
|
|
MTPInputGroupCall GroupCall::input() const {
|
|
|
|
return MTP_inputGroupCall(MTP_long(_id), MTP_long(_accessHash));
|
|
|
|
}
|
|
|
|
|
|
|
|
auto GroupCall::participants() const
|
|
|
|
-> const std::vector<Participant> & {
|
|
|
|
return _participants;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GroupCall::requestParticipants() {
|
2020-11-24 11:56:46 +00:00
|
|
|
if (_participantsRequestId || _reloadRequestId) {
|
2020-11-20 19:25:35 +00:00
|
|
|
return;
|
2020-11-27 14:50:41 +00:00
|
|
|
} else if (_participants.size() >= _fullCount.current() && _allReceived) {
|
2020-11-20 19:25:35 +00:00
|
|
|
return;
|
2020-11-26 11:04:00 +00:00
|
|
|
} else if (_allReceived) {
|
|
|
|
reload();
|
|
|
|
return;
|
2020-11-20 19:25:35 +00:00
|
|
|
}
|
2020-11-29 15:18:51 +00:00
|
|
|
_participantsRequestId = api().request(MTPphone_GetGroupParticipants(
|
2020-11-20 19:25:35 +00:00
|
|
|
input(),
|
2020-11-28 06:38:55 +00:00
|
|
|
MTP_vector<MTPint>(), // ids
|
2020-12-01 09:06:06 +00:00
|
|
|
MTP_vector<MTPint>(), // ssrcs
|
2020-11-26 11:04:00 +00:00
|
|
|
MTP_string(_nextOffset),
|
2020-11-20 19:25:35 +00:00
|
|
|
MTP_int(kRequestPerPage)
|
|
|
|
)).done([=](const MTPphone_GroupParticipants &result) {
|
|
|
|
result.match([&](const MTPDphone_groupParticipants &data) {
|
2020-11-26 11:04:00 +00:00
|
|
|
_nextOffset = qs(data.vnext_offset());
|
2020-11-20 19:25:35 +00:00
|
|
|
_channel->owner().processUsers(data.vusers());
|
2020-11-29 15:18:51 +00:00
|
|
|
applyParticipantsSlice(
|
|
|
|
data.vparticipants().v,
|
|
|
|
ApplySliceSource::SliceLoaded);
|
2020-11-24 11:56:46 +00:00
|
|
|
_fullCount = data.vcount().v;
|
2020-11-20 19:25:35 +00:00
|
|
|
if (!_allReceived
|
|
|
|
&& (data.vparticipants().v.size() < kRequestPerPage)) {
|
|
|
|
_allReceived = true;
|
|
|
|
}
|
|
|
|
if (_allReceived) {
|
|
|
|
_fullCount = _participants.size();
|
|
|
|
}
|
|
|
|
});
|
2020-11-27 14:50:41 +00:00
|
|
|
_participantsSliceAdded.fire({});
|
2020-11-24 11:56:46 +00:00
|
|
|
_participantsRequestId = 0;
|
2020-11-20 19:25:35 +00:00
|
|
|
}).fail([=](const RPCError &error) {
|
|
|
|
_fullCount = _participants.size();
|
2020-11-24 11:56:46 +00:00
|
|
|
_allReceived = true;
|
|
|
|
_participantsRequestId = 0;
|
2020-11-20 19:25:35 +00:00
|
|
|
}).send();
|
|
|
|
}
|
|
|
|
|
|
|
|
int GroupCall::fullCount() const {
|
2020-11-27 14:50:41 +00:00
|
|
|
return _fullCount.current();
|
|
|
|
}
|
|
|
|
|
|
|
|
rpl::producer<int> GroupCall::fullCountValue() const {
|
|
|
|
return _fullCount.value();
|
2020-11-20 19:25:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool GroupCall::participantsLoaded() const {
|
|
|
|
return _allReceived;
|
|
|
|
}
|
|
|
|
|
2020-12-01 09:06:06 +00:00
|
|
|
UserData *GroupCall::userBySsrc(uint32 ssrc) const {
|
|
|
|
const auto i = _userBySsrc.find(ssrc);
|
|
|
|
return (i != end(_userBySsrc)) ? i->second.get() : nullptr;
|
2020-11-28 09:01:50 +00:00
|
|
|
}
|
|
|
|
|
2020-11-27 14:50:41 +00:00
|
|
|
rpl::producer<> GroupCall::participantsSliceAdded() {
|
|
|
|
return _participantsSliceAdded.events();
|
|
|
|
}
|
|
|
|
|
|
|
|
auto GroupCall::participantUpdated() const
|
|
|
|
-> rpl::producer<ParticipantUpdate> {
|
|
|
|
return _participantUpdates.events();
|
|
|
|
}
|
|
|
|
|
2020-11-24 11:56:46 +00:00
|
|
|
void GroupCall::applyUpdate(const MTPGroupCall &update) {
|
|
|
|
applyCall(update, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GroupCall::applyCall(const MTPGroupCall &call, bool force) {
|
|
|
|
call.match([&](const MTPDgroupCall &data) {
|
|
|
|
const auto changed = (_version != data.vversion().v)
|
2020-11-28 16:18:51 +00:00
|
|
|
|| (_fullCount.current() != data.vparticipants_count().v)
|
|
|
|
|| (_joinMuted != data.is_join_muted())
|
|
|
|
|| (_canChangeJoinMuted != data.is_can_change_join_muted());
|
2020-11-24 11:56:46 +00:00
|
|
|
if (!force && !changed) {
|
|
|
|
return;
|
|
|
|
} else if (!force && _version > data.vversion().v) {
|
|
|
|
reload();
|
|
|
|
return;
|
|
|
|
}
|
2020-11-28 16:18:51 +00:00
|
|
|
_joinMuted = data.is_join_muted();
|
|
|
|
_canChangeJoinMuted = data.is_can_change_join_muted();
|
2020-11-24 11:56:46 +00:00
|
|
|
_version = data.vversion().v;
|
|
|
|
_fullCount = data.vparticipants_count().v;
|
|
|
|
}, [&](const MTPDgroupCallDiscarded &data) {
|
2020-11-28 14:07:36 +00:00
|
|
|
const auto id = _id;
|
|
|
|
const auto channel = _channel;
|
|
|
|
crl::on_main(&channel->session(), [=] {
|
|
|
|
if (channel->call() && channel->call()->id() == id) {
|
|
|
|
channel->clearCall();
|
|
|
|
}
|
|
|
|
});
|
2020-11-24 11:56:46 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void GroupCall::reload() {
|
|
|
|
if (_reloadRequestId) {
|
|
|
|
return;
|
|
|
|
} else if (_participantsRequestId) {
|
2020-11-29 15:18:51 +00:00
|
|
|
api().request(_participantsRequestId).cancel();
|
2020-11-24 11:56:46 +00:00
|
|
|
_participantsRequestId = 0;
|
|
|
|
}
|
2020-11-29 15:18:51 +00:00
|
|
|
_reloadRequestId = api().request(
|
2020-11-24 11:56:46 +00:00
|
|
|
MTPphone_GetGroupCall(input())
|
|
|
|
).done([=](const MTPphone_GroupCall &result) {
|
|
|
|
result.match([&](const MTPDphone_groupCall &data) {
|
|
|
|
_channel->owner().processUsers(data.vusers());
|
|
|
|
_participants.clear();
|
2020-12-01 09:06:06 +00:00
|
|
|
_userBySsrc.clear();
|
2020-11-29 15:18:51 +00:00
|
|
|
applyParticipantsSlice(
|
|
|
|
data.vparticipants().v,
|
|
|
|
ApplySliceSource::SliceLoaded);
|
2020-11-24 11:56:46 +00:00
|
|
|
applyCall(data.vcall(), true);
|
2020-11-27 14:50:41 +00:00
|
|
|
_allReceived = (_fullCount.current() == _participants.size());
|
|
|
|
_participantsSliceAdded.fire({});
|
2020-11-24 11:56:46 +00:00
|
|
|
});
|
|
|
|
_reloadRequestId = 0;
|
|
|
|
}).fail([=](const RPCError &error) {
|
|
|
|
_reloadRequestId = 0;
|
|
|
|
}).send();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GroupCall::applyParticipantsSlice(
|
2020-11-27 14:50:41 +00:00
|
|
|
const QVector<MTPGroupCallParticipant> &list,
|
2020-11-29 15:18:51 +00:00
|
|
|
ApplySliceSource sliceSource) {
|
|
|
|
auto changedCount = _fullCount.current();
|
2020-11-24 11:56:46 +00:00
|
|
|
for (const auto &participant : list) {
|
|
|
|
participant.match([&](const MTPDgroupCallParticipant &data) {
|
|
|
|
const auto userId = data.vuser_id().v;
|
|
|
|
const auto user = _channel->owner().user(userId);
|
|
|
|
const auto i = ranges::find(
|
|
|
|
_participants,
|
|
|
|
user,
|
|
|
|
&Participant::user);
|
|
|
|
if (data.is_left()) {
|
|
|
|
if (i != end(_participants)) {
|
2020-11-27 14:50:41 +00:00
|
|
|
auto update = ParticipantUpdate{
|
2020-11-29 09:20:33 +00:00
|
|
|
.was = *i,
|
2020-11-27 14:50:41 +00:00
|
|
|
};
|
2020-12-01 09:06:06 +00:00
|
|
|
_userBySsrc.erase(i->ssrc);
|
2020-11-24 11:56:46 +00:00
|
|
|
_participants.erase(i);
|
2020-11-29 15:18:51 +00:00
|
|
|
if (sliceSource != ApplySliceSource::SliceLoaded) {
|
2020-11-27 14:50:41 +00:00
|
|
|
_participantUpdates.fire(std::move(update));
|
|
|
|
}
|
2020-11-24 11:56:46 +00:00
|
|
|
}
|
2020-11-29 15:18:51 +00:00
|
|
|
if (changedCount > _participants.size()) {
|
|
|
|
--changedCount;
|
2020-11-24 11:56:46 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2020-11-29 09:20:33 +00:00
|
|
|
const auto was = (i != end(_participants))
|
|
|
|
? std::make_optional(*i)
|
|
|
|
: std::nullopt;
|
2020-11-24 11:56:46 +00:00
|
|
|
const auto value = Participant{
|
|
|
|
.user = user,
|
|
|
|
.date = data.vdate().v,
|
2020-11-29 09:20:33 +00:00
|
|
|
.lastActive = was ? was->lastActive : 0,
|
2020-12-01 09:06:06 +00:00
|
|
|
.ssrc = uint32(data.vsource().v),
|
2020-11-29 09:20:33 +00:00
|
|
|
.speaking = !data.is_muted() && (was ? was->speaking : false),
|
2020-11-24 11:56:46 +00:00
|
|
|
.muted = data.is_muted(),
|
2020-11-28 07:41:33 +00:00
|
|
|
.canSelfUnmute = !data.is_muted() || data.is_can_self_unmute(),
|
2020-11-24 11:56:46 +00:00
|
|
|
};
|
|
|
|
if (i == end(_participants)) {
|
2020-12-01 09:06:06 +00:00
|
|
|
_userBySsrc.emplace(value.ssrc, user);
|
2020-11-24 11:56:46 +00:00
|
|
|
_participants.push_back(value);
|
2020-11-28 18:17:13 +00:00
|
|
|
_channel->owner().unregisterInvitedToCallUser(_id, user);
|
2020-11-29 15:18:51 +00:00
|
|
|
++changedCount;
|
2020-11-24 11:56:46 +00:00
|
|
|
} else {
|
2020-12-01 09:06:06 +00:00
|
|
|
if (i->ssrc != value.ssrc) {
|
|
|
|
_userBySsrc.erase(i->ssrc);
|
|
|
|
_userBySsrc.emplace(value.ssrc, user);
|
2020-11-28 09:01:50 +00:00
|
|
|
}
|
2020-11-24 11:56:46 +00:00
|
|
|
*i = value;
|
|
|
|
}
|
2020-11-29 15:18:51 +00:00
|
|
|
if (sliceSource != ApplySliceSource::SliceLoaded) {
|
|
|
|
_participantUpdates.fire({
|
|
|
|
.was = was,
|
|
|
|
.now = value,
|
|
|
|
});
|
|
|
|
}
|
2020-11-27 14:50:41 +00:00
|
|
|
});
|
|
|
|
}
|
2020-11-29 15:18:51 +00:00
|
|
|
if (sliceSource == ApplySliceSource::UpdateReceived) {
|
|
|
|
_fullCount = changedCount;
|
|
|
|
}
|
2020-11-27 14:50:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GroupCall::applyParticipantsMutes(
|
|
|
|
const MTPDupdateGroupCallParticipants &update) {
|
|
|
|
for (const auto &participant : update.vparticipants().v) {
|
|
|
|
participant.match([&](const MTPDgroupCallParticipant &data) {
|
|
|
|
if (data.is_left()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const auto userId = data.vuser_id().v;
|
|
|
|
const auto user = _channel->owner().user(userId);
|
|
|
|
const auto i = ranges::find(
|
|
|
|
_participants,
|
|
|
|
user,
|
|
|
|
&Participant::user);
|
|
|
|
if (i != end(_participants)) {
|
2020-11-29 09:20:33 +00:00
|
|
|
const auto was = *i;
|
2020-11-27 14:50:41 +00:00
|
|
|
i->muted = data.is_muted();
|
2020-11-28 07:41:33 +00:00
|
|
|
i->canSelfUnmute = !i->muted || data.is_can_self_unmute();
|
2020-11-29 09:20:33 +00:00
|
|
|
if (i->muted) {
|
|
|
|
i->speaking = false;
|
|
|
|
}
|
2020-11-27 14:50:41 +00:00
|
|
|
_participantUpdates.fire({
|
2020-11-29 09:20:33 +00:00
|
|
|
.was = was,
|
|
|
|
.now = *i,
|
2020-11-27 14:50:41 +00:00
|
|
|
});
|
|
|
|
}
|
2020-11-24 11:56:46 +00:00
|
|
|
});
|
|
|
|
}
|
2020-11-29 09:20:33 +00:00
|
|
|
}
|
2020-11-27 14:50:41 +00:00
|
|
|
|
2020-12-01 09:06:06 +00:00
|
|
|
void GroupCall::applyLastSpoke(uint32 ssrc, crl::time when, crl::time now) {
|
|
|
|
const auto i = _userBySsrc.find(ssrc);
|
|
|
|
if (i == end(_userBySsrc)) {
|
|
|
|
_unknownSpokenSsrcs.emplace(ssrc, when);
|
|
|
|
requestUnknownSsrcs();
|
2020-11-29 09:20:33 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
const auto j = ranges::find(_participants, i->second, &Participant::user);
|
|
|
|
Assert(j != end(_participants));
|
|
|
|
|
|
|
|
const auto speaking = (when + kSpeakStatusKeptFor >= now) && !j->muted;
|
|
|
|
if (j->speaking != speaking) {
|
|
|
|
const auto was = *j;
|
|
|
|
j->speaking = speaking;
|
|
|
|
_participantUpdates.fire({
|
|
|
|
.was = was,
|
|
|
|
.now = *j,
|
|
|
|
});
|
|
|
|
}
|
2020-11-24 11:56:46 +00:00
|
|
|
}
|
|
|
|
|
2020-12-01 09:06:06 +00:00
|
|
|
void GroupCall::requestUnknownSsrcs() {
|
|
|
|
if (_unknownSsrcsRequestId || _unknownSpokenSsrcs.empty()) {
|
2020-11-29 15:18:51 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-12-01 09:06:06 +00:00
|
|
|
const auto ssrcs = [&] {
|
|
|
|
if (_unknownSpokenSsrcs.size() < kRequestPerPage) {
|
|
|
|
return base::take(_unknownSpokenSsrcs);
|
2020-11-29 15:18:51 +00:00
|
|
|
}
|
|
|
|
auto result = base::flat_map<uint32, crl::time>();
|
|
|
|
result.reserve(kRequestPerPage);
|
|
|
|
while (result.size() < kRequestPerPage) {
|
2020-12-01 09:06:06 +00:00
|
|
|
const auto [ssrc, when] = _unknownSpokenSsrcs.back();
|
|
|
|
result.emplace(ssrc, when);
|
|
|
|
_unknownSpokenSsrcs.erase(_unknownSpokenSsrcs.end() - 1);
|
2020-11-29 15:18:51 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}();
|
2020-12-01 09:06:06 +00:00
|
|
|
auto inputs = QVector<MTPint>();
|
|
|
|
inputs.reserve(ssrcs.size());
|
|
|
|
for (const auto [ssrc, when] : ssrcs) {
|
|
|
|
inputs.push_back(MTP_int(ssrc));
|
2020-11-29 15:18:51 +00:00
|
|
|
}
|
2020-12-01 09:06:06 +00:00
|
|
|
_unknownSsrcsRequestId = api().request(MTPphone_GetGroupParticipants(
|
2020-11-29 15:18:51 +00:00
|
|
|
input(),
|
|
|
|
MTP_vector<MTPint>(), // ids
|
2020-12-01 09:06:06 +00:00
|
|
|
MTP_vector<MTPint>(inputs),
|
2020-11-29 15:18:51 +00:00
|
|
|
MTP_string(QString()),
|
|
|
|
MTP_int(kRequestPerPage)
|
|
|
|
)).done([=](const MTPphone_GroupParticipants &result) {
|
|
|
|
result.match([&](const MTPDphone_groupParticipants &data) {
|
|
|
|
_channel->owner().processUsers(data.vusers());
|
|
|
|
applyParticipantsSlice(
|
|
|
|
data.vparticipants().v,
|
|
|
|
ApplySliceSource::UnknownLoaded);
|
|
|
|
});
|
2020-12-01 09:06:06 +00:00
|
|
|
_unknownSsrcsRequestId = 0;
|
2020-11-29 15:18:51 +00:00
|
|
|
const auto now = crl::now();
|
2020-12-01 09:06:06 +00:00
|
|
|
for (const auto [ssrc, when] : ssrcs) {
|
|
|
|
applyLastSpoke(ssrc, when, now);
|
|
|
|
_unknownSpokenSsrcs.remove(ssrc);
|
2020-11-29 15:18:51 +00:00
|
|
|
}
|
2020-12-01 09:06:06 +00:00
|
|
|
requestUnknownSsrcs();
|
2020-11-29 15:18:51 +00:00
|
|
|
}).fail([=](const RPCError &error) {
|
2020-12-01 09:06:06 +00:00
|
|
|
_unknownSsrcsRequestId = 0;
|
|
|
|
for (const auto [ssrc, when] : ssrcs) {
|
|
|
|
_unknownSpokenSsrcs.remove(ssrc);
|
2020-11-29 15:18:51 +00:00
|
|
|
}
|
2020-12-01 09:06:06 +00:00
|
|
|
requestUnknownSsrcs();
|
2020-11-29 15:18:51 +00:00
|
|
|
}).send();
|
|
|
|
}
|
|
|
|
|
2020-11-24 11:56:46 +00:00
|
|
|
void GroupCall::applyUpdate(const MTPDupdateGroupCallParticipants &update) {
|
2020-11-27 14:50:41 +00:00
|
|
|
const auto version = update.vversion().v;
|
|
|
|
if (version < _version) {
|
|
|
|
return;
|
|
|
|
} else if (version == _version) {
|
|
|
|
applyParticipantsMutes(update);
|
2020-11-24 11:56:46 +00:00
|
|
|
return;
|
2020-11-27 14:50:41 +00:00
|
|
|
} else if (version != _version + 1) {
|
|
|
|
applyParticipantsMutes(update);
|
2020-11-24 11:56:46 +00:00
|
|
|
reload();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
_version = update.vversion().v;
|
2020-11-27 14:50:41 +00:00
|
|
|
applyUpdateChecked(update);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GroupCall::applyUpdateChecked(
|
|
|
|
const MTPDupdateGroupCallParticipants &update) {
|
2020-11-29 15:18:51 +00:00
|
|
|
applyParticipantsSlice(
|
|
|
|
update.vparticipants().v,
|
|
|
|
ApplySliceSource::UpdateReceived);
|
2020-11-24 11:56:46 +00:00
|
|
|
}
|
|
|
|
|
2020-11-28 16:18:51 +00:00
|
|
|
void GroupCall::setJoinMutedLocally(bool muted) {
|
|
|
|
_joinMuted = muted;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GroupCall::joinMuted() const {
|
|
|
|
return _joinMuted;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GroupCall::canChangeJoinMuted() const {
|
|
|
|
return _canChangeJoinMuted;
|
|
|
|
}
|
|
|
|
|
2020-11-29 15:18:51 +00:00
|
|
|
ApiWrap &GroupCall::api() const {
|
|
|
|
return _channel->session().api();
|
|
|
|
}
|
|
|
|
|
2020-11-20 19:25:35 +00:00
|
|
|
} // namespace Data
|