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
95ad70fc
Commit
95ad70fc
authored
Aug 15, 2022
by
Tijmen de Mes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added fake message stream to session
parent
87339fab
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
2 deletions
+22
-2
sessions.py
blink/sessions.py
+22
-2
No files found.
blink/sessions.py
View file @
95ad70fc
...
...
@@ -52,7 +52,7 @@ from blink.widgets.labels import Status
from
blink.widgets.color
import
ColorHelperMixin
,
ColorUtils
,
cache_result
,
background_color_key
from
blink.widgets.util
import
ContextMenuActions
,
QtDynamicProperty
from
blink.widgets.zrtp
import
ZRTPWidget
from
blink.streams.message
import
MessageStream
__all__
=
[
'ClientConference'
,
'ConferenceDialog'
,
'AudioSessionModel'
,
'AudioSessionListView'
,
'ChatSessionModel'
,
'ChatSessionListView'
,
'SessionManager'
]
...
...
@@ -214,15 +214,25 @@ class ScreenSharingStreamInfo(MSRPStreamInfo):
if
stream
is
not
None
:
self
.
mode
=
stream
.
handler
.
type
class
MessageStreamInfo
(
object
):
def
__init__
(
self
):
self
.
encryption
=
None
self
.
private_key
=
None
def
update
(
self
,
stream
):
if
stream
is
not
None
:
self
.
encryption
=
'OpenPGP'
if
stream
.
can_encrypt
else
None
class
StreamsInfo
(
object
):
__slots__
=
'audio'
,
'video'
,
'chat'
,
'screen_sharing'
__slots__
=
'audio'
,
'video'
,
'chat'
,
'screen_sharing'
,
'messages'
def
__init__
(
self
):
self
.
audio
=
AudioStreamInfo
()
self
.
video
=
VideoStreamInfo
()
self
.
chat
=
ChatStreamInfo
()
self
.
screen_sharing
=
ScreenSharingStreamInfo
()
self
.
messages
=
MessageStreamInfo
()
def
__getitem__
(
self
,
key
):
key
=
key
.
replace
(
'-'
,
'_'
)
...
...
@@ -236,6 +246,7 @@ class StreamsInfo(object):
self
.
video
.
update
(
streams
.
get
(
'video'
))
self
.
chat
.
update
(
streams
.
get
(
'chat'
))
self
.
screen_sharing
.
update
(
streams
.
get
(
'screen-sharing'
))
self
.
messages
.
update
(
streams
.
get
(
'messages'
))
class
SessionInfo
(
object
):
...
...
@@ -449,6 +460,7 @@ class BlinkSession(BlinkSessionBase):
streams
=
StreamListDescriptor
()
items
=
SessionItemsDescriptor
()
fake_streams
=
StreamListDescriptor
()
def
__init__
(
self
):
self
.
_initialize
()
...
...
@@ -684,6 +696,8 @@ class BlinkSession(BlinkSessionBase):
for
stream_description
in
self
.
stream_descriptions
:
if
stream_description
.
type
==
'chat'
:
self
.
chat_type
=
'MSRP'
if
stream_description
.
type
==
'messages'
and
stream_description
.
type
not
in
self
.
fake_streams
:
self
.
fake_streams
.
extend
([
stream_description
.
create_stream
()])
self
.
_sibling
=
sibling
self
.
state
=
'initialized'
self
.
info
.
update
(
self
)
...
...
@@ -1214,6 +1228,9 @@ class BlinkSession(BlinkSessionBase):
def
_NH_ChatStreamSMPVerificationDidEnd
(
self
,
notification
):
self
.
_smp_handler
.
handle_notification
(
notification
)
def
_NH_MessageStreamPGPKeysDidLoad
(
self
,
notification
):
self
.
info
.
streams
.
messages
.
update
(
notification
.
sender
)
def
_NH_BlinkContactDidChange
(
self
,
notification
):
notification
.
center
.
post_notification
(
'BlinkSessionContactDidChange'
,
sender
=
self
)
...
...
@@ -3217,6 +3234,8 @@ class ChatSessionItem(object):
notification
.
center
.
post_notification
(
'ChatSessionItemDidChange'
,
sender
=
self
)
def
_NH_BlinkSessionWillAddStream
(
self
,
notification
):
if
notification
.
data
.
stream
.
type
==
'messages'
:
return
icon_label
=
getattr
(
self
.
widget
,
"
%
s_icon"
%
notification
.
data
.
stream
.
type
.
replace
(
'-'
,
'_'
))
icon_label
.
setEnabled
(
False
)
self
.
widget
.
update_content
(
self
)
...
...
@@ -5228,6 +5247,7 @@ class IncomingDialog(IncomingDialogBase, ui_class):
self
.
note_label
.
setText
(
''
)
self
.
_update_accept_button
()
del
ui_class
,
base_class
...
...
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