Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gajim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eta
gajim
Commits
c131a04d
Commit
c131a04d
authored
17 years ago
by
Yann Leboulanger
Browse files
Options
Downloads
Patches
Plain Diff
request last_status_time and os_info to real jid if we know it. fixes #3304
parent
56afa701
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/common/connection.py
+18
-2
18 additions, 2 deletions
src/common/connection.py
src/common/connection_handlers.py
+13
-4
13 additions, 4 deletions
src/common/connection_handlers.py
src/vcard.py
+14
-4
14 additions, 4 deletions
src/vcard.py
with
45 additions
and
10 deletions
src/common/connection.py
+
18
−
2
View file @
c131a04d
...
...
@@ -133,6 +133,10 @@ class Connection(ConnectionHandlers):
self
.
pep_supported
=
False
# Do we continue connection when we get roster (send presence,get vcard...)
self
.
continue_connect_info
=
None
# To know the groupchat jid associated with a sranza ID. Useful to
# request vcard or os info... to a real JID but act as if it comes from
# the fake jid
self
.
groupchat_jids
=
{}
# {ID : groupchat_jid}
if
USE_GPG
:
self
.
gpg
=
GnuPG
.
GnuPG
(
gajim
.
config
.
get
(
'
use_gpg_agent
'
))
gajim
.
config
.
set
(
'
usegpg
'
,
True
)
...
...
@@ -1058,7 +1062,9 @@ class Connection(ConnectionHandlers):
def
account_changed
(
self
,
new_name
):
self
.
name
=
new_name
def
request_last_status_time
(
self
,
jid
,
resource
):
def
request_last_status_time
(
self
,
jid
,
resource
,
groupchat_jid
=
None
):
'''
groupchat_jid is used when we want to send a request to a real jid
and act as if the answer comes from the groupchat_jid
'''
if
not
self
.
connection
:
return
to_whom_jid
=
jid
...
...
@@ -1066,9 +1072,15 @@ class Connection(ConnectionHandlers):
to_whom_jid
+=
'
/
'
+
resource
iq
=
common
.
xmpp
.
Iq
(
to
=
to_whom_jid
,
typ
=
'
get
'
,
queryNS
=
\
common
.
xmpp
.
NS_LAST
)
id
=
self
.
connection
.
getAnID
()
iq
.
setID
(
id
)
if
groupchat_jid
:
self
.
groupchat_jids
[
id
]
=
groupchat_jid
self
.
connection
.
send
(
iq
)
def
request_os_info
(
self
,
jid
,
resource
):
def
request_os_info
(
self
,
jid
,
resource
,
groupchat_jid
=
None
):
'''
groupchat_jid is used when we want to send a request to a real jid
and act as if the answer comes from the groupchat_jid
'''
if
not
self
.
connection
:
return
# If we are invisible, do not request
...
...
@@ -1080,6 +1092,10 @@ class Connection(ConnectionHandlers):
to_whom_jid
+=
'
/
'
+
resource
iq
=
common
.
xmpp
.
Iq
(
to
=
to_whom_jid
,
typ
=
'
get
'
,
queryNS
=
\
common
.
xmpp
.
NS_VERSION
)
id
=
self
.
connection
.
getAnID
()
iq
.
setID
(
id
)
if
groupchat_jid
:
self
.
groupchat_jids
[
id
]
=
groupchat_jid
self
.
connection
.
send
(
iq
)
def
get_settings
(
self
):
...
...
This diff is collapsed.
Click to expand it.
src/common/connection_handlers.py
+
13
−
4
View file @
c131a04d
...
...
@@ -828,8 +828,7 @@ class ConnectionVcard:
self
.
vcard_sha
=
None
self
.
vcard_shas
=
{}
# sha of contacts
self
.
room_jids
=
[]
# list of gc jids so that vcard are saved in a folder
self
.
groupchat_jids
=
{}
# {ID : groupchat_jid}
def
add_sha
(
self
,
p
,
send_caps
=
True
):
c
=
p
.
setTag
(
'
x
'
,
namespace
=
common
.
xmpp
.
NS_VCARD_UPDATE
)
if
self
.
vcard_sha
is
not
None
:
...
...
@@ -1337,7 +1336,12 @@ class ConnectionHandlers(ConnectionVcard, ConnectionBytestream, ConnectionDisco,
seconds
=
int
(
seconds
)
except
:
return
who
=
helpers
.
get_full_jid_from_iq
(
iq_obj
)
id
=
iq_obj
.
getID
()
if
id
in
self
.
groupchat_jids
:
who
=
self
.
groupchat_jids
[
id
]
del
self
.
groupchat_jids
[
id
]
else
:
who
=
helpers
.
get_full_jid_from_iq
(
iq_obj
)
jid_stripped
,
resource
=
gajim
.
get_room_and_nick_from_fjid
(
who
)
self
.
dispatch
(
'
LAST_STATUS_TIME
'
,
(
jid_stripped
,
resource
,
seconds
,
status
))
...
...
@@ -1352,7 +1356,12 @@ class ConnectionHandlers(ConnectionVcard, ConnectionBytestream, ConnectionDisco,
client_info
+=
'
'
+
qp
.
getTag
(
'
version
'
).
getData
()
if
qp
.
getTag
(
'
os
'
):
os_info
+=
qp
.
getTag
(
'
os
'
).
getData
()
who
=
helpers
.
get_full_jid_from_iq
(
iq_obj
)
id
=
iq_obj
.
getID
()
if
id
in
self
.
groupchat_jids
:
who
=
self
.
groupchat_jids
[
id
]
del
self
.
groupchat_jids
[
id
]
else
:
who
=
helpers
.
get_full_jid_from_iq
(
iq_obj
)
jid_stripped
,
resource
=
gajim
.
get_room_and_nick_from_fjid
(
who
)
self
.
dispatch
(
'
OS_INFO
'
,
(
jid_stripped
,
resource
,
client_info
,
os_info
))
...
...
This diff is collapsed.
Click to expand it.
src/vcard.py
+
14
−
4
View file @
c131a04d
...
...
@@ -329,8 +329,13 @@ class VcardWindow:
self
.
contact
.
status
=
''
# Request list time status
gajim
.
connections
[
self
.
account
].
request_last_status_time
(
self
.
contact
.
jid
,
self
.
contact
.
resource
)
if
self
.
gc_contact
:
j
,
r
=
gajim
.
get_room_and_nick_from_fjid
(
self
.
real_jid
)
gajim
.
connections
[
self
.
account
].
request_last_status_time
(
j
,
r
,
self
.
contact
.
jid
)
else
:
gajim
.
connections
[
self
.
account
].
request_last_status_time
(
self
.
contact
.
jid
,
self
.
contact
.
resource
)
# do not wait for os_info if contact is not connected or has error
# additional check for observer is needed, as show is offline for him
...
...
@@ -338,8 +343,13 @@ class VcardWindow:
and
not
self
.
contact
.
is_observer
():
self
.
os_info_arrived
=
True
else
:
# Request os info if contact is connected
gobject
.
idle_add
(
gajim
.
connections
[
self
.
account
].
request_os_info
,
self
.
contact
.
jid
,
self
.
contact
.
resource
)
if
self
.
gc_contact
:
j
,
r
=
gajim
.
get_room_and_nick_from_fjid
(
self
.
real_jid
)
gobject
.
idle_add
(
gajim
.
connections
[
self
.
account
].
request_os_info
,
j
,
r
,
self
.
contact
.
jid
)
else
:
gobject
.
idle_add
(
gajim
.
connections
[
self
.
account
].
request_os_info
,
self
.
contact
.
jid
,
self
.
contact
.
resource
)
self
.
os_info
=
{
0
:
{
'
resource
'
:
self
.
contact
.
resource
,
'
client
'
:
''
,
'
os
'
:
''
}}
i
=
1
...
...
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