Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vmj-qt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
vmj-qt
Commits
d04a1e78
Commit
d04a1e78
authored
Feb 24, 2016
by
Dan Pascu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Turned some private methods public
parent
d6cf933d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
42 deletions
+42
-42
sessions.py
blink/sessions.py
+42
-42
No files found.
blink/sessions.py
View file @
d04a1e78
...
@@ -92,7 +92,7 @@ class RTPStreamInfo(object):
...
@@ -92,7 +92,7 @@ class RTPStreamInfo(object):
def
codec
(
self
):
def
codec
(
self
):
raise
NotImplementedError
raise
NotImplementedError
def
_
update
(
self
,
stream
):
def
update
(
self
,
stream
):
if
stream
is
not
None
:
if
stream
is
not
None
:
self
.
codec_name
=
stream
.
codec
self
.
codec_name
=
stream
.
codec
self
.
sample_rate
=
stream
.
sample_rate
self
.
sample_rate
=
stream
.
sample_rate
...
@@ -107,7 +107,7 @@ class RTPStreamInfo(object):
...
@@ -107,7 +107,7 @@ class RTPStreamInfo(object):
if
stream
.
session
and
not
stream
.
session
.
account
.
nat_traversal
.
use_ice
:
if
stream
.
session
and
not
stream
.
session
.
account
.
nat_traversal
.
use_ice
:
self
.
ice_status
=
'disabled'
self
.
ice_status
=
'disabled'
def
_
update_statistics
(
self
,
statistics
):
def
update_statistics
(
self
,
statistics
):
if
statistics
:
if
statistics
:
packets
=
statistics
[
'rx'
][
'packets'
]
-
self
.
_total_packets
packets
=
statistics
[
'rx'
][
'packets'
]
-
self
.
_total_packets
packets_lost
=
statistics
[
'rx'
][
'packets_lost'
]
-
self
.
_total_packets_lost
packets_lost
=
statistics
[
'rx'
][
'packets_lost'
]
-
self
.
_total_packets_lost
...
@@ -124,7 +124,7 @@ class RTPStreamInfo(object):
...
@@ -124,7 +124,7 @@ class RTPStreamInfo(object):
self
.
bytes_received
=
statistics
[
'rx'
][
'bytes'
]
self
.
bytes_received
=
statistics
[
'rx'
][
'bytes'
]
self
.
packet_loss
.
append
(
sum
(
self
.
_average_loss_queue
)
/
self
.
average_interval
)
self
.
packet_loss
.
append
(
sum
(
self
.
_average_loss_queue
)
/
self
.
average_interval
)
def
_
reset
(
self
):
def
reset
(
self
):
self
.
__init__
()
self
.
__init__
()
...
@@ -138,7 +138,7 @@ class MSRPStreamInfo(object):
...
@@ -138,7 +138,7 @@ class MSRPStreamInfo(object):
self
.
full_local_path
=
[]
self
.
full_local_path
=
[]
self
.
full_remote_path
=
[]
self
.
full_remote_path
=
[]
def
_
update
(
self
,
stream
):
def
update
(
self
,
stream
):
if
stream
is
not
None
:
if
stream
is
not
None
:
local_uri
=
stream
.
local_uri
local_uri
=
stream
.
local_uri
msrp_transport
=
stream
.
msrp
msrp_transport
=
stream
.
msrp
...
@@ -152,7 +152,7 @@ class MSRPStreamInfo(object):
...
@@ -152,7 +152,7 @@ class MSRPStreamInfo(object):
self
.
transport
=
stream
.
transport
self
.
transport
=
stream
.
transport
self
.
local_address
=
local_uri
.
host
self
.
local_address
=
local_uri
.
host
def
_
reset
(
self
):
def
reset
(
self
):
self
.
__init__
()
self
.
__init__
()
...
@@ -171,8 +171,8 @@ class VideoStreamInfo(RTPStreamInfo):
...
@@ -171,8 +171,8 @@ class VideoStreamInfo(RTPStreamInfo):
def
codec
(
self
):
def
codec
(
self
):
return
'{0.codec_name} {0.framerate:.3g}fps'
.
format
(
self
)
if
self
.
codec_name
else
None
return
'{0.codec_name} {0.framerate:.3g}fps'
.
format
(
self
)
if
self
.
codec_name
else
None
def
_
update
(
self
,
stream
):
def
update
(
self
,
stream
):
super
(
VideoStreamInfo
,
self
)
.
_
update
(
stream
)
super
(
VideoStreamInfo
,
self
)
.
update
(
stream
)
try
:
try
:
self
.
framerate
=
stream
.
producer
.
framerate
self
.
framerate
=
stream
.
producer
.
framerate
except
AttributeError
:
except
AttributeError
:
...
@@ -188,8 +188,8 @@ class ScreenSharingStreamInfo(MSRPStreamInfo):
...
@@ -188,8 +188,8 @@ class ScreenSharingStreamInfo(MSRPStreamInfo):
super
(
ScreenSharingStreamInfo
,
self
)
.
__init__
()
super
(
ScreenSharingStreamInfo
,
self
)
.
__init__
()
self
.
mode
=
None
self
.
mode
=
None
def
_
update
(
self
,
stream
):
def
update
(
self
,
stream
):
super
(
ScreenSharingStreamInfo
,
self
)
.
_
update
(
stream
)
super
(
ScreenSharingStreamInfo
,
self
)
.
update
(
stream
)
if
stream
is
not
None
:
if
stream
is
not
None
:
self
.
mode
=
stream
.
handler
.
type
self
.
mode
=
stream
.
handler
.
type
...
@@ -210,11 +210,11 @@ class StreamsInfo(object):
...
@@ -210,11 +210,11 @@ class StreamsInfo(object):
except
AttributeError
:
except
AttributeError
:
raise
KeyError
(
key
)
raise
KeyError
(
key
)
def
_
update
(
self
,
streams
):
def
update
(
self
,
streams
):
self
.
audio
.
_
update
(
streams
.
get
(
'audio'
))
self
.
audio
.
update
(
streams
.
get
(
'audio'
))
self
.
video
.
_
update
(
streams
.
get
(
'video'
))
self
.
video
.
update
(
streams
.
get
(
'video'
))
self
.
chat
.
_
update
(
streams
.
get
(
'chat'
))
self
.
chat
.
update
(
streams
.
get
(
'chat'
))
self
.
screen_sharing
.
_
update
(
streams
.
get
(
'screen-sharing'
))
self
.
screen_sharing
.
update
(
streams
.
get
(
'screen-sharing'
))
class
SessionInfo
(
object
):
class
SessionInfo
(
object
):
...
@@ -226,14 +226,14 @@ class SessionInfo(object):
...
@@ -226,14 +226,14 @@ class SessionInfo(object):
self
.
remote_user_agent
=
None
self
.
remote_user_agent
=
None
self
.
streams
=
StreamsInfo
()
self
.
streams
=
StreamsInfo
()
def
_
update
(
self
,
session
):
def
update
(
self
,
session
):
sip_session
=
session
.
sip_session
sip_session
=
session
.
sip_session
if
sip_session
is
not
None
:
if
sip_session
is
not
None
:
self
.
transport
=
sip_session
.
transport
self
.
transport
=
sip_session
.
transport
self
.
local_address
=
session
.
account
.
contact
[
self
.
transport
]
.
host
self
.
local_address
=
session
.
account
.
contact
[
self
.
transport
]
.
host
self
.
remote_address
=
sip_session
.
peer_address
# consider reading from sip_session.route if peer_address is None (route can also be None) -Dan
self
.
remote_address
=
sip_session
.
peer_address
# consider reading from sip_session.route if peer_address is None (route can also be None) -Dan
self
.
remote_user_agent
=
sip_session
.
remote_user_agent
self
.
remote_user_agent
=
sip_session
.
remote_user_agent
self
.
streams
.
_
update
(
session
.
streams
)
self
.
streams
.
update
(
session
.
streams
)
class
StreamDescription
(
object
):
class
StreamDescription
(
object
):
...
@@ -622,7 +622,7 @@ class BlinkSession(BlinkSessionBase):
...
@@ -622,7 +622,7 @@ class BlinkSession(BlinkSessionBase):
self
.
contact_uri
=
contact_uri
self
.
contact_uri
=
contact_uri
self
.
uri
=
self
.
_parse_uri
(
contact_uri
.
uri
)
self
.
uri
=
self
.
_parse_uri
(
contact_uri
.
uri
)
self
.
streams
.
extend
(
streams
)
self
.
streams
.
extend
(
streams
)
self
.
info
.
_
update
(
self
)
self
.
info
.
update
(
self
)
self
.
state
=
'connecting'
self
.
state
=
'connecting'
if
reinitialize
:
if
reinitialize
:
notification_center
.
post_notification
(
'BlinkSessionDidReinitializeForIncoming'
,
sender
=
self
)
notification_center
.
post_notification
(
'BlinkSessionDidReinitializeForIncoming'
,
sender
=
self
)
...
@@ -651,7 +651,7 @@ class BlinkSession(BlinkSessionBase):
...
@@ -651,7 +651,7 @@ class BlinkSession(BlinkSessionBase):
self
.
stream_descriptions
=
StreamSet
(
stream_descriptions
)
self
.
stream_descriptions
=
StreamSet
(
stream_descriptions
)
self
.
_sibling
=
sibling
self
.
_sibling
=
sibling
self
.
state
=
'initialized'
self
.
state
=
'initialized'
self
.
info
.
_
update
(
self
)
self
.
info
.
update
(
self
)
if
reinitialize
:
if
reinitialize
:
notification_center
.
post_notification
(
'BlinkSessionDidReinitializeForOutgoing'
,
sender
=
self
)
notification_center
.
post_notification
(
'BlinkSessionDidReinitializeForOutgoing'
,
sender
=
self
)
else
:
else
:
...
@@ -683,7 +683,7 @@ class BlinkSession(BlinkSessionBase):
...
@@ -683,7 +683,7 @@ class BlinkSession(BlinkSessionBase):
self
.
streams
.
extend
(
streams
)
self
.
streams
.
extend
(
streams
)
self
.
info
.
_
update
(
self
)
self
.
info
.
update
(
self
)
notification_center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'session'
,
'media'
,
'statistics'
}))
notification_center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'session'
,
'media'
,
'statistics'
}))
self
.
state
=
'connecting/dns_lookup'
self
.
state
=
'connecting/dns_lookup'
...
@@ -728,7 +728,7 @@ class BlinkSession(BlinkSessionBase):
...
@@ -728,7 +728,7 @@ class BlinkSession(BlinkSessionBase):
for
stream_description
in
stream_descriptions
:
for
stream_description
in
stream_descriptions
:
if
stream_description
.
type
in
self
.
streams
:
if
stream_description
.
type
in
self
.
streams
:
raise
RuntimeError
(
'session already has a stream of type
%
s'
%
stream_description
.
type
)
raise
RuntimeError
(
'session already has a stream of type
%
s'
%
stream_description
.
type
)
self
.
info
.
streams
[
stream_description
.
type
]
.
_
reset
()
self
.
info
.
streams
[
stream_description
.
type
]
.
reset
()
streams
=
[
stream_description
.
create_stream
()
for
stream_description
in
stream_descriptions
]
streams
=
[
stream_description
.
create_stream
()
for
stream_description
in
stream_descriptions
]
self
.
sip_session
.
add_streams
(
streams
)
self
.
sip_session
.
add_streams
(
streams
)
self
.
streams
.
extend
(
streams
)
self
.
streams
.
extend
(
streams
)
...
@@ -754,7 +754,7 @@ class BlinkSession(BlinkSessionBase):
...
@@ -754,7 +754,7 @@ class BlinkSession(BlinkSessionBase):
self
.
sip_session
.
accept_proposal
(
streams
)
self
.
sip_session
.
accept_proposal
(
streams
)
notification_center
=
NotificationCenter
()
notification_center
=
NotificationCenter
()
for
stream
in
streams
:
for
stream
in
streams
:
self
.
info
.
streams
[
stream
.
type
]
.
_
reset
()
self
.
info
.
streams
[
stream
.
type
]
.
reset
()
notification_center
.
post_notification
(
'BlinkSessionWillAddStream'
,
sender
=
self
,
data
=
NotificationData
(
stream
=
stream
))
notification_center
.
post_notification
(
'BlinkSessionWillAddStream'
,
sender
=
self
,
data
=
NotificationData
(
stream
=
stream
))
notification_center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'media'
,
'statistics'
}))
notification_center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'media'
,
'statistics'
}))
...
@@ -901,8 +901,8 @@ class BlinkSession(BlinkSessionBase):
...
@@ -901,8 +901,8 @@ class BlinkSession(BlinkSessionBase):
def
_SH_TimerFired
(
self
):
def
_SH_TimerFired
(
self
):
self
.
info
.
duration
+=
timedelta
(
seconds
=
1
)
self
.
info
.
duration
+=
timedelta
(
seconds
=
1
)
self
.
info
.
streams
.
audio
.
_
update_statistics
(
self
.
streams
.
get
(
'audio'
,
Null
)
.
statistics
)
self
.
info
.
streams
.
audio
.
update_statistics
(
self
.
streams
.
get
(
'audio'
,
Null
)
.
statistics
)
self
.
info
.
streams
.
video
.
_
update_statistics
(
self
.
streams
.
get
(
'video'
,
Null
)
.
statistics
)
self
.
info
.
streams
.
video
.
update_statistics
(
self
.
streams
.
get
(
'video'
,
Null
)
.
statistics
)
notification_center
=
NotificationCenter
()
notification_center
=
NotificationCenter
()
notification_center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'statistics'
}))
notification_center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'statistics'
}))
...
@@ -928,7 +928,7 @@ class BlinkSession(BlinkSessionBase):
...
@@ -928,7 +928,7 @@ class BlinkSession(BlinkSessionBase):
def
_NH_SIPSessionNewOutgoing
(
self
,
notification
):
def
_NH_SIPSessionNewOutgoing
(
self
,
notification
):
self
.
state
=
'connecting'
self
.
state
=
'connecting'
self
.
info
.
_
update
(
self
)
self
.
info
.
update
(
self
)
notification
.
center
.
post_notification
(
'BlinkSessionConnectionProgress'
,
sender
=
self
,
data
=
NotificationData
(
stage
=
'connecting'
))
notification
.
center
.
post_notification
(
'BlinkSessionConnectionProgress'
,
sender
=
self
,
data
=
NotificationData
(
stage
=
'connecting'
))
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'session'
}))
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'session'
}))
...
@@ -939,12 +939,12 @@ class BlinkSession(BlinkSessionBase):
...
@@ -939,12 +939,12 @@ class BlinkSession(BlinkSessionBase):
elif
notification
.
data
.
code
==
183
:
elif
notification
.
data
.
code
==
183
:
self
.
state
=
'connecting/early_media'
self
.
state
=
'connecting/early_media'
notification
.
center
.
post_notification
(
'BlinkSessionConnectionProgress'
,
sender
=
self
,
data
=
NotificationData
(
stage
=
'early_media'
))
notification
.
center
.
post_notification
(
'BlinkSessionConnectionProgress'
,
sender
=
self
,
data
=
NotificationData
(
stage
=
'early_media'
))
self
.
info
.
_
update
(
self
)
self
.
info
.
update
(
self
)
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'session'
,
'media'
}))
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'session'
,
'media'
}))
def
_NH_SIPSessionWillStart
(
self
,
notification
):
def
_NH_SIPSessionWillStart
(
self
,
notification
):
self
.
state
=
'connecting/starting'
self
.
state
=
'connecting/starting'
self
.
info
.
_
update
(
self
)
self
.
info
.
update
(
self
)
notification
.
center
.
post_notification
(
'BlinkSessionConnectionProgress'
,
sender
=
self
,
data
=
NotificationData
(
stage
=
'starting'
))
notification
.
center
.
post_notification
(
'BlinkSessionConnectionProgress'
,
sender
=
self
,
data
=
NotificationData
(
stage
=
'starting'
))
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'session'
,
'media'
}))
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'session'
,
'media'
}))
...
@@ -956,7 +956,7 @@ class BlinkSession(BlinkSessionBase):
...
@@ -956,7 +956,7 @@ class BlinkSession(BlinkSessionBase):
if
self
.
state
not
in
(
'ending'
,
'ended'
,
'deleted'
):
if
self
.
state
not
in
(
'ending'
,
'ended'
,
'deleted'
):
self
.
state
=
'connected'
self
.
state
=
'connected'
self
.
timer
.
start
()
self
.
timer
.
start
()
self
.
info
.
_
update
(
self
)
self
.
info
.
update
(
self
)
notification
.
center
.
post_notification
(
'BlinkSessionDidConnect'
,
sender
=
self
)
notification
.
center
.
post_notification
(
'BlinkSessionDidConnect'
,
sender
=
self
)
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'session'
,
'media'
}))
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'session'
,
'media'
}))
...
@@ -1001,7 +1001,7 @@ class BlinkSession(BlinkSessionBase):
...
@@ -1001,7 +1001,7 @@ class BlinkSession(BlinkSessionBase):
if
self
.
state
not
in
(
'ending'
,
'ended'
,
'deleted'
):
if
self
.
state
not
in
(
'ending'
,
'ended'
,
'deleted'
):
self
.
state
=
'connected'
self
.
state
=
'connected'
if
accepted_streams
:
if
accepted_streams
:
self
.
info
.
streams
.
_
update
(
self
.
streams
)
self
.
info
.
streams
.
update
(
self
.
streams
)
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'media'
}))
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'media'
}))
def
_NH_SIPSessionProposalRejected
(
self
,
notification
):
def
_NH_SIPSessionProposalRejected
(
self
,
notification
):
...
@@ -1097,7 +1097,7 @@ class BlinkSession(BlinkSessionBase):
...
@@ -1097,7 +1097,7 @@ class BlinkSession(BlinkSessionBase):
def
_NH_RTPStreamZRTPReceivedSAS
(
self
,
notification
):
def
_NH_RTPStreamZRTPReceivedSAS
(
self
,
notification
):
stream
=
notification
.
sender
stream
=
notification
.
sender
self
.
info
.
streams
[
stream
.
type
]
.
_
update
(
stream
)
self
.
info
.
streams
[
stream
.
type
]
.
update
(
stream
)
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'media'
}))
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'media'
}))
chat_stream
=
self
.
streams
.
get
(
'chat'
)
chat_stream
=
self
.
streams
.
get
(
'chat'
)
if
stream
.
session
.
remote_focus
and
not
notification
.
data
.
verified
and
chat_stream
is
not
None
and
'com.ag-projects.zrtp-sas'
in
chat_stream
.
chatroom_capabilities
:
if
stream
.
session
.
remote_focus
and
not
notification
.
data
.
verified
and
chat_stream
is
not
None
and
'com.ag-projects.zrtp-sas'
in
chat_stream
.
chatroom_capabilities
:
...
@@ -1108,23 +1108,23 @@ class BlinkSession(BlinkSessionBase):
...
@@ -1108,23 +1108,23 @@ class BlinkSession(BlinkSessionBase):
chat_stream
.
send_message
(
notification
.
data
.
sas
,
'application/blink-zrtp-sas'
)
chat_stream
.
send_message
(
notification
.
data
.
sas
,
'application/blink-zrtp-sas'
)
def
_NH_RTPStreamZRTPVerifiedStateChanged
(
self
,
notification
):
def
_NH_RTPStreamZRTPVerifiedStateChanged
(
self
,
notification
):
self
.
info
.
streams
[
notification
.
sender
.
type
]
.
_
update
(
notification
.
sender
)
self
.
info
.
streams
[
notification
.
sender
.
type
]
.
update
(
notification
.
sender
)
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'media'
}))
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'media'
}))
def
_NH_RTPStreamZRTPPeerNameChanged
(
self
,
notification
):
def
_NH_RTPStreamZRTPPeerNameChanged
(
self
,
notification
):
self
.
info
.
streams
[
notification
.
sender
.
type
]
.
_
update
(
notification
.
sender
)
self
.
info
.
streams
[
notification
.
sender
.
type
]
.
update
(
notification
.
sender
)
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'media'
}))
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'media'
}))
def
_NH_RTPStreamDidEnableEncryption
(
self
,
notification
):
def
_NH_RTPStreamDidEnableEncryption
(
self
,
notification
):
self
.
info
.
streams
[
notification
.
sender
.
type
]
.
_
update
(
notification
.
sender
)
self
.
info
.
streams
[
notification
.
sender
.
type
]
.
update
(
notification
.
sender
)
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'media'
}))
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'media'
}))
def
_NH_RTPStreamDidNotEnableEncryption
(
self
,
notification
):
def
_NH_RTPStreamDidNotEnableEncryption
(
self
,
notification
):
self
.
info
.
streams
[
notification
.
sender
.
type
]
.
_
update
(
notification
.
sender
)
self
.
info
.
streams
[
notification
.
sender
.
type
]
.
update
(
notification
.
sender
)
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'media'
}))
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'media'
}))
def
_NH_VideoStreamRemoteFormatDidChange
(
self
,
notification
):
def
_NH_VideoStreamRemoteFormatDidChange
(
self
,
notification
):
self
.
info
.
streams
.
video
.
_
update
(
notification
.
sender
)
self
.
info
.
streams
.
video
.
update
(
notification
.
sender
)
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'media'
}))
notification
.
center
.
post_notification
(
'BlinkSessionInfoUpdated'
,
sender
=
self
,
data
=
NotificationData
(
elements
=
{
'media'
}))
def
_NH_BlinkContactDidChange
(
self
,
notification
):
def
_NH_BlinkContactDidChange
(
self
,
notification
):
...
@@ -1206,7 +1206,7 @@ class ConferenceParticipant(object):
...
@@ -1206,7 +1206,7 @@ class ConferenceParticipant(object):
request_status
=
property
(
_get_request_status
,
_set_request_status
)
request_status
=
property
(
_get_request_status
,
_set_request_status
)
del
_get_request_status
,
_set_request_status
del
_get_request_status
,
_set_request_status
def
_
update
(
self
,
data
):
def
update
(
self
,
data
):
old_values
=
dict
(
active_media
=
self
.
active_media
.
copy
(),
display_name
=
self
.
display_name
,
on_hold
=
self
.
on_hold
)
old_values
=
dict
(
active_media
=
self
.
active_media
.
copy
(),
display_name
=
self
.
display_name
,
on_hold
=
self
.
on_hold
)
self
.
display_name
=
data
.
display_text
.
value
if
data
.
display_text
else
None
self
.
display_name
=
data
.
display_text
.
value
if
data
.
display_text
else
None
self
.
active_media
.
clear
()
self
.
active_media
.
clear
()
...
@@ -1307,17 +1307,17 @@ class ServerConference(object):
...
@@ -1307,17 +1307,17 @@ class ServerConference(object):
for
participant
in
confirmed_participants
:
for
participant
in
confirmed_participants
:
participant
.
request_status
=
None
participant
.
request_status
=
None
participant
.
_
update
(
users
[
participant
.
uri
])
participant
.
update
(
users
[
participant
.
uri
])
self
.
pending_additions
.
remove
(
participant
)
self
.
pending_additions
.
remove
(
participant
)
notification
.
center
.
post_notification
(
'BlinkSessionDidAddParticipant'
,
sender
=
self
.
session
,
data
=
NotificationData
(
participant
=
participant
))
notification
.
center
.
post_notification
(
'BlinkSessionDidAddParticipant'
,
sender
=
self
.
session
,
data
=
NotificationData
(
participant
=
participant
))
for
participant
in
updated_participants
:
for
participant
in
updated_participants
:
participant
.
_
update
(
users
[
participant
.
uri
])
participant
.
update
(
users
[
participant
.
uri
])
for
uri
in
added_users
:
for
uri
in
added_users
:
contact
,
contact_uri
=
URIUtils
.
find_contact
(
uri
)
contact
,
contact_uri
=
URIUtils
.
find_contact
(
uri
)
participant
=
ConferenceParticipant
(
contact
,
contact_uri
)
participant
=
ConferenceParticipant
(
contact
,
contact_uri
)
participant
.
_
update
(
users
[
participant
.
uri
])
participant
.
update
(
users
[
participant
.
uri
])
self
.
participants
[
participant
.
uri
]
=
participant
self
.
participants
[
participant
.
uri
]
=
participant
notification
.
center
.
post_notification
(
'BlinkSessionWillAddParticipant'
,
sender
=
self
.
session
,
data
=
NotificationData
(
participant
=
participant
))
notification
.
center
.
post_notification
(
'BlinkSessionWillAddParticipant'
,
sender
=
self
.
session
,
data
=
NotificationData
(
participant
=
participant
))
notification
.
center
.
post_notification
(
'BlinkSessionDidAddParticipant'
,
sender
=
self
.
session
,
data
=
NotificationData
(
participant
=
participant
))
notification
.
center
.
post_notification
(
'BlinkSessionDidAddParticipant'
,
sender
=
self
.
session
,
data
=
NotificationData
(
participant
=
participant
))
...
@@ -1507,7 +1507,7 @@ class AudioSessionWidget(base_class, ui_class):
...
@@ -1507,7 +1507,7 @@ class AudioSessionWidget(base_class, ui_class):
session
.
zrtp_widget
.
show
()
session
.
zrtp_widget
.
show
()
session
.
zrtp_widget
.
peer_name_value
.
setFocus
(
Qt
.
OtherFocusReason
)
session
.
zrtp_widget
.
peer_name_value
.
setFocus
(
Qt
.
OtherFocusReason
)
def
_
update_rtp_encryption_icon
(
self
):
def
update_rtp_encryption_icon
(
self
):
stream
=
self
.
session
.
audio_stream
stream
=
self
.
session
.
audio_stream
stream_info
=
self
.
session
.
blink_session
.
info
.
streams
.
audio
stream_info
=
self
.
session
.
blink_session
.
info
.
streams
.
audio
if
self
.
srtp_label
.
isEnabled
()
and
stream_info
.
encryption
==
'ZRTP'
:
if
self
.
srtp_label
.
isEnabled
()
and
stream_info
.
encryption
==
'ZRTP'
:
...
@@ -1523,10 +1523,10 @@ class AudioSessionWidget(base_class, ui_class):
...
@@ -1523,10 +1523,10 @@ class AudioSessionWidget(base_class, ui_class):
if
watched
is
self
.
srtp_label
:
if
watched
is
self
.
srtp_label
:
if
event_type
==
QEvent
.
Enter
:
if
event_type
==
QEvent
.
Enter
:
watched
.
hovered
=
True
watched
.
hovered
=
True
self
.
_
update_rtp_encryption_icon
()
self
.
update_rtp_encryption_icon
()
elif
event_type
==
QEvent
.
Leave
:
elif
event_type
==
QEvent
.
Leave
:
watched
.
hovered
=
False
watched
.
hovered
=
False
self
.
_
update_rtp_encryption_icon
()
self
.
update_rtp_encryption_icon
()
elif
event_type
==
QEvent
.
EnabledChange
and
not
watched
.
isEnabled
():
elif
event_type
==
QEvent
.
EnabledChange
and
not
watched
.
isEnabled
():
watched
.
setPixmap
(
self
.
pixmaps
.
grey_lock
)
watched
.
setPixmap
(
self
.
pixmaps
.
grey_lock
)
elif
event_type
in
(
QEvent
.
MouseButtonPress
,
QEvent
.
MouseButtonDblClick
)
and
event
.
button
()
==
Qt
.
LeftButton
and
event
.
modifiers
()
==
Qt
.
NoModifier
and
watched
.
isEnabled
():
elif
event_type
in
(
QEvent
.
MouseButtonPress
,
QEvent
.
MouseButtonDblClick
)
and
event
.
button
()
==
Qt
.
LeftButton
and
event
.
modifiers
()
==
Qt
.
NoModifier
and
watched
.
isEnabled
():
...
@@ -1939,7 +1939,7 @@ class AudioSessionItem(object):
...
@@ -1939,7 +1939,7 @@ class AudioSessionItem(object):
self
.
widget
.
srtp_label
.
setToolTip
(
u'Media is encrypted using
%
s (
%
s)'
%
(
audio_info
.
encryption
,
audio_info
.
encryption_cipher
))
self
.
widget
.
srtp_label
.
setToolTip
(
u'Media is encrypted using
%
s (
%
s)'
%
(
audio_info
.
encryption
,
audio_info
.
encryption_cipher
))
else
:
else
:
self
.
widget
.
srtp_label
.
setToolTip
(
u'Media is not encrypted'
)
self
.
widget
.
srtp_label
.
setToolTip
(
u'Media is not encrypted'
)
self
.
widget
.
_
update_rtp_encryption_icon
()
self
.
widget
.
update_rtp_encryption_icon
()
self
.
srtp
=
audio_info
.
encryption
is
not
None
self
.
srtp
=
audio_info
.
encryption
is
not
None
if
'statistics'
in
notification
.
data
.
elements
:
if
'statistics'
in
notification
.
data
.
elements
:
self
.
widget
.
duration_label
.
value
=
self
.
blink_session
.
info
.
duration
self
.
widget
.
duration_label
.
value
=
self
.
blink_session
.
info
.
duration
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment