Skip to content
Snippets Groups Projects
Unverified Commit bc9693e6 authored by Sébastien Blin's avatar Sébastien Blin
Browse files

newcallmodel: add isModerator

Change-Id: I600420947f2f47a6a40b88a1405fbb63c92031b4
parent d0b0bee4
No related branches found
No related tags found
No related merge requests found
......@@ -238,6 +238,14 @@ public:
*/
void setActiveParticipant(const QString& confId, const QString& participant);
/**
* Check if a participant is a moderator or not
* @param confId The conference to check
* @param uri Uri of the participant to check (if empty, check current account)
* @return if moderator
*/
bool isModerator(const QString& confId, const QString& uri = "");
Q_SIGNALS:
/**
* Emitted when a call state changes
......
......@@ -725,6 +725,31 @@ NewCallModel::setActiveParticipant(const QString& confId, const QString& partici
CallManager::instance().setActiveParticipant(confId, participant);
}
bool
NewCallModel::isModerator(const QString& confId, const QString& uri)
{
auto call = pimpl_->calls.find(confId);
if (call == pimpl_->calls.end() or not call->second)
return false;
auto ownerUri = owner.profileInfo.uri;
auto uriToCheck = uri;
if (uriToCheck.isEmpty()) {
uriToCheck = ownerUri;
}
auto isModerator = uriToCheck == ownerUri
? call->second->type == lrc::api::call::Type::CONFERENCE
: false;
if (!isModerator && call->second->participantsInfos.size() != 0) {
for (const auto& participant : call->second->participantsInfos) {
if (participant["uri"] == uriToCheck) {
isModerator = participant["isModerator"] == "true";
break;
}
}
}
return isModerator;
}
void
NewCallModel::sendSipMessage(const QString& callId, const QString& body) const
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment