Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jami-libclient
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
savoirfairelinux
jami-libclient
Commits
bc9693e6
Unverified
Commit
bc9693e6
authored
4 years ago
by
Sébastien Blin
Browse files
Options
Downloads
Patches
Plain Diff
newcallmodel: add isModerator
Change-Id: I600420947f2f47a6a40b88a1405fbb63c92031b4
parent
d0b0bee4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/api/newcallmodel.h
+8
-0
8 additions, 0 deletions
src/api/newcallmodel.h
src/newcallmodel.cpp
+25
-0
25 additions, 0 deletions
src/newcallmodel.cpp
with
33 additions
and
0 deletions
src/api/newcallmodel.h
+
8
−
0
View file @
bc9693e6
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/newcallmodel.cpp
+
25
−
0
View file @
bc9693e6
...
...
@@ -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
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment