2008-08-15 19:31:51 +02:00
|
|
|
# -*- coding:utf-8 -*-
|
2008-08-15 05:20:23 +02:00
|
|
|
## src/common/connection_handlers.py
|
2006-03-19 15:54:00 +01:00
|
|
|
##
|
2008-08-15 05:20:23 +02:00
|
|
|
## Copyright (C) 2006 Dimitur Kirov <dkirov AT gmail.com>
|
2008-08-15 19:31:51 +02:00
|
|
|
## Junglecow J <junglecow AT gmail.com>
|
2008-08-15 05:20:23 +02:00
|
|
|
## Copyright (C) 2006-2007 Tomasz Melcer <liori AT exroot.org>
|
|
|
|
## Travis Shirk <travis AT pobox.com>
|
|
|
|
## Nikos Kouremenos <kourem AT gmail.com>
|
2014-01-02 09:33:54 +01:00
|
|
|
## Copyright (C) 2006-2014 Yann Leboulanger <asterix AT lagaule.org>
|
2008-08-15 05:20:23 +02:00
|
|
|
## Copyright (C) 2007 Julien Pivotto <roidelapluie AT gmail.com>
|
|
|
|
## Copyright (C) 2007-2008 Brendan Taylor <whateley AT gmail.com>
|
|
|
|
## Jean-Marie Traissard <jim AT lapin.org>
|
|
|
|
## Stephan Erb <steve-e AT h3c.de>
|
|
|
|
## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
|
2006-03-19 15:54:00 +01:00
|
|
|
##
|
2007-12-12 09:44:46 +01:00
|
|
|
## This file is part of Gajim.
|
|
|
|
##
|
|
|
|
## Gajim is free software; you can redistribute it and/or modify
|
2006-03-19 15:54:00 +01:00
|
|
|
## it under the terms of the GNU General Public License as published
|
2007-12-12 09:44:46 +01:00
|
|
|
## by the Free Software Foundation; version 3 only.
|
2006-03-19 15:54:00 +01:00
|
|
|
##
|
2007-12-12 09:44:46 +01:00
|
|
|
## Gajim is distributed in the hope that it will be useful,
|
2006-03-19 15:54:00 +01:00
|
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2008-08-15 05:20:23 +02:00
|
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2006-03-19 15:54:00 +01:00
|
|
|
## GNU General Public License for more details.
|
|
|
|
##
|
2007-12-12 09:44:46 +01:00
|
|
|
## You should have received a copy of the GNU General Public License
|
2008-08-15 05:20:23 +02:00
|
|
|
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
2007-12-12 09:44:46 +01:00
|
|
|
##
|
2006-03-19 15:54:00 +01:00
|
|
|
|
|
|
|
import os
|
2006-03-21 16:57:44 +01:00
|
|
|
import base64
|
2008-12-03 23:07:44 +01:00
|
|
|
import operator
|
2009-01-08 17:51:26 +01:00
|
|
|
import hashlib
|
2006-03-19 15:54:00 +01:00
|
|
|
|
2017-02-07 20:56:26 +01:00
|
|
|
from time import (altzone, daylight, gmtime, localtime, strftime,
|
2010-02-08 15:08:40 +01:00
|
|
|
time as time_time, timezone, tzname)
|
2017-02-07 20:56:26 +01:00
|
|
|
|
|
|
|
from gi.repository import GLib
|
2006-03-19 15:54:00 +01:00
|
|
|
|
2012-12-09 21:37:51 +01:00
|
|
|
import nbxmpp
|
2013-01-01 21:06:16 +01:00
|
|
|
from common import caps_cache as capscache
|
2006-03-19 15:54:00 +01:00
|
|
|
|
2013-07-28 19:38:49 +02:00
|
|
|
from common.pep import LOCATION_DATA
|
2006-03-19 15:54:00 +01:00
|
|
|
from common import helpers
|
|
|
|
from common import gajim
|
2007-08-09 17:39:18 +02:00
|
|
|
from common import exceptions
|
2010-08-24 09:15:42 +02:00
|
|
|
from common import dataforms
|
2010-08-11 08:44:49 +02:00
|
|
|
from common import jingle_xtls
|
2006-07-17 15:40:25 +02:00
|
|
|
from common.commands import ConnectionCommands
|
2006-08-20 12:18:20 +02:00
|
|
|
from common.pubsub import ConnectionPubSub
|
2009-12-10 20:06:46 +01:00
|
|
|
from common.protocol.caps import ConnectionCaps
|
2010-02-22 16:29:01 +01:00
|
|
|
from common.protocol.bytestream import ConnectionSocks5Bytestream
|
2010-08-16 14:33:50 +02:00
|
|
|
from common.protocol.bytestream import ConnectionIBBytestream
|
2014-11-11 15:28:24 +01:00
|
|
|
from common.message_archiving import ConnectionArchive136
|
|
|
|
from common.message_archiving import ConnectionArchive313
|
2010-08-28 00:25:07 +02:00
|
|
|
from common.connection_handlers_events import *
|
2010-08-11 18:43:41 +02:00
|
|
|
|
2010-07-20 10:35:38 +02:00
|
|
|
from common import ged
|
|
|
|
from common import nec
|
2008-08-18 18:35:14 +02:00
|
|
|
from common.nec import NetworkEvent
|
2010-09-14 19:31:35 +02:00
|
|
|
|
2011-11-06 21:42:04 +01:00
|
|
|
from common.jingle import ConnectionJingle
|
2006-03-19 15:54:00 +01:00
|
|
|
|
2008-12-24 13:11:02 +01:00
|
|
|
import logging
|
|
|
|
log = logging.getLogger('gajim.c.connection_handlers')
|
|
|
|
|
2006-03-19 15:54:00 +01:00
|
|
|
# kind of events we can wait for an answer
|
|
|
|
VCARD_PUBLISHED = 'vcard_published'
|
|
|
|
VCARD_ARRIVED = 'vcard_arrived'
|
2006-05-01 20:29:12 +02:00
|
|
|
AGENT_REMOVED = 'agent_removed'
|
2006-09-13 18:47:58 +02:00
|
|
|
METACONTACTS_ARRIVED = 'metacontacts_arrived'
|
2009-06-27 17:56:04 +02:00
|
|
|
ROSTER_ARRIVED = 'roster_arrived'
|
2010-12-11 12:57:09 +01:00
|
|
|
DELIMITER_ARRIVED = 'delimiter_arrived'
|
2006-11-18 21:52:28 +01:00
|
|
|
PRIVACY_ARRIVED = 'privacy_arrived'
|
2013-03-30 23:13:48 +01:00
|
|
|
BLOCKING_ARRIVED = 'blocking_arrived'
|
2008-02-15 23:55:21 +01:00
|
|
|
PEP_CONFIG = 'pep_config'
|
2006-03-19 15:54:00 +01:00
|
|
|
HAS_IDLE = True
|
|
|
|
try:
|
2010-02-08 15:08:40 +01:00
|
|
|
# import idle
|
|
|
|
import common.sleepy
|
2008-10-11 11:37:13 +02:00
|
|
|
except Exception:
|
2010-02-08 15:08:40 +01:00
|
|
|
log.debug(_('Unable to load idle module'))
|
|
|
|
HAS_IDLE = False
|
2006-03-19 15:54:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
class ConnectionDisco:
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
|
|
|
Holds xmpppy handlers and public methods for discover services
|
|
|
|
"""
|
|
|
|
|
2010-10-06 21:11:23 +02:00
|
|
|
def discoverItems(self, jid, node=None, id_prefix=None):
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
|
|
|
According to XEP-0030:
|
2010-10-06 21:11:23 +02:00
|
|
|
jid is mandatory;
|
|
|
|
name, node, action is optional.
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
2013-07-30 20:09:52 +02:00
|
|
|
id_ = self._discover(nbxmpp.NS_DISCO_ITEMS, jid, node, id_prefix)
|
|
|
|
self.disco_items_ids.append(id_)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2010-10-06 21:11:23 +02:00
|
|
|
def discoverInfo(self, jid, node=None, id_prefix=None):
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
|
|
|
According to XEP-0030:
|
2010-10-06 21:11:23 +02:00
|
|
|
For identity: category, type is mandatory, name is optional.
|
|
|
|
For feature: var is mandatory.
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
2013-07-30 20:09:52 +02:00
|
|
|
id_ = self._discover(nbxmpp.NS_DISCO_INFO, jid, node, id_prefix)
|
|
|
|
self.disco_info_ids.append(id_)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def request_register_agent_info(self, agent):
|
|
|
|
if not self.connection or self.connected < 2:
|
|
|
|
return None
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq('get', nbxmpp.NS_REGISTER, to=agent)
|
2010-02-08 15:08:40 +01:00
|
|
|
id_ = self.connection.getAnID()
|
|
|
|
iq.setID(id_)
|
|
|
|
# Wait the answer during 30 secondes
|
|
|
|
self.awaiting_timeouts[gajim.idlequeue.current_time() + 30] = (id_,
|
2010-10-06 21:11:23 +02:00
|
|
|
_('Registration information for transport %s has not arrived in '
|
|
|
|
'time') % agent)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.SendAndCallForResponse(iq, self._ReceivedRegInfo,
|
2010-10-06 21:11:23 +02:00
|
|
|
{'agent': agent})
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _agent_registered_cb(self, con, resp, agent):
|
|
|
|
if resp.getType() == 'result':
|
2011-11-22 19:25:15 +01:00
|
|
|
gajim.nec.push_incoming_event(InformationEvent(None, conn=self,
|
|
|
|
level='info', pri_txt=_('Registration succeeded'), sec_txt=_(
|
|
|
|
'Registration with agent %s succeeded') % agent))
|
2010-02-08 15:08:40 +01:00
|
|
|
self.request_subscription(agent, auto_auth=True)
|
|
|
|
self.agent_registrations[agent]['roster_push'] = True
|
|
|
|
if self.agent_registrations[agent]['sub_received']:
|
2012-12-09 21:37:51 +01:00
|
|
|
p = nbxmpp.Presence(agent, 'subscribed')
|
2010-02-08 15:08:40 +01:00
|
|
|
p = self.add_sha(p)
|
|
|
|
self.connection.send(p)
|
|
|
|
if resp.getType() == 'error':
|
2011-11-22 19:25:15 +01:00
|
|
|
gajim.nec.push_incoming_event(InformationEvent(None, conn=self,
|
|
|
|
level='error', pri_txt=_('Registration failed'), sec_txt=_(
|
|
|
|
'Registration with agent %(agent)s failed with error %(error)s:'
|
|
|
|
' %(error_msg)s') % {'agent': agent, 'error': resp.getError(),
|
2010-10-06 21:11:23 +02:00
|
|
|
'error_msg': resp.getErrorMsg()}))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2010-10-06 21:11:23 +02:00
|
|
|
def register_agent(self, agent, info, is_form=False):
|
2010-02-08 15:08:40 +01:00
|
|
|
if not self.connection or self.connected < 2:
|
|
|
|
return
|
|
|
|
if is_form:
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq('set', nbxmpp.NS_REGISTER, to=agent)
|
2011-10-31 10:47:28 +01:00
|
|
|
query = iq.setQuery()
|
2010-02-08 15:08:40 +01:00
|
|
|
info.setAttr('type', 'submit')
|
|
|
|
query.addChild(node=info)
|
2010-10-06 21:11:23 +02:00
|
|
|
self.connection.SendAndCallForResponse(iq,
|
|
|
|
self._agent_registered_cb, {'agent': agent})
|
2010-02-08 15:08:40 +01:00
|
|
|
else:
|
|
|
|
# fixed: blocking
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.features_nb.register(self.connection, agent, info,
|
2010-10-06 21:11:23 +02:00
|
|
|
self._agent_registered_cb, {'agent': agent})
|
2010-02-08 15:08:40 +01:00
|
|
|
self.agent_registrations[agent] = {'roster_push': False,
|
2010-10-06 21:11:23 +02:00
|
|
|
'sub_received': False}
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _discover(self, ns, jid, node=None, id_prefix=None):
|
|
|
|
if not self.connection or self.connected < 2:
|
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='get', to=jid, queryNS=ns)
|
2013-07-30 20:09:52 +02:00
|
|
|
id_ = self.connection.getAnID()
|
2010-02-08 15:08:40 +01:00
|
|
|
if id_prefix:
|
2013-07-30 20:09:52 +02:00
|
|
|
id_ = id_prefix + id_
|
|
|
|
iq.setID(id_)
|
2010-02-08 15:08:40 +01:00
|
|
|
if node:
|
|
|
|
iq.setQuerynode(node)
|
|
|
|
self.connection.send(iq)
|
2013-07-30 20:09:52 +02:00
|
|
|
return id_
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _ReceivedRegInfo(self, con, resp, agent):
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.features_nb._ReceivedRegInfo(con, resp, agent)
|
2010-02-08 15:08:40 +01:00
|
|
|
self._IqCB(con, resp)
|
|
|
|
|
|
|
|
def _discoGetCB(self, con, iq_obj):
|
|
|
|
"""
|
|
|
|
Get disco info
|
|
|
|
"""
|
|
|
|
if not self.connection or self.connected < 2:
|
|
|
|
return
|
|
|
|
frm = helpers.get_full_jid_from_iq(iq_obj)
|
2013-01-01 21:06:16 +01:00
|
|
|
to = iq_obj.getAttr('to')
|
|
|
|
id_ = iq_obj.getAttr('id')
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(to=frm, typ='result', queryNS=nbxmpp.NS_DISCO, frm=to)
|
2010-02-08 15:08:40 +01:00
|
|
|
iq.setAttr('id', id_)
|
|
|
|
query = iq.setTag('query')
|
2010-10-06 21:11:23 +02:00
|
|
|
query.setAttr('node', 'http://gajim.org#' + gajim.version.split('-', 1)[
|
|
|
|
0])
|
2012-12-09 21:37:51 +01:00
|
|
|
for f in (nbxmpp.NS_BYTESTREAM, nbxmpp.NS_SI, nbxmpp.NS_FILE,
|
|
|
|
nbxmpp.NS_COMMANDS, nbxmpp.NS_JINGLE_FILE_TRANSFER,
|
|
|
|
nbxmpp.NS_JINGLE_XTLS, nbxmpp.NS_PUBKEY_PUBKEY, nbxmpp.NS_PUBKEY_REVOKE,
|
|
|
|
nbxmpp.NS_PUBKEY_ATTEST):
|
|
|
|
feature = nbxmpp.Node('feature')
|
2010-02-08 15:08:40 +01:00
|
|
|
feature.setAttr('var', f)
|
|
|
|
query.addChild(node=feature)
|
|
|
|
|
|
|
|
self.connection.send(iq)
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _DiscoverItemsErrorCB(self, con, iq_obj):
|
|
|
|
log.debug('DiscoverItemsErrorCB')
|
2010-11-29 12:53:50 +01:00
|
|
|
gajim.nec.push_incoming_event(AgentItemsErrorReceivedEvent(None,
|
|
|
|
conn=self, stanza=iq_obj))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _DiscoverItemsCB(self, con, iq_obj):
|
|
|
|
log.debug('DiscoverItemsCB')
|
2010-11-29 12:53:50 +01:00
|
|
|
gajim.nec.push_incoming_event(AgentItemsReceivedEvent(None, conn=self,
|
|
|
|
stanza=iq_obj))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _DiscoverItemsGetCB(self, con, iq_obj):
|
|
|
|
log.debug('DiscoverItemsGetCB')
|
|
|
|
|
|
|
|
if not self.connection or self.connected < 2:
|
|
|
|
return
|
|
|
|
|
|
|
|
if self.commandItemsQuery(con, iq_obj):
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
2010-02-08 15:08:40 +01:00
|
|
|
node = iq_obj.getTagAttr('query', 'node')
|
|
|
|
if node is None:
|
|
|
|
result = iq_obj.buildReply('result')
|
|
|
|
self.connection.send(result)
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
|
|
|
if node == nbxmpp.NS_COMMANDS:
|
2010-02-08 15:08:40 +01:00
|
|
|
self.commandListQuery(con, iq_obj)
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _DiscoverInfoGetCB(self, con, iq_obj):
|
|
|
|
log.debug('DiscoverInfoGetCB')
|
|
|
|
if not self.connection or self.connected < 2:
|
|
|
|
return
|
2011-10-31 10:47:28 +01:00
|
|
|
node = iq_obj.getQuerynode()
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
if self.commandInfoQuery(con, iq_obj):
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2013-01-01 21:06:16 +01:00
|
|
|
id_ = iq_obj.getAttr('id')
|
2010-02-08 15:08:40 +01:00
|
|
|
if id_[:6] == 'Gajim_':
|
|
|
|
# We get this request from echo.server
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
iq = iq_obj.buildReply('result')
|
2011-10-31 10:47:28 +01:00
|
|
|
q = iq.setQuery()
|
2010-02-08 15:08:40 +01:00
|
|
|
if node:
|
|
|
|
q.setAttr('node', node)
|
2010-10-06 21:11:23 +02:00
|
|
|
q.addChild('identity', attrs=gajim.gajim_identity)
|
2010-02-08 15:08:40 +01:00
|
|
|
client_version = 'http://gajim.org#' + gajim.caps_hash[self.name]
|
|
|
|
|
|
|
|
if node in (None, client_version):
|
|
|
|
for f in gajim.gajim_common_features:
|
2010-10-06 21:11:23 +02:00
|
|
|
q.addChild('feature', attrs={'var': f})
|
2010-02-08 15:08:40 +01:00
|
|
|
for f in gajim.gajim_optional_features[self.name]:
|
2010-10-06 21:11:23 +02:00
|
|
|
q.addChild('feature', attrs={'var': f})
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
if q.getChildren():
|
|
|
|
self.connection.send(iq)
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _DiscoverInfoErrorCB(self, con, iq_obj):
|
|
|
|
log.debug('DiscoverInfoErrorCB')
|
2010-11-29 12:53:50 +01:00
|
|
|
gajim.nec.push_incoming_event(AgentInfoErrorReceivedEvent(None,
|
|
|
|
conn=self, stanza=iq_obj))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _DiscoverInfoCB(self, con, iq_obj):
|
|
|
|
log.debug('DiscoverInfoCB')
|
|
|
|
if not self.connection or self.connected < 2:
|
|
|
|
return
|
2010-11-29 12:53:50 +01:00
|
|
|
gajim.nec.push_incoming_event(AgentInfoReceivedEvent(None, conn=self,
|
|
|
|
stanza=iq_obj))
|
2006-03-19 15:54:00 +01:00
|
|
|
|
|
|
|
class ConnectionVcard:
|
2010-02-08 15:08:40 +01:00
|
|
|
def __init__(self):
|
|
|
|
self.vcard_sha = None
|
|
|
|
self.vcard_shas = {} # sha of contacts
|
2010-10-06 21:11:23 +02:00
|
|
|
# list of gc jids so that vcard are saved in a folder
|
|
|
|
self.room_jids = []
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2010-10-06 21:11:23 +02:00
|
|
|
def add_sha(self, p, send_caps=True):
|
2012-12-09 21:37:51 +01:00
|
|
|
c = p.setTag('x', namespace=nbxmpp.NS_VCARD_UPDATE)
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.vcard_sha is not None:
|
|
|
|
c.setTagData('photo', self.vcard_sha)
|
|
|
|
if send_caps:
|
|
|
|
return self._add_caps(p)
|
|
|
|
return p
|
|
|
|
|
|
|
|
def _add_caps(self, p):
|
|
|
|
''' advertise our capabilities in presence stanza (xep-0115)'''
|
2012-12-09 21:37:51 +01:00
|
|
|
c = p.setTag('c', namespace=nbxmpp.NS_CAPS)
|
2010-02-08 15:08:40 +01:00
|
|
|
c.setAttr('hash', 'sha-1')
|
|
|
|
c.setAttr('node', 'http://gajim.org')
|
|
|
|
c.setAttr('ver', gajim.caps_hash[self.name])
|
|
|
|
return p
|
|
|
|
|
|
|
|
def _node_to_dict(self, node):
|
|
|
|
dict_ = {}
|
|
|
|
for info in node.getChildren():
|
|
|
|
name = info.getName()
|
|
|
|
if name in ('ADR', 'TEL', 'EMAIL'): # we can have several
|
|
|
|
dict_.setdefault(name, [])
|
|
|
|
entry = {}
|
|
|
|
for c in info.getChildren():
|
|
|
|
entry[c.getName()] = c.getData()
|
|
|
|
dict_[name].append(entry)
|
|
|
|
elif info.getChildren() == []:
|
|
|
|
dict_[name] = info.getData()
|
|
|
|
else:
|
|
|
|
dict_[name] = {}
|
|
|
|
for c in info.getChildren():
|
|
|
|
dict_[name][c.getName()] = c.getData()
|
|
|
|
return dict_
|
|
|
|
|
|
|
|
def _save_vcard_to_hd(self, full_jid, card):
|
|
|
|
jid, nick = gajim.get_room_and_nick_from_fjid(full_jid)
|
|
|
|
puny_jid = helpers.sanitize_filename(jid)
|
|
|
|
path = os.path.join(gajim.VCARD_PATH, puny_jid)
|
|
|
|
if jid in self.room_jids or os.path.isdir(path):
|
|
|
|
if not nick:
|
|
|
|
return
|
|
|
|
# remove room_jid file if needed
|
|
|
|
if os.path.isfile(path):
|
|
|
|
os.remove(path)
|
|
|
|
# create folder if needed
|
|
|
|
if not os.path.isdir(path):
|
2013-01-02 13:54:02 +01:00
|
|
|
os.mkdir(path, 0o700)
|
2010-02-08 15:08:40 +01:00
|
|
|
puny_nick = helpers.sanitize_filename(nick)
|
|
|
|
path_to_file = os.path.join(gajim.VCARD_PATH, puny_jid, puny_nick)
|
|
|
|
else:
|
|
|
|
path_to_file = path
|
|
|
|
try:
|
2016-09-30 17:03:30 +02:00
|
|
|
fil = open(path_to_file, 'w', encoding='utf-8')
|
2010-02-08 15:08:40 +01:00
|
|
|
fil.write(str(card))
|
|
|
|
fil.close()
|
2013-01-01 23:18:36 +01:00
|
|
|
except IOError as e:
|
2011-11-22 19:25:15 +01:00
|
|
|
gajim.nec.push_incoming_event(InformationEvent(None, conn=self,
|
|
|
|
level='error', pri_txt=_('Disk Write Error'), sec_txt=str(e)))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def get_cached_vcard(self, fjid, is_fake_jid=False):
|
|
|
|
"""
|
|
|
|
Return the vcard as a dict.
|
|
|
|
Return {} if vcard was too old.
|
|
|
|
Return None if we don't have cached vcard.
|
|
|
|
"""
|
|
|
|
jid, nick = gajim.get_room_and_nick_from_fjid(fjid)
|
|
|
|
puny_jid = helpers.sanitize_filename(jid)
|
|
|
|
if is_fake_jid:
|
|
|
|
puny_nick = helpers.sanitize_filename(nick)
|
|
|
|
path_to_file = os.path.join(gajim.VCARD_PATH, puny_jid, puny_nick)
|
|
|
|
else:
|
|
|
|
path_to_file = os.path.join(gajim.VCARD_PATH, puny_jid)
|
|
|
|
if not os.path.isfile(path_to_file):
|
|
|
|
return None
|
|
|
|
# We have the vcard cached
|
2016-09-30 17:03:30 +02:00
|
|
|
f = open(path_to_file, encoding='utf-8')
|
2010-02-08 15:08:40 +01:00
|
|
|
c = f.read()
|
|
|
|
f.close()
|
|
|
|
try:
|
2012-12-09 21:37:51 +01:00
|
|
|
card = nbxmpp.Node(node=c)
|
2010-02-08 15:08:40 +01:00
|
|
|
except Exception:
|
|
|
|
# We are unable to parse it. Remove it
|
|
|
|
os.remove(path_to_file)
|
|
|
|
return None
|
|
|
|
vcard = self._node_to_dict(card)
|
|
|
|
if 'PHOTO' in vcard:
|
|
|
|
if not isinstance(vcard['PHOTO'], dict):
|
|
|
|
del vcard['PHOTO']
|
|
|
|
elif 'SHA' in vcard['PHOTO']:
|
|
|
|
cached_sha = vcard['PHOTO']['SHA']
|
|
|
|
if jid in self.vcard_shas and self.vcard_shas[jid] != \
|
|
|
|
cached_sha:
|
|
|
|
# user change his vcard so don't use the cached one
|
|
|
|
return {}
|
|
|
|
vcard['jid'] = jid
|
|
|
|
vcard['resource'] = gajim.get_resource_from_jid(fjid)
|
|
|
|
return vcard
|
|
|
|
|
|
|
|
def request_vcard(self, jid=None, groupchat_jid=None):
|
|
|
|
"""
|
|
|
|
Request the VCARD
|
|
|
|
|
|
|
|
If groupchat_jid is not null, it means we request a vcard to a fake jid,
|
|
|
|
like in private messages in groupchat. jid can be the real jid of the
|
|
|
|
contact, but we want to consider it comes from a fake jid
|
|
|
|
"""
|
|
|
|
if not self.connection or self.connected < 2:
|
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='get')
|
2010-02-08 15:08:40 +01:00
|
|
|
if jid:
|
|
|
|
iq.setTo(jid)
|
2012-12-09 21:37:51 +01:00
|
|
|
iq.setQuery('vCard').setNamespace(nbxmpp.NS_VCARD)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
id_ = self.connection.getAnID()
|
|
|
|
iq.setID(id_)
|
|
|
|
j = jid
|
|
|
|
if not j:
|
|
|
|
j = gajim.get_jid_from_account(self.name)
|
|
|
|
self.awaiting_answers[id_] = (VCARD_ARRIVED, j, groupchat_jid)
|
|
|
|
if groupchat_jid:
|
|
|
|
room_jid = gajim.get_room_and_nick_from_fjid(groupchat_jid)[0]
|
|
|
|
if not room_jid in self.room_jids:
|
|
|
|
self.room_jids.append(room_jid)
|
|
|
|
self.groupchat_jids[id_] = groupchat_jid
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
|
|
|
def send_vcard(self, vcard):
|
|
|
|
if not self.connection or self.connected < 2:
|
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='set')
|
|
|
|
iq2 = iq.setTag(nbxmpp.NS_VCARD + ' vCard')
|
2010-02-08 15:08:40 +01:00
|
|
|
for i in vcard:
|
|
|
|
if i == 'jid':
|
|
|
|
continue
|
|
|
|
if isinstance(vcard[i], dict):
|
|
|
|
iq3 = iq2.addChild(i)
|
|
|
|
for j in vcard[i]:
|
|
|
|
iq3.addChild(j).setData(vcard[i][j])
|
|
|
|
elif isinstance(vcard[i], list):
|
|
|
|
for j in vcard[i]:
|
|
|
|
iq3 = iq2.addChild(i)
|
|
|
|
for k in j:
|
|
|
|
iq3.addChild(k).setData(j[k])
|
|
|
|
else:
|
|
|
|
iq2.addChild(i).setData(vcard[i])
|
|
|
|
|
|
|
|
id_ = self.connection.getAnID()
|
|
|
|
iq.setID(id_)
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
|
|
|
our_jid = gajim.get_jid_from_account(self.name)
|
|
|
|
# Add the sha of the avatar
|
|
|
|
if 'PHOTO' in vcard and isinstance(vcard['PHOTO'], dict) and \
|
|
|
|
'BINVAL' in vcard['PHOTO']:
|
|
|
|
photo = vcard['PHOTO']['BINVAL']
|
2013-01-03 14:02:14 +01:00
|
|
|
photo_decoded = base64.b64decode(photo.encode('utf-8'))
|
2010-02-08 15:08:40 +01:00
|
|
|
gajim.interface.save_avatar_files(our_jid, photo_decoded)
|
|
|
|
avatar_sha = hashlib.sha1(photo_decoded).hexdigest()
|
|
|
|
iq2.getTag('PHOTO').setTagData('SHA', avatar_sha)
|
|
|
|
else:
|
|
|
|
gajim.interface.remove_avatar_files(our_jid)
|
|
|
|
|
|
|
|
self.awaiting_answers[id_] = (VCARD_PUBLISHED, iq2)
|
|
|
|
|
|
|
|
def _IqCB(self, con, iq_obj):
|
|
|
|
id_ = iq_obj.getID()
|
|
|
|
|
2010-04-08 01:20:17 +02:00
|
|
|
gajim.nec.push_incoming_event(NetworkEvent('raw-iq-received',
|
2010-10-18 22:05:41 +02:00
|
|
|
conn=self, stanza=iq_obj))
|
2010-04-08 01:20:17 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
# Check if we were waiting a timeout for this id
|
|
|
|
found_tim = None
|
|
|
|
for tim in self.awaiting_timeouts:
|
|
|
|
if id_ == self.awaiting_timeouts[tim][0]:
|
|
|
|
found_tim = tim
|
|
|
|
break
|
|
|
|
if found_tim:
|
|
|
|
del self.awaiting_timeouts[found_tim]
|
|
|
|
|
|
|
|
if id_ not in self.awaiting_answers:
|
|
|
|
return
|
2014-11-11 15:28:24 +01:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.awaiting_answers[id_][0] == VCARD_PUBLISHED:
|
|
|
|
if iq_obj.getType() == 'result':
|
|
|
|
vcard_iq = self.awaiting_answers[id_][1]
|
|
|
|
# Save vcard to HD
|
2010-10-06 21:11:23 +02:00
|
|
|
if vcard_iq.getTag('PHOTO') and vcard_iq.getTag('PHOTO').getTag(
|
|
|
|
'SHA'):
|
2010-02-08 15:08:40 +01:00
|
|
|
new_sha = vcard_iq.getTag('PHOTO').getTagData('SHA')
|
|
|
|
else:
|
|
|
|
new_sha = ''
|
|
|
|
|
|
|
|
# Save it to file
|
|
|
|
our_jid = gajim.get_jid_from_account(self.name)
|
|
|
|
self._save_vcard_to_hd(our_jid, vcard_iq)
|
|
|
|
|
|
|
|
# Send new presence if sha changed and we are not invisible
|
2010-10-06 21:11:23 +02:00
|
|
|
if self.vcard_sha != new_sha and gajim.SHOW_LIST[
|
|
|
|
self.connected] != 'invisible':
|
2010-02-08 15:08:40 +01:00
|
|
|
if not self.connection or self.connected < 2:
|
2014-11-11 15:28:24 +01:00
|
|
|
del self.awaiting_answers[id_]
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
self.vcard_sha = new_sha
|
2010-10-06 21:11:23 +02:00
|
|
|
sshow = helpers.get_xmpp_show(gajim.SHOW_LIST[
|
|
|
|
self.connected])
|
2012-12-09 21:37:51 +01:00
|
|
|
p = nbxmpp.Presence(typ=None, priority=self.priority,
|
2010-10-06 21:11:23 +02:00
|
|
|
show=sshow, status=self.status)
|
2010-02-08 15:08:40 +01:00
|
|
|
p = self.add_sha(p)
|
|
|
|
self.connection.send(p)
|
2010-11-08 22:34:04 +01:00
|
|
|
gajim.nec.push_incoming_event(VcardPublishedEvent(None,
|
|
|
|
conn=self))
|
2010-02-08 15:08:40 +01:00
|
|
|
elif iq_obj.getType() == 'error':
|
2010-11-08 22:34:04 +01:00
|
|
|
gajim.nec.push_incoming_event(VcardNotPublishedEvent(None,
|
|
|
|
conn=self))
|
2014-11-11 15:28:24 +01:00
|
|
|
del self.awaiting_answers[id_]
|
2010-02-08 15:08:40 +01:00
|
|
|
elif self.awaiting_answers[id_][0] == VCARD_ARRIVED:
|
|
|
|
# If vcard is empty, we send to the interface an empty vcard so that
|
|
|
|
# it knows it arrived
|
|
|
|
jid = self.awaiting_answers[id_][1]
|
|
|
|
groupchat_jid = self.awaiting_answers[id_][2]
|
|
|
|
frm = jid
|
|
|
|
if groupchat_jid:
|
|
|
|
# We do as if it comes from the fake_jid
|
|
|
|
frm = groupchat_jid
|
|
|
|
our_jid = gajim.get_jid_from_account(self.name)
|
2010-10-24 15:32:38 +02:00
|
|
|
if (not iq_obj.getTag('vCard') and iq_obj.getType() == 'result') or\
|
|
|
|
iq_obj.getType() == 'error':
|
|
|
|
if id_ in self.groupchat_jids:
|
|
|
|
frm = self.groupchat_jids[id_]
|
|
|
|
del self.groupchat_jids[id_]
|
2015-11-22 15:14:07 +01:00
|
|
|
if frm:
|
2010-02-08 15:08:40 +01:00
|
|
|
# Write an empty file
|
|
|
|
self._save_vcard_to_hd(frm, '')
|
2010-11-26 21:14:59 +01:00
|
|
|
jid, resource = gajim.get_room_and_nick_from_fjid(frm)
|
|
|
|
vcard = {'jid': jid, 'resource': resource}
|
|
|
|
gajim.nec.push_incoming_event(VcardReceivedEvent(None,
|
|
|
|
conn=self, vcard_dict=vcard))
|
2014-11-11 15:28:24 +01:00
|
|
|
del self.awaiting_answers[id_]
|
2010-02-08 15:08:40 +01:00
|
|
|
elif self.awaiting_answers[id_][0] == AGENT_REMOVED:
|
|
|
|
jid = self.awaiting_answers[id_][1]
|
2010-11-09 21:52:22 +01:00
|
|
|
gajim.nec.push_incoming_event(AgentRemovedEvent(None, conn=self,
|
|
|
|
agent=jid))
|
2014-11-11 15:28:24 +01:00
|
|
|
del self.awaiting_answers[id_]
|
2010-02-08 15:08:40 +01:00
|
|
|
elif self.awaiting_answers[id_][0] == METACONTACTS_ARRIVED:
|
|
|
|
if not self.connection:
|
|
|
|
return
|
|
|
|
if iq_obj.getType() == 'result':
|
2010-11-28 10:37:05 +01:00
|
|
|
gajim.nec.push_incoming_event(MetacontactsReceivedEvent(None,
|
|
|
|
conn=self, stanza=iq_obj))
|
2010-02-08 15:08:40 +01:00
|
|
|
else:
|
|
|
|
if iq_obj.getErrorCode() not in ('403', '406', '404'):
|
|
|
|
self.private_storage_supported = False
|
2010-12-11 12:57:09 +01:00
|
|
|
self.get_roster_delimiter()
|
2014-11-11 15:28:24 +01:00
|
|
|
del self.awaiting_answers[id_]
|
2010-12-11 12:57:09 +01:00
|
|
|
elif self.awaiting_answers[id_][0] == DELIMITER_ARRIVED:
|
2014-11-11 15:28:24 +01:00
|
|
|
del self.awaiting_answers[id_]
|
2010-12-11 12:57:09 +01:00
|
|
|
if not self.connection:
|
|
|
|
return
|
|
|
|
if iq_obj.getType() == 'result':
|
|
|
|
query = iq_obj.getTag('query')
|
2011-10-31 10:47:28 +01:00
|
|
|
if not query:
|
|
|
|
return
|
2010-12-11 12:57:09 +01:00
|
|
|
delimiter = query.getTagData('roster')
|
|
|
|
if delimiter:
|
|
|
|
self.nested_group_delimiter = delimiter
|
|
|
|
else:
|
|
|
|
self.set_roster_delimiter('::')
|
|
|
|
else:
|
|
|
|
self.private_storage_supported = False
|
2010-02-11 18:57:39 +01:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
# We can now continue connection by requesting the roster
|
2010-12-11 12:57:09 +01:00
|
|
|
self.request_roster()
|
2010-02-08 15:08:40 +01:00
|
|
|
elif self.awaiting_answers[id_][0] == ROSTER_ARRIVED:
|
|
|
|
if iq_obj.getType() == 'result':
|
|
|
|
if not iq_obj.getTag('query'):
|
|
|
|
account_jid = gajim.get_jid_from_account(self.name)
|
|
|
|
roster_data = gajim.logger.get_roster(account_jid)
|
|
|
|
roster = self.connection.getRoster(force=True)
|
|
|
|
roster.setRaw(roster_data)
|
|
|
|
self._getRoster()
|
2011-08-09 17:14:13 +02:00
|
|
|
elif iq_obj.getType() == 'error':
|
|
|
|
self.roster_supported = False
|
|
|
|
self.discoverItems(gajim.config.get_per('accounts', self.name,
|
|
|
|
'hostname'), id_prefix='Gajim_')
|
|
|
|
if gajim.config.get_per('accounts', self.name,
|
|
|
|
'use_ft_proxies'):
|
|
|
|
self.discover_ft_proxies()
|
|
|
|
gajim.nec.push_incoming_event(RosterReceivedEvent(None,
|
|
|
|
conn=self))
|
2013-07-28 20:50:30 +02:00
|
|
|
GLib.timeout_add_seconds(10, self.discover_servers)
|
2014-11-11 15:28:24 +01:00
|
|
|
del self.awaiting_answers[id_]
|
2010-02-08 15:08:40 +01:00
|
|
|
elif self.awaiting_answers[id_][0] == PRIVACY_ARRIVED:
|
2014-11-11 15:28:24 +01:00
|
|
|
del self.awaiting_answers[id_]
|
2010-02-08 15:08:40 +01:00
|
|
|
if iq_obj.getType() != 'error':
|
2017-01-27 22:24:53 +01:00
|
|
|
for list_ in iq_obj.getQueryPayload():
|
|
|
|
if list_.getName() == 'default':
|
|
|
|
self.privacy_default_list = list_.getAttr('name')
|
|
|
|
self.get_privacy_list(self.privacy_default_list)
|
|
|
|
break
|
2015-03-07 15:04:41 +01:00
|
|
|
# Ask metacontacts before roster
|
|
|
|
self.get_metacontacts()
|
2013-03-30 23:13:48 +01:00
|
|
|
else:
|
2015-03-07 15:04:41 +01:00
|
|
|
# That should never happen, but as it's blocking in the
|
|
|
|
# connection process, we don't take the risk
|
|
|
|
self.privacy_rules_supported = False
|
|
|
|
self._continue_connection_request_privacy()
|
2013-03-30 23:13:48 +01:00
|
|
|
elif self.awaiting_answers[id_][0] == BLOCKING_ARRIVED:
|
2014-11-11 15:28:24 +01:00
|
|
|
del self.awaiting_answers[id_]
|
2013-03-30 23:13:48 +01:00
|
|
|
if iq_obj.getType() == 'result':
|
|
|
|
list_node = iq_obj.getTag('blocklist')
|
|
|
|
if not list_node:
|
|
|
|
return
|
|
|
|
self.blocked_contacts = []
|
|
|
|
for i in list_node.iterTags('item'):
|
|
|
|
self.blocked_contacts.append(i.getAttr('jid'))
|
2010-02-08 15:08:40 +01:00
|
|
|
elif self.awaiting_answers[id_][0] == PEP_CONFIG:
|
2014-11-11 15:28:24 +01:00
|
|
|
del self.awaiting_answers[id_]
|
2010-05-05 19:32:18 +02:00
|
|
|
if iq_obj.getType() == 'error':
|
|
|
|
return
|
|
|
|
if not iq_obj.getTag('pubsub'):
|
|
|
|
return
|
2010-02-08 15:08:40 +01:00
|
|
|
conf = iq_obj.getTag('pubsub').getTag('configure')
|
2010-05-05 19:32:18 +02:00
|
|
|
if not conf:
|
|
|
|
return
|
2010-02-08 15:08:40 +01:00
|
|
|
node = conf.getAttr('node')
|
2012-12-09 21:37:51 +01:00
|
|
|
form_tag = conf.getTag('x', namespace=nbxmpp.NS_DATA)
|
2010-02-08 15:08:40 +01:00
|
|
|
if form_tag:
|
2017-02-07 20:56:26 +01:00
|
|
|
form = dataforms.ExtendForm(node=form_tag)
|
2010-11-27 21:49:58 +01:00
|
|
|
gajim.nec.push_incoming_event(PEPConfigReceivedEvent(None,
|
2010-11-27 23:33:03 +01:00
|
|
|
conn=self, node=node, form=form))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _vCardCB(self, con, vc):
|
|
|
|
"""
|
|
|
|
Called when we receive a vCard Parse the vCard and send it to plugins
|
|
|
|
"""
|
|
|
|
if not vc.getTag('vCard'):
|
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
if not vc.getTag('vCard').getNamespace() == nbxmpp.NS_VCARD:
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
id_ = vc.getID()
|
|
|
|
frm_iq = vc.getFrom()
|
|
|
|
our_jid = gajim.get_jid_from_account(self.name)
|
|
|
|
resource = ''
|
|
|
|
if id_ in self.groupchat_jids:
|
|
|
|
who = self.groupchat_jids[id_]
|
|
|
|
frm, resource = gajim.get_room_and_nick_from_fjid(who)
|
|
|
|
del self.groupchat_jids[id_]
|
|
|
|
elif frm_iq:
|
|
|
|
who = helpers.get_full_jid_from_iq(vc)
|
|
|
|
frm, resource = gajim.get_room_and_nick_from_fjid(who)
|
|
|
|
else:
|
|
|
|
who = frm = our_jid
|
|
|
|
card = vc.getChildren()[0]
|
|
|
|
vcard = self._node_to_dict(card)
|
|
|
|
photo_decoded = None
|
|
|
|
if 'PHOTO' in vcard and isinstance(vcard['PHOTO'], dict) and \
|
|
|
|
'BINVAL' in vcard['PHOTO']:
|
|
|
|
photo = vcard['PHOTO']['BINVAL']
|
|
|
|
try:
|
2013-01-03 14:02:14 +01:00
|
|
|
photo_decoded = base64.b64decode(photo.encode('utf-8'))
|
2010-02-08 15:08:40 +01:00
|
|
|
avatar_sha = hashlib.sha1(photo_decoded).hexdigest()
|
|
|
|
except Exception:
|
|
|
|
avatar_sha = ''
|
|
|
|
else:
|
|
|
|
avatar_sha = ''
|
|
|
|
|
|
|
|
if avatar_sha:
|
|
|
|
card.getTag('PHOTO').setTagData('SHA', avatar_sha)
|
|
|
|
|
|
|
|
# Save it to file
|
|
|
|
self._save_vcard_to_hd(who, card)
|
2010-10-06 21:11:23 +02:00
|
|
|
# Save the decoded avatar to a separate file too, and generate files
|
|
|
|
# for dbus notifications
|
2010-02-08 15:08:40 +01:00
|
|
|
puny_jid = helpers.sanitize_filename(frm)
|
|
|
|
puny_nick = None
|
|
|
|
begin_path = os.path.join(gajim.AVATAR_PATH, puny_jid)
|
|
|
|
frm_jid = frm
|
|
|
|
if frm in self.room_jids:
|
|
|
|
puny_nick = helpers.sanitize_filename(resource)
|
|
|
|
# create folder if needed
|
|
|
|
if not os.path.isdir(begin_path):
|
2013-01-02 13:54:02 +01:00
|
|
|
os.mkdir(begin_path, 0o700)
|
2010-02-08 15:08:40 +01:00
|
|
|
begin_path = os.path.join(begin_path, puny_nick)
|
|
|
|
frm_jid += '/' + resource
|
|
|
|
if photo_decoded:
|
|
|
|
avatar_file = begin_path + '_notif_size_colored.png'
|
|
|
|
if frm_jid == our_jid and avatar_sha != self.vcard_sha:
|
|
|
|
gajim.interface.save_avatar_files(frm, photo_decoded, puny_nick)
|
|
|
|
elif frm_jid != our_jid and (not os.path.exists(avatar_file) or \
|
|
|
|
frm_jid not in self.vcard_shas or \
|
|
|
|
avatar_sha != self.vcard_shas[frm_jid]):
|
|
|
|
gajim.interface.save_avatar_files(frm, photo_decoded, puny_nick)
|
|
|
|
if avatar_sha:
|
|
|
|
self.vcard_shas[frm_jid] = avatar_sha
|
|
|
|
elif frm in self.vcard_shas:
|
|
|
|
del self.vcard_shas[frm]
|
|
|
|
else:
|
|
|
|
for ext in ('.jpeg', '.png', '_notif_size_bw.png',
|
2010-10-06 21:11:23 +02:00
|
|
|
'_notif_size_colored.png'):
|
2010-02-08 15:08:40 +01:00
|
|
|
path = begin_path + ext
|
|
|
|
if os.path.isfile(path):
|
|
|
|
os.remove(path)
|
|
|
|
|
|
|
|
vcard['jid'] = frm
|
|
|
|
vcard['resource'] = resource
|
2010-11-26 21:14:59 +01:00
|
|
|
gajim.nec.push_incoming_event(VcardReceivedEvent(None, conn=self,
|
|
|
|
vcard_dict=vcard))
|
2010-02-08 15:08:40 +01:00
|
|
|
if frm_jid == our_jid:
|
|
|
|
# we re-send our presence with sha if has changed and if we are
|
|
|
|
# not invisible
|
|
|
|
if self.vcard_sha == avatar_sha:
|
|
|
|
return
|
|
|
|
self.vcard_sha = avatar_sha
|
|
|
|
if gajim.SHOW_LIST[self.connected] == 'invisible':
|
|
|
|
return
|
|
|
|
if not self.connection:
|
|
|
|
return
|
|
|
|
sshow = helpers.get_xmpp_show(gajim.SHOW_LIST[self.connected])
|
2012-12-09 21:37:51 +01:00
|
|
|
p = nbxmpp.Presence(typ=None, priority=self.priority,
|
2010-10-06 21:11:23 +02:00
|
|
|
show=sshow, status=self.status)
|
2010-02-08 15:08:40 +01:00
|
|
|
p = self.add_sha(p)
|
|
|
|
self.connection.send(p)
|
2006-03-19 15:54:00 +01:00
|
|
|
|
2013-04-06 10:14:28 +02:00
|
|
|
|
|
|
|
class ConnectionPEP(object):
|
|
|
|
|
|
|
|
def __init__(self, account, dispatcher, pubsub_connection):
|
|
|
|
self._account = account
|
|
|
|
self._dispatcher = dispatcher
|
|
|
|
self._pubsub_connection = pubsub_connection
|
|
|
|
self.reset_awaiting_pep()
|
|
|
|
|
|
|
|
def pep_change_account_name(self, new_name):
|
|
|
|
self._account = new_name
|
|
|
|
|
|
|
|
def reset_awaiting_pep(self):
|
|
|
|
self.to_be_sent_activity = None
|
|
|
|
self.to_be_sent_mood = None
|
|
|
|
self.to_be_sent_tune = None
|
|
|
|
self.to_be_sent_nick = None
|
|
|
|
self.to_be_sent_location = None
|
|
|
|
|
|
|
|
def send_awaiting_pep(self):
|
|
|
|
"""
|
|
|
|
Send pep info that were waiting for connection
|
|
|
|
"""
|
|
|
|
if self.to_be_sent_activity:
|
|
|
|
self.send_activity(*self.to_be_sent_activity)
|
|
|
|
if self.to_be_sent_mood:
|
|
|
|
self.send_mood(*self.to_be_sent_mood)
|
|
|
|
if self.to_be_sent_tune:
|
|
|
|
self.send_tune(*self.to_be_sent_tune)
|
|
|
|
if self.to_be_sent_nick:
|
|
|
|
self.send_nick(self.to_be_sent_nick)
|
|
|
|
if self.to_be_sent_location:
|
|
|
|
self.send_location(self.to_be_sent_location)
|
|
|
|
self.reset_awaiting_pep()
|
|
|
|
|
|
|
|
def _pubsubEventCB(self, xmpp_dispatcher, msg):
|
|
|
|
''' Called when we receive <message /> with pubsub event. '''
|
|
|
|
gajim.nec.push_incoming_event(PEPReceivedEvent(None, conn=self,
|
|
|
|
stanza=msg))
|
|
|
|
|
|
|
|
def send_activity(self, activity, subactivity=None, message=None):
|
|
|
|
if self.connected == 1:
|
|
|
|
# We are connecting, keep activity in mem and send it when we'll be
|
|
|
|
# connected
|
|
|
|
self.to_be_sent_activity = (activity, subactivity, message)
|
|
|
|
return
|
|
|
|
if not self.pep_supported:
|
|
|
|
return
|
|
|
|
item = nbxmpp.Node('activity', {'xmlns': nbxmpp.NS_ACTIVITY})
|
|
|
|
if activity:
|
|
|
|
i = item.addChild(activity)
|
|
|
|
if subactivity:
|
|
|
|
i.addChild(subactivity)
|
|
|
|
if message:
|
|
|
|
i = item.addChild('text')
|
|
|
|
i.addData(message)
|
|
|
|
self._pubsub_connection.send_pb_publish('', nbxmpp.NS_ACTIVITY, item,
|
|
|
|
'0')
|
|
|
|
|
|
|
|
def retract_activity(self):
|
|
|
|
if not self.pep_supported:
|
|
|
|
return
|
|
|
|
self.send_activity(None)
|
|
|
|
# not all client support new XEP, so we still retract
|
|
|
|
self._pubsub_connection.send_pb_retract('', nbxmpp.NS_ACTIVITY, '0')
|
|
|
|
|
|
|
|
def send_mood(self, mood, message=None):
|
|
|
|
if self.connected == 1:
|
|
|
|
# We are connecting, keep mood in mem and send it when we'll be
|
|
|
|
# connected
|
|
|
|
self.to_be_sent_mood = (mood, message)
|
|
|
|
return
|
|
|
|
if not self.pep_supported:
|
|
|
|
return
|
|
|
|
item = nbxmpp.Node('mood', {'xmlns': nbxmpp.NS_MOOD})
|
|
|
|
if mood:
|
|
|
|
item.addChild(mood)
|
|
|
|
if message:
|
|
|
|
i = item.addChild('text')
|
|
|
|
i.addData(message)
|
|
|
|
self._pubsub_connection.send_pb_publish('', nbxmpp.NS_MOOD, item, '0')
|
|
|
|
|
|
|
|
def retract_mood(self):
|
|
|
|
if not self.pep_supported:
|
|
|
|
return
|
|
|
|
self.send_mood(None)
|
|
|
|
# not all client support new XEP, so we still retract
|
|
|
|
self._pubsub_connection.send_pb_retract('', nbxmpp.NS_MOOD, '0')
|
|
|
|
|
|
|
|
def send_tune(self, artist='', title='', source='', track=0, length=0,
|
|
|
|
items=None):
|
|
|
|
if self.connected == 1:
|
|
|
|
# We are connecting, keep tune in mem and send it when we'll be
|
|
|
|
# connected
|
|
|
|
self.to_be_sent_tune = (artist, title, source, track, length, items)
|
|
|
|
return
|
|
|
|
if not self.pep_supported:
|
|
|
|
return
|
|
|
|
item = nbxmpp.Node('tune', {'xmlns': nbxmpp.NS_TUNE})
|
|
|
|
if artist:
|
|
|
|
i = item.addChild('artist')
|
|
|
|
i.addData(artist)
|
|
|
|
if title:
|
|
|
|
i = item.addChild('title')
|
|
|
|
i.addData(title)
|
|
|
|
if source:
|
|
|
|
i = item.addChild('source')
|
|
|
|
i.addData(source)
|
|
|
|
if track:
|
|
|
|
i = item.addChild('track')
|
|
|
|
i.addData(track)
|
|
|
|
if length:
|
|
|
|
i = item.addChild('length')
|
|
|
|
i.addData(length)
|
|
|
|
if items:
|
|
|
|
item.addChild(payload=items)
|
|
|
|
self._pubsub_connection.send_pb_publish('', nbxmpp.NS_TUNE, item, '0')
|
|
|
|
|
|
|
|
def retract_tune(self):
|
|
|
|
if not self.pep_supported:
|
|
|
|
return
|
|
|
|
self.send_tune(None)
|
|
|
|
# not all client support new XEP, so we still retract
|
|
|
|
self._pubsub_connection.send_pb_retract('', nbxmpp.NS_TUNE, '0')
|
|
|
|
|
|
|
|
def send_nickname(self, nick):
|
|
|
|
if self.connected == 1:
|
|
|
|
# We are connecting, keep nick in mem and send it when we'll be
|
|
|
|
# connected
|
|
|
|
self.to_be_sent_nick = nick
|
|
|
|
return
|
|
|
|
if not self.pep_supported:
|
|
|
|
return
|
|
|
|
item = nbxmpp.Node('nick', {'xmlns': nbxmpp.NS_NICK})
|
|
|
|
item.addData(nick)
|
|
|
|
self._pubsub_connection.send_pb_publish('', nbxmpp.NS_NICK, item, '0')
|
|
|
|
|
|
|
|
def retract_nickname(self):
|
|
|
|
if not self.pep_supported:
|
|
|
|
return
|
|
|
|
self.send_nickname(None)
|
|
|
|
# not all client support new XEP, so we still retract
|
|
|
|
self._pubsub_connection.send_pb_retract('', nbxmpp.NS_NICK, '0')
|
|
|
|
|
|
|
|
def send_location(self, info):
|
|
|
|
if self.connected == 1:
|
|
|
|
# We are connecting, keep location in mem and send it when we'll be
|
|
|
|
# connected
|
|
|
|
self.to_be_sent_location = info
|
|
|
|
return
|
|
|
|
if not self.pep_supported:
|
|
|
|
return
|
|
|
|
item = nbxmpp.Node('geoloc', {'xmlns': nbxmpp.NS_LOCATION})
|
|
|
|
for field in LOCATION_DATA:
|
|
|
|
if info.get(field, None):
|
|
|
|
i = item.addChild(field)
|
|
|
|
i.addData(info[field])
|
|
|
|
self._pubsub_connection.send_pb_publish('', nbxmpp.NS_LOCATION, item, '0')
|
|
|
|
|
|
|
|
def retract_location(self):
|
|
|
|
if not self.pep_supported:
|
|
|
|
return
|
|
|
|
self.send_location({})
|
|
|
|
# not all client support new XEP, so we still retract
|
|
|
|
self._pubsub_connection.send_pb_retract('', nbxmpp.NS_LOCATION, '0')
|
|
|
|
|
2008-05-17 04:23:46 +02:00
|
|
|
# basic connection handlers used here and in zeroconf
|
|
|
|
class ConnectionHandlersBase:
|
2010-02-08 15:08:40 +01:00
|
|
|
def __init__(self):
|
|
|
|
# List of IDs we are waiting answers for {id: (type_of_request, data), }
|
|
|
|
self.awaiting_answers = {}
|
|
|
|
# List of IDs that will produce a timeout is answer doesn't arrive
|
|
|
|
# {time_of_the_timeout: (id, message to send to gui), }
|
|
|
|
self.awaiting_timeouts = {}
|
|
|
|
# keep the jids we auto added (transports contacts) to not send the
|
|
|
|
# SUBSCRIBED event to gui
|
|
|
|
self.automatically_added = []
|
2010-03-10 21:58:14 +01:00
|
|
|
# IDs of jabber:iq:last requests
|
|
|
|
self.last_ids = []
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
# keep track of sessions this connection has with other JIDs
|
|
|
|
self.sessions = {}
|
|
|
|
|
2016-11-24 22:44:52 +01:00
|
|
|
# IDs of sent messages (https://trac.gajim.org/ticket/8222)
|
|
|
|
self.sent_message_ids = []
|
|
|
|
|
|
|
|
self.received_message_hashes = []
|
|
|
|
|
2012-09-18 16:07:11 +02:00
|
|
|
# We decrypt GPG messages one after the other. Keep queue in mem
|
|
|
|
self.gpg_messages_to_decrypt = []
|
|
|
|
|
2010-10-04 13:51:42 +02:00
|
|
|
gajim.ged.register_event_handler('iq-error-received', ged.CORE,
|
|
|
|
self._nec_iq_error_received)
|
2010-12-19 10:39:15 +01:00
|
|
|
gajim.ged.register_event_handler('presence-received', ged.CORE,
|
|
|
|
self._nec_presence_received)
|
2011-08-30 14:52:59 +02:00
|
|
|
gajim.ged.register_event_handler('gc-presence-received', ged.CORE,
|
|
|
|
self._nec_gc_presence_received)
|
2010-12-19 21:22:29 +01:00
|
|
|
gajim.ged.register_event_handler('message-received', ged.CORE,
|
|
|
|
self._nec_message_received)
|
2015-09-19 13:58:28 +02:00
|
|
|
gajim.ged.register_event_handler('mam-message-received', ged.CORE,
|
2017-04-16 17:16:41 +02:00
|
|
|
self._nec_message_received)
|
2010-12-19 21:22:29 +01:00
|
|
|
gajim.ged.register_event_handler('decrypted-message-received', ged.CORE,
|
|
|
|
self._nec_decrypted_message_received)
|
2010-09-08 19:55:19 +02:00
|
|
|
|
2011-01-06 16:50:38 +01:00
|
|
|
def cleanup(self):
|
|
|
|
gajim.ged.remove_event_handler('iq-error-received', ged.CORE,
|
|
|
|
self._nec_iq_error_received)
|
|
|
|
gajim.ged.remove_event_handler('presence-received', ged.CORE,
|
|
|
|
self._nec_presence_received)
|
2011-08-30 14:52:59 +02:00
|
|
|
gajim.ged.remove_event_handler('gc-presence-received', ged.CORE,
|
|
|
|
self._nec_gc_presence_received)
|
2011-01-06 16:50:38 +01:00
|
|
|
gajim.ged.remove_event_handler('message-received', ged.CORE,
|
|
|
|
self._nec_message_received)
|
2015-09-19 13:58:28 +02:00
|
|
|
gajim.ged.remove_event_handler('mam-message-received', ged.CORE,
|
2017-04-16 17:16:41 +02:00
|
|
|
self._nec_message_received)
|
2011-01-06 16:50:38 +01:00
|
|
|
gajim.ged.remove_event_handler('decrypted-message-received', ged.CORE,
|
|
|
|
self._nec_decrypted_message_received)
|
|
|
|
|
2010-10-04 13:51:42 +02:00
|
|
|
def _nec_iq_error_received(self, obj):
|
2010-09-08 19:55:19 +02:00
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
|
|
|
if obj.id_ in self.last_ids:
|
2010-07-20 16:53:07 +02:00
|
|
|
gajim.nec.push_incoming_event(LastResultReceivedEvent(None,
|
2010-10-18 22:05:41 +02:00
|
|
|
conn=self, stanza=obj.stanza))
|
2010-07-20 16:53:07 +02:00
|
|
|
return True
|
2010-03-10 21:58:14 +01:00
|
|
|
|
2010-12-19 10:39:15 +01:00
|
|
|
def _nec_presence_received(self, obj):
|
|
|
|
account = obj.conn.name
|
|
|
|
if account != self.name:
|
|
|
|
return
|
|
|
|
jid = obj.jid
|
|
|
|
resource = obj.resource or ''
|
|
|
|
|
|
|
|
statuss = ['offline', 'error', 'online', 'chat', 'away', 'xa', 'dnd',
|
|
|
|
'invisible']
|
|
|
|
obj.old_show = 0
|
|
|
|
obj.new_show = statuss.index(obj.show)
|
|
|
|
|
|
|
|
obj.contact_list = []
|
|
|
|
|
|
|
|
highest = gajim.contacts.get_contact_with_highest_priority(account, jid)
|
|
|
|
obj.was_highest = (highest and highest.resource == resource)
|
|
|
|
|
|
|
|
# Update contact
|
|
|
|
obj.contact_list = gajim.contacts.get_contacts(account, jid)
|
|
|
|
obj.contact = None
|
|
|
|
resources = []
|
|
|
|
for c in obj.contact_list:
|
|
|
|
resources.append(c.resource)
|
|
|
|
if c.resource == resource:
|
|
|
|
obj.contact = c
|
|
|
|
break
|
|
|
|
|
|
|
|
if obj.avatar_sha is not None and obj.ptype != 'error':
|
|
|
|
if obj.jid not in self.vcard_shas:
|
|
|
|
cached_vcard = self.get_cached_vcard(obj.jid)
|
|
|
|
if cached_vcard and 'PHOTO' in cached_vcard and \
|
|
|
|
'SHA' in cached_vcard['PHOTO']:
|
|
|
|
self.vcard_shas[obj.jid] = cached_vcard['PHOTO']['SHA']
|
|
|
|
else:
|
|
|
|
self.vcard_shas[obj.jid] = ''
|
|
|
|
if obj.avatar_sha != self.vcard_shas[obj.jid]:
|
|
|
|
# avatar has been updated
|
|
|
|
self.request_vcard(obj.jid)
|
|
|
|
|
|
|
|
if obj.contact:
|
|
|
|
if obj.contact.show in statuss:
|
|
|
|
obj.old_show = statuss.index(obj.contact.show)
|
|
|
|
# nick changed
|
|
|
|
if obj.contact_nickname is not None and \
|
|
|
|
obj.contact.contact_name != obj.contact_nickname:
|
|
|
|
obj.contact.contact_name = obj.contact_nickname
|
|
|
|
obj.need_redraw = True
|
|
|
|
|
|
|
|
if obj.old_show == obj.new_show and obj.contact.status == \
|
|
|
|
obj.status and obj.contact.priority == obj.prio: # no change
|
2012-09-26 16:03:18 +02:00
|
|
|
return True
|
2010-12-19 10:39:15 +01:00
|
|
|
else:
|
|
|
|
obj.contact = gajim.contacts.get_first_contact_from_jid(account,
|
|
|
|
jid)
|
|
|
|
if not obj.contact:
|
|
|
|
# Presence of another resource of our jid
|
|
|
|
# Create self contact and add to roster
|
|
|
|
if resource == obj.conn.server_resource:
|
|
|
|
return
|
|
|
|
# Ignore offline presence of unknown self resource
|
|
|
|
if obj.new_show < 2:
|
|
|
|
return
|
|
|
|
obj.contact = gajim.contacts.create_self_contact(jid=jid,
|
|
|
|
account=account, show=obj.show, status=obj.status,
|
|
|
|
priority=obj.prio, keyID=obj.keyID,
|
|
|
|
resource=obj.resource)
|
|
|
|
gajim.contacts.add_contact(account, obj.contact)
|
|
|
|
obj.contact_list.append(obj.contact)
|
|
|
|
elif obj.contact.show in statuss:
|
|
|
|
obj.old_show = statuss.index(obj.contact.show)
|
|
|
|
if (resources != [''] and (len(obj.contact_list) != 1 or \
|
2012-01-21 16:32:52 +01:00
|
|
|
obj.contact_list[0].show not in ('not in roster', 'offline'))) and \
|
2010-12-19 10:39:15 +01:00
|
|
|
not gajim.jid_is_transport(jid):
|
|
|
|
# Another resource of an existing contact connected
|
|
|
|
obj.old_show = 0
|
|
|
|
obj.contact = gajim.contacts.copy_contact(obj.contact)
|
|
|
|
obj.contact_list.append(obj.contact)
|
|
|
|
obj.contact.resource = resource
|
|
|
|
|
|
|
|
obj.need_add_in_roster = True
|
|
|
|
|
|
|
|
if not gajim.jid_is_transport(jid) and len(obj.contact_list) == 1:
|
|
|
|
# It's not an agent
|
|
|
|
if obj.old_show == 0 and obj.new_show > 1:
|
|
|
|
if not jid in gajim.newly_added[account]:
|
|
|
|
gajim.newly_added[account].append(jid)
|
|
|
|
if jid in gajim.to_be_removed[account]:
|
|
|
|
gajim.to_be_removed[account].remove(jid)
|
|
|
|
elif obj.old_show > 1 and obj.new_show == 0 and \
|
|
|
|
obj.conn.connected > 1:
|
|
|
|
if not jid in gajim.to_be_removed[account]:
|
|
|
|
gajim.to_be_removed[account].append(jid)
|
|
|
|
if jid in gajim.newly_added[account]:
|
|
|
|
gajim.newly_added[account].remove(jid)
|
|
|
|
obj.need_redraw = True
|
|
|
|
|
|
|
|
obj.contact.show = obj.show
|
|
|
|
obj.contact.status = obj.status
|
|
|
|
obj.contact.priority = obj.prio
|
2012-02-21 23:53:49 +01:00
|
|
|
attached_keys = gajim.config.get_per('accounts', account,
|
|
|
|
'attached_gpg_keys').split()
|
|
|
|
if jid in attached_keys:
|
|
|
|
obj.contact.keyID = attached_keys[attached_keys.index(jid) + 1]
|
|
|
|
else:
|
|
|
|
# Do not override assigned key
|
|
|
|
obj.contact.keyID = obj.keyID
|
2010-12-19 10:39:15 +01:00
|
|
|
if obj.timestamp:
|
2016-12-09 12:14:14 +01:00
|
|
|
obj.contact.last_status_time = localtime(obj.timestamp)
|
2010-12-19 10:39:15 +01:00
|
|
|
elif not gajim.block_signed_in_notifications[account]:
|
|
|
|
# We're connected since more that 30 seconds
|
|
|
|
obj.contact.last_status_time = localtime()
|
|
|
|
obj.contact.contact_nickname = obj.contact_nickname
|
|
|
|
|
|
|
|
if gajim.jid_is_transport(jid):
|
|
|
|
return
|
|
|
|
|
|
|
|
# It isn't an agent
|
|
|
|
# reset chatstate if needed:
|
|
|
|
# (when contact signs out or has errors)
|
|
|
|
if obj.show in ('offline', 'error'):
|
2011-08-27 22:41:55 +02:00
|
|
|
obj.contact.our_chatstate = obj.contact.chatstate = None
|
2010-12-19 10:39:15 +01:00
|
|
|
|
|
|
|
# TODO: This causes problems when another
|
|
|
|
# resource signs off!
|
|
|
|
self.stop_all_active_file_transfers(obj.contact)
|
|
|
|
|
|
|
|
# disable encryption, since if any messages are
|
|
|
|
# lost they'll be not decryptable (note that
|
|
|
|
# this contradicts XEP-0201 - trying to get that
|
|
|
|
# in the XEP, though)
|
|
|
|
|
|
|
|
# there won't be any sessions here if the contact terminated
|
|
|
|
# their sessions before going offline (which we do)
|
|
|
|
for sess in self.get_sessions(jid):
|
2011-10-07 17:51:32 +02:00
|
|
|
sess_fjid = sess.jid.getStripped()
|
2011-08-30 14:52:59 +02:00
|
|
|
if sess.resource:
|
|
|
|
sess_fjid += '/' + sess.resource
|
|
|
|
if obj.fjid != sess_fjid:
|
2010-12-19 10:39:15 +01:00
|
|
|
continue
|
|
|
|
if sess.control:
|
|
|
|
sess.control.no_autonegotiation = False
|
|
|
|
if sess.enable_encryption:
|
|
|
|
sess.terminate_e2e()
|
|
|
|
|
|
|
|
if gajim.config.get('log_contact_status_changes') and \
|
|
|
|
gajim.config.should_log(self.name, obj.jid):
|
2017-04-08 22:53:50 +02:00
|
|
|
gajim.logger.write('status', obj.jid, obj.status, obj.show)
|
2010-12-19 10:39:15 +01:00
|
|
|
|
2011-08-30 14:52:59 +02:00
|
|
|
def _nec_gc_presence_received(self, obj):
|
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
|
|
|
for sess in self.get_sessions(obj.fjid):
|
|
|
|
if obj.fjid != sess.jid:
|
|
|
|
continue
|
|
|
|
if sess.enable_encryption:
|
|
|
|
sess.terminate_e2e()
|
|
|
|
|
2010-12-19 21:22:29 +01:00
|
|
|
def _nec_message_received(self, obj):
|
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
2017-04-13 22:58:51 +02:00
|
|
|
|
|
|
|
gajim.plugin_manager.gui_extension_point(
|
|
|
|
'decrypt', self, obj, self._on_message_received)
|
|
|
|
if not obj.encrypted:
|
|
|
|
self._on_message_received(obj)
|
|
|
|
|
|
|
|
def _on_message_received(self, obj):
|
|
|
|
if isinstance(obj, MessageReceivedEvent):
|
|
|
|
gajim.nec.push_incoming_event(
|
|
|
|
DecryptedMessageReceivedEvent(None, conn=self, msg_obj=obj))
|
|
|
|
else:
|
|
|
|
gajim.nec.push_incoming_event(
|
|
|
|
MamDecryptedMessageReceivedEvent(None, conn=self, msg_obj=obj))
|
|
|
|
|
2010-12-19 21:22:29 +01:00
|
|
|
def _nec_decrypted_message_received(self, obj):
|
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
|
|
|
|
|
|
|
# Receipt requested
|
|
|
|
# TODO: We shouldn't answer if we're invisible!
|
|
|
|
contact = gajim.contacts.get_contact(self.name, obj.jid)
|
|
|
|
nick = obj.resource
|
|
|
|
gc_contact = gajim.contacts.get_gc_contact(self.name, obj.jid, nick)
|
2016-03-05 15:23:48 +01:00
|
|
|
if obj.sent:
|
|
|
|
jid_to = obj.stanza.getFrom()
|
|
|
|
else:
|
|
|
|
jid_to = obj.stanza.getTo()
|
2016-02-20 20:04:47 +01:00
|
|
|
reply = False
|
|
|
|
if not jid_to:
|
|
|
|
reply = True
|
|
|
|
else:
|
|
|
|
fjid_to = helpers.parse_jid(str(jid_to))
|
|
|
|
jid_to = gajim.get_jid_without_resource(fjid_to)
|
|
|
|
if jid_to == gajim.get_jid_from_account(self.name):
|
|
|
|
reply = True
|
2017-03-20 21:09:13 +01:00
|
|
|
|
|
|
|
if obj.jid != gajim.get_jid_from_account(self.name):
|
|
|
|
if obj.receipt_request_tag and gajim.config.get_per('accounts',
|
|
|
|
self.name, 'answer_receipts') and ((contact and contact.sub \
|
|
|
|
not in ('to', 'none')) or gc_contact) and obj.mtype != 'error' and \
|
|
|
|
reply:
|
|
|
|
receipt = nbxmpp.Message(to=obj.fjid, typ='chat')
|
|
|
|
receipt.setTag('received', namespace='urn:xmpp:receipts',
|
|
|
|
attrs={'id': obj.id_})
|
|
|
|
|
|
|
|
if obj.thread_id:
|
|
|
|
receipt.setThread(obj.thread_id)
|
|
|
|
self.connection.send(receipt)
|
2010-12-19 21:22:29 +01:00
|
|
|
|
|
|
|
# We got our message's receipt
|
2016-03-08 22:36:22 +01:00
|
|
|
if obj.receipt_received_tag and gajim.config.get_per('accounts',
|
|
|
|
self.name, 'request_receipt'):
|
|
|
|
ctrl = obj.session.control
|
|
|
|
if not ctrl:
|
2016-12-16 21:53:51 +01:00
|
|
|
# Received <message> doesn't have the <thread> element
|
|
|
|
# or control is not bound to session?
|
|
|
|
# --> search for it
|
|
|
|
ctrl = gajim.interface.msg_win_mgr.search_control(obj.jid,
|
|
|
|
obj.conn.name, obj.resource)
|
|
|
|
|
2016-03-08 22:36:22 +01:00
|
|
|
if ctrl:
|
|
|
|
id_ = obj.receipt_received_tag.getAttr('id')
|
|
|
|
if not id_:
|
|
|
|
# old XEP implementation
|
|
|
|
id_ = obj.id_
|
2017-05-01 19:42:57 +02:00
|
|
|
ctrl.conv_textview.show_xep0184_ack(id_)
|
2010-12-19 21:22:29 +01:00
|
|
|
|
|
|
|
if obj.mtype == 'error':
|
2011-03-05 13:17:32 +01:00
|
|
|
if not obj.msgtxt:
|
2014-09-14 14:23:31 +02:00
|
|
|
obj.msgtxt = _('message')
|
2010-12-19 21:22:29 +01:00
|
|
|
self.dispatch_error_message(obj.stanza, obj.msgtxt,
|
|
|
|
obj.session, obj.fjid, obj.timestamp)
|
|
|
|
return True
|
2012-08-24 12:54:27 +02:00
|
|
|
elif obj.mtype == 'groupchat':
|
|
|
|
gajim.nec.push_incoming_event(GcMessageReceivedEvent(None,
|
|
|
|
conn=self, msg_obj=obj))
|
|
|
|
return True
|
2010-12-19 21:22:29 +01:00
|
|
|
|
|
|
|
# process and dispatch an error message
|
|
|
|
def dispatch_error_message(self, msg, msgtxt, session, frm, tim):
|
|
|
|
error_msg = msg.getErrorMsg()
|
|
|
|
|
|
|
|
if not error_msg:
|
|
|
|
error_msg = msgtxt
|
|
|
|
msgtxt = None
|
|
|
|
|
|
|
|
subject = msg.getSubject()
|
|
|
|
|
|
|
|
if session.is_loggable():
|
2017-04-08 22:53:50 +02:00
|
|
|
gajim.logger.write('error', frm, error_msg, tim=tim,
|
|
|
|
subject=subject)
|
2010-12-19 21:22:29 +01:00
|
|
|
gajim.nec.push_incoming_event(MessageErrorEvent(None, conn=self,
|
|
|
|
fjid=frm, error_code=msg.getErrorCode(), error_msg=error_msg,
|
2016-02-08 22:31:36 +01:00
|
|
|
msg=msgtxt, time_=tim, session=session, stanza=msg))
|
2010-12-19 21:22:29 +01:00
|
|
|
|
2010-03-10 21:58:14 +01:00
|
|
|
def _LastResultCB(self, con, iq_obj):
|
|
|
|
log.debug('LastResultCB')
|
2010-07-20 16:53:07 +02:00
|
|
|
gajim.nec.push_incoming_event(LastResultReceivedEvent(None, conn=self,
|
2010-10-18 22:05:41 +02:00
|
|
|
stanza=iq_obj))
|
2010-03-10 21:58:14 +01:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def get_sessions(self, jid):
|
|
|
|
"""
|
|
|
|
Get all sessions for the given full jid
|
|
|
|
"""
|
|
|
|
if not gajim.interface.is_pm_contact(jid, self.name):
|
|
|
|
jid = gajim.get_jid_without_resource(jid)
|
|
|
|
|
|
|
|
try:
|
2013-01-02 17:53:42 +01:00
|
|
|
return list(self.sessions[jid].values())
|
2010-02-08 15:08:40 +01:00
|
|
|
except KeyError:
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_or_create_session(self, fjid, thread_id):
|
|
|
|
"""
|
|
|
|
Return an existing session between this connection and 'jid', returns a
|
|
|
|
new one if none exist
|
|
|
|
"""
|
|
|
|
pm = True
|
|
|
|
jid = fjid
|
|
|
|
|
|
|
|
if not gajim.interface.is_pm_contact(fjid, self.name):
|
|
|
|
pm = False
|
|
|
|
jid = gajim.get_jid_without_resource(fjid)
|
|
|
|
|
|
|
|
session = self.find_session(jid, thread_id)
|
|
|
|
|
|
|
|
if session:
|
|
|
|
return session
|
|
|
|
|
|
|
|
if pm:
|
|
|
|
return self.make_new_session(fjid, thread_id, type_='pm')
|
|
|
|
else:
|
|
|
|
return self.make_new_session(fjid, thread_id)
|
|
|
|
|
|
|
|
def find_session(self, jid, thread_id):
|
|
|
|
try:
|
|
|
|
if not thread_id:
|
|
|
|
return self.find_null_session(jid)
|
|
|
|
else:
|
|
|
|
return self.sessions[jid][thread_id]
|
|
|
|
except KeyError:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def terminate_sessions(self, send_termination=False):
|
|
|
|
"""
|
|
|
|
Send termination messages and delete all active sessions
|
|
|
|
"""
|
|
|
|
for jid in self.sessions:
|
|
|
|
for thread_id in self.sessions[jid]:
|
|
|
|
self.sessions[jid][thread_id].terminate(send_termination)
|
|
|
|
|
|
|
|
self.sessions = {}
|
|
|
|
|
|
|
|
def delete_session(self, jid, thread_id):
|
|
|
|
if not jid in self.sessions:
|
|
|
|
jid = gajim.get_jid_without_resource(jid)
|
|
|
|
if not jid in self.sessions:
|
|
|
|
return
|
|
|
|
|
|
|
|
del self.sessions[jid][thread_id]
|
|
|
|
|
|
|
|
if not self.sessions[jid]:
|
|
|
|
del self.sessions[jid]
|
|
|
|
|
|
|
|
def find_null_session(self, jid):
|
|
|
|
"""
|
|
|
|
Find all of the sessions between us and a remote jid in which we haven't
|
|
|
|
received a thread_id yet and returns the session that we last sent a
|
|
|
|
message to
|
|
|
|
"""
|
2013-01-02 17:53:42 +01:00
|
|
|
sessions = list(self.sessions[jid].values())
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
# sessions that we haven't received a thread ID in
|
|
|
|
idless = [s for s in sessions if not s.received_thread_id]
|
|
|
|
|
|
|
|
# filter out everything except the default session type
|
|
|
|
chat_sessions = [s for s in idless if isinstance(s,
|
2010-10-06 21:11:23 +02:00
|
|
|
gajim.default_session_type)]
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
if chat_sessions:
|
|
|
|
# return the session that we last sent a message in
|
2010-10-06 21:11:23 +02:00
|
|
|
return sorted(chat_sessions, key=operator.attrgetter('last_send'))[
|
|
|
|
-1]
|
2010-02-08 15:08:40 +01:00
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
2013-08-27 17:24:41 +02:00
|
|
|
def get_latest_session(self, jid):
|
|
|
|
"""
|
|
|
|
Get the session that we last sent a message to
|
|
|
|
"""
|
|
|
|
if jid not in self.sessions:
|
|
|
|
return None
|
|
|
|
sessions = self.sessions[jid].values()
|
|
|
|
if not sessions:
|
|
|
|
return None
|
|
|
|
return sorted(sessions, key=operator.attrgetter('last_send'))[-1]
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def find_controlless_session(self, jid, resource=None):
|
|
|
|
"""
|
|
|
|
Find an active session that doesn't have a control attached
|
|
|
|
"""
|
|
|
|
try:
|
2013-01-02 17:53:42 +01:00
|
|
|
sessions = list(self.sessions[jid].values())
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
# filter out everything except the default session type
|
|
|
|
chat_sessions = [s for s in sessions if isinstance(s,
|
2010-10-06 21:11:23 +02:00
|
|
|
gajim.default_session_type)]
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
orphaned = [s for s in chat_sessions if not s.control]
|
|
|
|
|
|
|
|
if resource:
|
|
|
|
orphaned = [s for s in orphaned if s.resource == resource]
|
|
|
|
|
|
|
|
return orphaned[0]
|
|
|
|
except (KeyError, IndexError):
|
|
|
|
return None
|
|
|
|
|
|
|
|
def make_new_session(self, jid, thread_id=None, type_='chat', cls=None):
|
|
|
|
"""
|
|
|
|
Create and register a new session
|
|
|
|
|
|
|
|
thread_id=None to generate one.
|
|
|
|
type_ should be 'chat' or 'pm'.
|
|
|
|
"""
|
|
|
|
if not cls:
|
|
|
|
cls = gajim.default_session_type
|
|
|
|
|
2012-12-09 21:37:51 +01:00
|
|
|
sess = cls(self, nbxmpp.JID(jid), thread_id, type_)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
# determine if this session is a pm session
|
|
|
|
# if not, discard the resource so that all sessions are stored bare
|
|
|
|
if not type_ == 'pm':
|
|
|
|
jid = gajim.get_jid_without_resource(jid)
|
|
|
|
|
|
|
|
if not jid in self.sessions:
|
|
|
|
self.sessions[jid] = {}
|
|
|
|
|
|
|
|
self.sessions[jid][sess.thread_id] = sess
|
|
|
|
|
|
|
|
return sess
|
2008-05-17 04:23:46 +02:00
|
|
|
|
2014-11-11 15:28:24 +01:00
|
|
|
class ConnectionHandlers(ConnectionArchive136, ConnectionArchive313,
|
|
|
|
ConnectionVcard, ConnectionSocks5Bytestream, ConnectionDisco,
|
|
|
|
ConnectionCommands, ConnectionPubSub, ConnectionPEP, ConnectionCaps,
|
|
|
|
ConnectionHandlersBase, ConnectionJingle, ConnectionIBBytestream):
|
2010-02-08 15:08:40 +01:00
|
|
|
def __init__(self):
|
|
|
|
global HAS_IDLE
|
2014-11-11 15:28:24 +01:00
|
|
|
ConnectionArchive136.__init__(self)
|
|
|
|
ConnectionArchive313.__init__(self)
|
2010-02-08 15:08:40 +01:00
|
|
|
ConnectionVcard.__init__(self)
|
2010-02-22 16:29:01 +01:00
|
|
|
ConnectionSocks5Bytestream.__init__(self)
|
2010-08-16 14:33:50 +02:00
|
|
|
ConnectionIBBytestream.__init__(self)
|
2010-02-08 15:08:40 +01:00
|
|
|
ConnectionCommands.__init__(self)
|
|
|
|
ConnectionPubSub.__init__(self)
|
|
|
|
ConnectionPEP.__init__(self, account=self.name, dispatcher=self,
|
2010-10-06 21:11:23 +02:00
|
|
|
pubsub_connection=self)
|
2010-11-24 09:19:38 +01:00
|
|
|
|
|
|
|
# Handle presences BEFORE caps
|
|
|
|
gajim.nec.register_incoming_event(PresenceReceivedEvent)
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
ConnectionCaps.__init__(self, account=self.name,
|
2013-04-06 12:24:26 +02:00
|
|
|
capscache=capscache.capscache,
|
2010-10-06 21:11:23 +02:00
|
|
|
client_caps_factory=capscache.create_suitable_client_caps)
|
2010-02-08 15:08:40 +01:00
|
|
|
ConnectionJingle.__init__(self)
|
|
|
|
ConnectionHandlersBase.__init__(self)
|
|
|
|
self.gmail_url = None
|
|
|
|
|
|
|
|
# keep the latest subscribed event for each jid to prevent loop when we
|
|
|
|
# acknowledge presences
|
|
|
|
self.subscribed_events = {}
|
|
|
|
# IDs of jabber:iq:version requests
|
|
|
|
self.version_ids = []
|
|
|
|
# IDs of urn:xmpp:time requests
|
|
|
|
self.entity_time_ids = []
|
2013-07-30 20:09:52 +02:00
|
|
|
# IDs of disco#items requests
|
|
|
|
self.disco_items_ids = []
|
|
|
|
# IDs of disco#info requests
|
|
|
|
self.disco_info_ids = []
|
2010-02-08 15:08:40 +01:00
|
|
|
# ID of urn:xmpp:ping requests
|
|
|
|
self.awaiting_xmpp_ping_id = None
|
|
|
|
self.continue_connect_info = None
|
|
|
|
|
2017-01-27 22:24:53 +01:00
|
|
|
self.privacy_default_list = None
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
try:
|
|
|
|
self.sleeper = common.sleepy.Sleepy()
|
|
|
|
HAS_IDLE = True
|
|
|
|
except Exception:
|
|
|
|
HAS_IDLE = False
|
|
|
|
|
|
|
|
self.gmail_last_tid = None
|
|
|
|
self.gmail_last_time = None
|
|
|
|
|
2010-09-09 16:40:58 +02:00
|
|
|
gajim.nec.register_incoming_event(PrivateStorageBookmarksReceivedEvent)
|
|
|
|
gajim.nec.register_incoming_event(BookmarksReceivedEvent)
|
|
|
|
gajim.nec.register_incoming_event(
|
|
|
|
PrivateStorageRosternotesReceivedEvent)
|
|
|
|
gajim.nec.register_incoming_event(RosternotesReceivedEvent)
|
|
|
|
gajim.nec.register_incoming_event(StreamConflictReceivedEvent)
|
2012-06-19 19:19:24 +02:00
|
|
|
gajim.nec.register_incoming_event(StreamOtherHostReceivedEvent)
|
2010-10-18 22:05:41 +02:00
|
|
|
gajim.nec.register_incoming_event(MessageReceivedEvent)
|
2010-11-05 20:36:45 +01:00
|
|
|
gajim.nec.register_incoming_event(ArchivingErrorReceivedEvent)
|
|
|
|
gajim.nec.register_incoming_event(
|
|
|
|
ArchivingPreferencesChangedReceivedEvent)
|
2016-10-31 02:11:46 +01:00
|
|
|
gajim.nec.register_incoming_event(
|
|
|
|
Archiving313PreferencesChangedReceivedEvent)
|
2017-04-18 18:56:57 +02:00
|
|
|
gajim.nec.register_incoming_event(
|
|
|
|
ArchivingFinishedLegacyReceivedEvent)
|
|
|
|
gajim.nec.register_incoming_event(
|
|
|
|
ArchivingFinishedReceivedEvent)
|
2011-05-01 22:09:50 +02:00
|
|
|
gajim.nec.register_incoming_event(NotificationEvent)
|
2010-09-09 16:40:58 +02:00
|
|
|
|
2010-07-20 10:35:38 +02:00
|
|
|
gajim.ged.register_event_handler('http-auth-received', ged.CORE,
|
|
|
|
self._nec_http_auth_received)
|
2010-08-16 23:39:33 +02:00
|
|
|
gajim.ged.register_event_handler('version-request-received', ged.CORE,
|
|
|
|
self._nec_version_request_received)
|
2010-08-16 23:47:08 +02:00
|
|
|
gajim.ged.register_event_handler('last-request-received', ged.CORE,
|
2010-08-17 00:13:38 +02:00
|
|
|
self._nec_last_request_received)
|
|
|
|
gajim.ged.register_event_handler('time-request-received', ged.CORE,
|
|
|
|
self._nec_time_request_received)
|
|
|
|
gajim.ged.register_event_handler('time-revised-request-received',
|
|
|
|
ged.CORE, self._nec_time_revised_request_received)
|
2010-08-23 14:35:03 +02:00
|
|
|
gajim.ged.register_event_handler('roster-set-received',
|
|
|
|
ged.CORE, self._nec_roster_set_received)
|
2010-08-27 22:45:59 +02:00
|
|
|
gajim.ged.register_event_handler('private-storage-bookmarks-received',
|
|
|
|
ged.CORE, self._nec_private_storate_bookmarks_received)
|
|
|
|
gajim.ged.register_event_handler('private-storage-rosternotes-received',
|
|
|
|
ged.CORE, self._nec_private_storate_rosternotes_received)
|
2010-08-29 20:22:20 +02:00
|
|
|
gajim.ged.register_event_handler('roster-received', ged.CORE,
|
|
|
|
self._nec_roster_received)
|
2010-10-04 13:51:42 +02:00
|
|
|
gajim.ged.register_event_handler('iq-error-received', ged.CORE,
|
|
|
|
self._nec_iq_error_received)
|
2010-09-09 15:21:43 +02:00
|
|
|
gajim.ged.register_event_handler('gmail-new-mail-received', ged.CORE,
|
|
|
|
self._nec_gmail_new_mail_received)
|
2010-09-09 15:48:08 +02:00
|
|
|
gajim.ged.register_event_handler('ping-received', ged.CORE,
|
|
|
|
self._nec_ping_received)
|
2010-10-04 10:56:34 +02:00
|
|
|
gajim.ged.register_event_handler('subscribe-presence-received',
|
|
|
|
ged.CORE, self._nec_subscribe_presence_received)
|
|
|
|
gajim.ged.register_event_handler('subscribed-presence-received',
|
|
|
|
ged.CORE, self._nec_subscribed_presence_received)
|
|
|
|
gajim.ged.register_event_handler('subscribed-presence-received',
|
|
|
|
ged.POSTGUI, self._nec_subscribed_presence_received_end)
|
|
|
|
gajim.ged.register_event_handler('unsubscribed-presence-received',
|
|
|
|
ged.CORE, self._nec_unsubscribed_presence_received)
|
|
|
|
gajim.ged.register_event_handler('unsubscribed-presence-received',
|
|
|
|
ged.POSTGUI, self._nec_unsubscribed_presence_received_end)
|
2010-11-09 21:52:22 +01:00
|
|
|
gajim.ged.register_event_handler('agent-removed', ged.CORE,
|
|
|
|
self._nec_agent_removed)
|
2012-04-21 23:52:24 +02:00
|
|
|
gajim.ged.register_event_handler('stream-other-host-received', ged.CORE,
|
|
|
|
self._nec_stream_other_host_received)
|
2014-08-13 22:46:18 +02:00
|
|
|
gajim.ged.register_event_handler('blocking', ged.CORE,
|
|
|
|
self._nec_blocking)
|
2010-07-20 10:35:38 +02:00
|
|
|
|
2011-01-06 16:50:38 +01:00
|
|
|
def cleanup(self):
|
|
|
|
ConnectionHandlersBase.cleanup(self)
|
|
|
|
ConnectionCaps.cleanup(self)
|
2014-12-29 19:13:12 +01:00
|
|
|
ConnectionArchive136.cleanup(self)
|
|
|
|
ConnectionArchive313.cleanup(self)
|
2011-01-06 16:50:38 +01:00
|
|
|
ConnectionPubSub.cleanup(self)
|
|
|
|
gajim.ged.remove_event_handler('http-auth-received', ged.CORE,
|
|
|
|
self._nec_http_auth_received)
|
|
|
|
gajim.ged.remove_event_handler('version-request-received', ged.CORE,
|
|
|
|
self._nec_version_request_received)
|
|
|
|
gajim.ged.remove_event_handler('last-request-received', ged.CORE,
|
|
|
|
self._nec_last_request_received)
|
|
|
|
gajim.ged.remove_event_handler('time-request-received', ged.CORE,
|
|
|
|
self._nec_time_request_received)
|
|
|
|
gajim.ged.remove_event_handler('time-revised-request-received',
|
|
|
|
ged.CORE, self._nec_time_revised_request_received)
|
|
|
|
gajim.ged.remove_event_handler('roster-set-received',
|
|
|
|
ged.CORE, self._nec_roster_set_received)
|
|
|
|
gajim.ged.remove_event_handler('private-storage-bookmarks-received',
|
|
|
|
ged.CORE, self._nec_private_storate_bookmarks_received)
|
|
|
|
gajim.ged.remove_event_handler('private-storage-rosternotes-received',
|
|
|
|
ged.CORE, self._nec_private_storate_rosternotes_received)
|
|
|
|
gajim.ged.remove_event_handler('roster-received', ged.CORE,
|
|
|
|
self._nec_roster_received)
|
|
|
|
gajim.ged.remove_event_handler('iq-error-received', ged.CORE,
|
|
|
|
self._nec_iq_error_received)
|
|
|
|
gajim.ged.remove_event_handler('gmail-new-mail-received', ged.CORE,
|
|
|
|
self._nec_gmail_new_mail_received)
|
|
|
|
gajim.ged.remove_event_handler('ping-received', ged.CORE,
|
|
|
|
self._nec_ping_received)
|
|
|
|
gajim.ged.remove_event_handler('subscribe-presence-received',
|
|
|
|
ged.CORE, self._nec_subscribe_presence_received)
|
|
|
|
gajim.ged.remove_event_handler('subscribed-presence-received',
|
|
|
|
ged.CORE, self._nec_subscribed_presence_received)
|
|
|
|
gajim.ged.remove_event_handler('subscribed-presence-received',
|
|
|
|
ged.POSTGUI, self._nec_subscribed_presence_received_end)
|
|
|
|
gajim.ged.remove_event_handler('unsubscribed-presence-received',
|
|
|
|
ged.CORE, self._nec_unsubscribed_presence_received)
|
|
|
|
gajim.ged.remove_event_handler('unsubscribed-presence-received',
|
|
|
|
ged.POSTGUI, self._nec_unsubscribed_presence_received_end)
|
|
|
|
gajim.ged.remove_event_handler('agent-removed', ged.CORE,
|
|
|
|
self._nec_agent_removed)
|
2012-04-21 23:52:24 +02:00
|
|
|
gajim.ged.remove_event_handler('stream-other-host-received', ged.CORE,
|
|
|
|
self._nec_stream_other_host_received)
|
2014-08-13 22:46:18 +02:00
|
|
|
gajim.ged.remove_event_handler('blocking', ged.CORE, self._nec_blocking)
|
2010-07-20 10:35:38 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def build_http_auth_answer(self, iq_obj, answer):
|
|
|
|
if not self.connection or self.connected < 2:
|
|
|
|
return
|
|
|
|
if answer == 'yes':
|
2010-04-09 15:11:04 +02:00
|
|
|
confirm = iq_obj.getTag('confirm')
|
|
|
|
reply = iq_obj.buildReply('result')
|
2010-04-21 13:59:46 +02:00
|
|
|
if iq_obj.getName() == 'message':
|
2010-04-09 15:11:04 +02:00
|
|
|
reply.addChild(node=confirm)
|
|
|
|
self.connection.send(reply)
|
2010-02-08 15:08:40 +01:00
|
|
|
elif answer == 'no':
|
2012-12-09 21:37:51 +01:00
|
|
|
err = nbxmpp.Error(iq_obj, nbxmpp.protocol.ERR_NOT_AUTHORIZED)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.send(err)
|
|
|
|
|
2010-07-20 10:35:38 +02:00
|
|
|
def _nec_http_auth_received(self, obj):
|
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
|
|
|
if obj.opt in ('yes', 'no'):
|
2010-10-18 22:05:41 +02:00
|
|
|
obj.conn.build_http_auth_answer(obj.stanza, obj.opt)
|
2010-07-20 10:35:38 +02:00
|
|
|
return True
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def _HttpAuthCB(self, con, iq_obj):
|
|
|
|
log.debug('HttpAuthCB')
|
2010-07-20 10:35:38 +02:00
|
|
|
gajim.nec.push_incoming_event(HttpAuthReceivedEvent(None, conn=self,
|
2010-10-18 22:05:41 +02:00
|
|
|
stanza=iq_obj))
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _ErrorCB(self, con, iq_obj):
|
|
|
|
log.debug('ErrorCB')
|
2010-10-04 13:51:42 +02:00
|
|
|
gajim.nec.push_incoming_event(IqErrorReceivedEvent(None, conn=self,
|
2010-10-18 22:05:41 +02:00
|
|
|
stanza=iq_obj))
|
2010-09-08 19:55:19 +02:00
|
|
|
|
2010-10-04 13:51:42 +02:00
|
|
|
def _nec_iq_error_received(self, obj):
|
2010-09-08 19:55:19 +02:00
|
|
|
if obj.conn.name != self.name:
|
2010-07-20 16:53:07 +02:00
|
|
|
return
|
2010-09-08 19:55:19 +02:00
|
|
|
if obj.id_ in self.version_ids:
|
2010-07-20 16:53:07 +02:00
|
|
|
gajim.nec.push_incoming_event(VersionResultReceivedEvent(None,
|
2010-10-19 21:49:49 +02:00
|
|
|
conn=self, stanza=obj.stanza))
|
2010-09-08 19:55:19 +02:00
|
|
|
return True
|
|
|
|
if obj.id_ in self.entity_time_ids:
|
|
|
|
gajim.nec.push_incoming_event(TimeResultReceivedEvent(None,
|
2010-10-18 22:05:41 +02:00
|
|
|
conn=self, stanza=obj.stanza))
|
2010-09-08 19:55:19 +02:00
|
|
|
return True
|
2013-07-30 20:09:52 +02:00
|
|
|
if obj.id_ in self.disco_items_ids:
|
|
|
|
gajim.nec.push_incoming_event(AgentItemsErrorReceivedEvent(None,
|
|
|
|
conn=self, stanza=obj.stanza))
|
|
|
|
return True
|
|
|
|
if obj.id_ in self.disco_info_ids:
|
|
|
|
gajim.nec.push_incoming_event(AgentInfoErrorReceivedEvent(None,
|
|
|
|
conn=self, stanza=obj.stanza))
|
|
|
|
return True
|
2010-04-08 01:20:17 +02:00
|
|
|
|
2010-08-27 22:45:59 +02:00
|
|
|
def _nec_private_storate_bookmarks_received(self, obj):
|
2010-08-28 13:58:35 +02:00
|
|
|
if obj.conn.name != self.name:
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2010-08-27 22:45:59 +02:00
|
|
|
resend_to_pubsub = False
|
|
|
|
bm_jids = [b['jid'] for b in self.bookmarks]
|
|
|
|
for bm in obj.bookmarks:
|
|
|
|
if bm['jid'] not in bm_jids:
|
|
|
|
self.bookmarks.append(bm)
|
|
|
|
# We got a bookmark that was not in pubsub
|
|
|
|
resend_to_pubsub = True
|
|
|
|
if self.pubsub_supported and resend_to_pubsub:
|
|
|
|
self.store_bookmarks('pubsub')
|
|
|
|
|
|
|
|
def _nec_private_storate_rosternotes_received(self, obj):
|
2010-08-28 13:58:35 +02:00
|
|
|
if obj.conn.name != self.name:
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2010-08-27 22:45:59 +02:00
|
|
|
for jid in obj.annotations:
|
|
|
|
self.annotations[jid] = obj.annotations[jid]
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _PrivateCB(self, con, iq_obj):
|
|
|
|
"""
|
|
|
|
Private Data (XEP 048 and 049)
|
|
|
|
"""
|
|
|
|
log.debug('PrivateCB')
|
2010-08-27 22:45:59 +02:00
|
|
|
gajim.nec.push_incoming_event(PrivateStorageReceivedEvent(None,
|
2010-10-18 22:05:41 +02:00
|
|
|
conn=self, stanza=iq_obj))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2010-06-07 19:11:44 +02:00
|
|
|
def _SecLabelCB(self, con, iq_obj):
|
|
|
|
"""
|
|
|
|
Security Label callback, used for catalogues.
|
|
|
|
"""
|
|
|
|
log.debug('SecLabelCB')
|
|
|
|
query = iq_obj.getTag('catalog')
|
|
|
|
to = query.getAttr('to')
|
2011-10-07 17:57:24 +02:00
|
|
|
items = query.getTags('item')
|
2010-06-07 19:11:44 +02:00
|
|
|
labels = {}
|
|
|
|
ll = []
|
2011-10-13 18:04:43 +02:00
|
|
|
default = None
|
2010-06-07 19:11:44 +02:00
|
|
|
for item in items:
|
2011-10-07 17:57:24 +02:00
|
|
|
label = item.getAttr('selector')
|
|
|
|
labels[label] = item.getTag('securitylabel')
|
2010-06-07 19:11:44 +02:00
|
|
|
ll.append(label)
|
2011-10-13 18:04:43 +02:00
|
|
|
if item.getAttr('default') == 'true':
|
|
|
|
default = label
|
2010-06-07 19:11:44 +02:00
|
|
|
if to not in self.seclabel_catalogues:
|
2011-10-13 18:04:43 +02:00
|
|
|
self.seclabel_catalogues[to] = [[], None, None, None]
|
2010-06-07 19:11:44 +02:00
|
|
|
self.seclabel_catalogues[to][1] = labels
|
|
|
|
self.seclabel_catalogues[to][2] = ll
|
2011-10-13 18:04:43 +02:00
|
|
|
self.seclabel_catalogues[to][3] = default
|
2010-06-07 19:11:44 +02:00
|
|
|
for callback in self.seclabel_catalogues[to][0]:
|
|
|
|
callback()
|
|
|
|
self.seclabel_catalogues[to][0] = []
|
|
|
|
|
|
|
|
def seclabel_catalogue_request(self, to, callback):
|
|
|
|
if to not in self.seclabel_catalogues:
|
2015-03-01 15:07:14 +01:00
|
|
|
self.seclabel_catalogues[to] = [[], None, None, None]
|
2010-06-07 19:11:44 +02:00
|
|
|
self.seclabel_catalogues[to][0].append(callback)
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def _rosterSetCB(self, con, iq_obj):
|
|
|
|
log.debug('rosterSetCB')
|
2010-08-23 14:35:03 +02:00
|
|
|
gajim.nec.push_incoming_event(RosterSetReceivedEvent(None, conn=self,
|
2010-10-18 22:05:41 +02:00
|
|
|
stanza=iq_obj))
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2010-08-23 14:35:03 +02:00
|
|
|
def _nec_roster_set_received(self, obj):
|
2010-08-24 08:26:17 +02:00
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
2010-08-23 14:35:03 +02:00
|
|
|
for jid in obj.items:
|
|
|
|
item = obj.items[jid]
|
|
|
|
gajim.nec.push_incoming_event(RosterInfoEvent(None, conn=self,
|
2010-10-06 21:11:23 +02:00
|
|
|
jid=jid, nickname=item['name'], sub=item['sub'],
|
|
|
|
ask=item['ask'], groups=item['groups']))
|
2010-08-23 14:35:03 +02:00
|
|
|
account_jid = gajim.get_jid_from_account(self.name)
|
|
|
|
gajim.logger.add_or_update_contact(account_jid, jid, item['name'],
|
|
|
|
item['sub'], item['ask'], item['groups'])
|
|
|
|
if obj.version:
|
|
|
|
gajim.config.set_per('accounts', self.name, 'roster_version',
|
|
|
|
obj.version)
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def _VersionCB(self, con, iq_obj):
|
|
|
|
log.debug('VersionCB')
|
|
|
|
if not self.connection or self.connected < 2:
|
|
|
|
return
|
2010-10-06 21:11:23 +02:00
|
|
|
gajim.nec.push_incoming_event(VersionRequestEvent(None, conn=self,
|
2010-10-18 22:05:41 +02:00
|
|
|
stanza=iq_obj))
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
2010-08-27 22:45:59 +02:00
|
|
|
|
2010-08-16 23:39:33 +02:00
|
|
|
def _nec_version_request_received(self, obj):
|
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
2010-02-08 15:08:40 +01:00
|
|
|
send_os = gajim.config.get_per('accounts', self.name, 'send_os_info')
|
|
|
|
if send_os:
|
2011-11-06 20:40:54 +01:00
|
|
|
iq_obj = obj.stanza.buildReply('result')
|
|
|
|
qp = iq_obj.getQuery()
|
|
|
|
qp.setTagData('name', 'Gajim')
|
|
|
|
qp.setTagData('version', gajim.version)
|
2010-02-08 15:08:40 +01:00
|
|
|
qp.setTagData('os', helpers.get_os_info())
|
2011-11-06 20:40:54 +01:00
|
|
|
else:
|
|
|
|
iq_obj = obj.stanza.buildReply('error')
|
2012-12-09 21:37:51 +01:00
|
|
|
err = nbxmpp.ErrorNode(name=nbxmpp.NS_STANZAS + \
|
2011-11-06 20:40:54 +01:00
|
|
|
' service-unavailable')
|
|
|
|
iq_obj.addChild(node=err)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.send(iq_obj)
|
|
|
|
|
|
|
|
def _LastCB(self, con, iq_obj):
|
|
|
|
log.debug('LastCB')
|
|
|
|
if not self.connection or self.connected < 2:
|
|
|
|
return
|
2010-10-06 21:11:23 +02:00
|
|
|
gajim.nec.push_incoming_event(LastRequestEvent(None, conn=self,
|
2010-10-18 22:05:41 +02:00
|
|
|
stanza=iq_obj))
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
2010-08-16 23:47:08 +02:00
|
|
|
|
|
|
|
def _nec_last_request_received(self, obj):
|
|
|
|
global HAS_IDLE
|
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
2010-02-08 15:08:40 +01:00
|
|
|
if HAS_IDLE and gajim.config.get_per('accounts', self.name,
|
|
|
|
'send_idle_time'):
|
2010-10-18 22:05:41 +02:00
|
|
|
iq_obj = obj.stanza.buildReply('result')
|
2011-10-31 10:47:28 +01:00
|
|
|
qp = iq_obj.setQuery()
|
2010-02-08 15:08:40 +01:00
|
|
|
qp.attrs['seconds'] = int(self.sleeper.getIdleSec())
|
|
|
|
else:
|
2010-10-18 22:05:41 +02:00
|
|
|
iq_obj = obj.stanza.buildReply('error')
|
2012-12-09 21:37:51 +01:00
|
|
|
err = nbxmpp.ErrorNode(name=nbxmpp.NS_STANZAS + \
|
2010-08-16 23:47:08 +02:00
|
|
|
' service-unavailable')
|
2010-02-08 15:08:40 +01:00
|
|
|
iq_obj.addChild(node=err)
|
|
|
|
self.connection.send(iq_obj)
|
|
|
|
|
|
|
|
def _VersionResultCB(self, con, iq_obj):
|
|
|
|
log.debug('VersionResultCB')
|
2010-07-20 16:53:07 +02:00
|
|
|
gajim.nec.push_incoming_event(VersionResultReceivedEvent(None,
|
2010-10-18 22:05:41 +02:00
|
|
|
conn=self, stanza=iq_obj))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _TimeCB(self, con, iq_obj):
|
|
|
|
log.debug('TimeCB')
|
|
|
|
if not self.connection or self.connected < 2:
|
|
|
|
return
|
2010-10-06 21:11:23 +02:00
|
|
|
gajim.nec.push_incoming_event(TimeRequestEvent(None, conn=self,
|
2010-10-18 22:05:41 +02:00
|
|
|
stanza=iq_obj))
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
2010-08-17 00:13:38 +02:00
|
|
|
|
|
|
|
def _nec_time_request_received(self, obj):
|
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
2011-01-19 09:08:31 +01:00
|
|
|
if gajim.config.get_per('accounts', self.name, 'send_time_info'):
|
|
|
|
iq_obj = obj.stanza.buildReply('result')
|
2011-10-31 10:47:28 +01:00
|
|
|
qp = iq_obj.setQuery()
|
2011-01-19 09:08:31 +01:00
|
|
|
qp.setTagData('utc', strftime('%Y%m%dT%H:%M:%S', gmtime()))
|
2013-01-02 17:53:42 +01:00
|
|
|
qp.setTagData('tz', tzname[daylight])
|
|
|
|
qp.setTagData('display', strftime('%c', localtime()))
|
2011-01-19 09:08:31 +01:00
|
|
|
else:
|
|
|
|
iq_obj = obj.stanza.buildReply('error')
|
2012-12-09 21:37:51 +01:00
|
|
|
err = nbxmpp.ErrorNode(name=nbxmpp.NS_STANZAS + \
|
2011-01-19 09:08:31 +01:00
|
|
|
' service-unavailable')
|
|
|
|
iq_obj.addChild(node=err)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.send(iq_obj)
|
|
|
|
|
|
|
|
def _TimeRevisedCB(self, con, iq_obj):
|
|
|
|
log.debug('TimeRevisedCB')
|
|
|
|
if not self.connection or self.connected < 2:
|
|
|
|
return
|
2010-10-06 21:11:23 +02:00
|
|
|
gajim.nec.push_incoming_event(TimeRevisedRequestEvent(None, conn=self,
|
2010-10-18 22:05:41 +02:00
|
|
|
stanza=iq_obj))
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
2010-08-17 00:13:38 +02:00
|
|
|
|
|
|
|
def _nec_time_revised_request_received(self, obj):
|
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
2011-01-19 09:08:31 +01:00
|
|
|
if gajim.config.get_per('accounts', self.name, 'send_time_info'):
|
|
|
|
iq_obj = obj.stanza.buildReply('result')
|
2012-12-09 21:37:51 +01:00
|
|
|
qp = iq_obj.setTag('time', namespace=nbxmpp.NS_TIME_REVISED)
|
2011-01-19 09:08:31 +01:00
|
|
|
qp.setTagData('utc', strftime('%Y-%m-%dT%H:%M:%SZ', gmtime()))
|
|
|
|
isdst = localtime().tm_isdst
|
|
|
|
zone = -(timezone, altzone)[isdst] / 60.0
|
|
|
|
tzo = (zone / 60, abs(zone % 60))
|
|
|
|
qp.setTagData('tzo', '%+03d:%02d' % (tzo))
|
|
|
|
else:
|
|
|
|
iq_obj = obj.stanza.buildReply('error')
|
2012-12-09 21:37:51 +01:00
|
|
|
err = nbxmpp.ErrorNode(name=nbxmpp.NS_STANZAS + \
|
2011-01-19 09:08:31 +01:00
|
|
|
' service-unavailable')
|
|
|
|
iq_obj.addChild(node=err)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.send(iq_obj)
|
|
|
|
|
|
|
|
def _TimeRevisedResultCB(self, con, iq_obj):
|
|
|
|
log.debug('TimeRevisedResultCB')
|
2010-10-06 21:11:23 +02:00
|
|
|
gajim.nec.push_incoming_event(TimeResultReceivedEvent(None, conn=self,
|
2010-10-18 22:05:41 +02:00
|
|
|
stanza=iq_obj))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2010-09-09 15:21:43 +02:00
|
|
|
def _gMailNewMailCB(self, con, iq_obj):
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
|
|
|
Called when we get notified of new mail messages in gmail account
|
|
|
|
"""
|
2010-09-09 15:21:43 +02:00
|
|
|
log.debug('gMailNewMailCB')
|
2010-10-06 21:11:23 +02:00
|
|
|
gajim.nec.push_incoming_event(GmailNewMailReceivedEvent(None, conn=self,
|
2010-10-18 22:05:41 +02:00
|
|
|
stanza=iq_obj))
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
2010-09-09 15:21:43 +02:00
|
|
|
|
|
|
|
def _nec_gmail_new_mail_received(self, obj):
|
|
|
|
if obj.conn.name != self.name:
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2010-09-09 15:21:43 +02:00
|
|
|
if not self.connection or self.connected < 2:
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2010-09-09 15:21:43 +02:00
|
|
|
# we'll now ask the server for the exact number of new messages
|
|
|
|
jid = gajim.get_jid_from_account(self.name)
|
|
|
|
log.debug('Got notification of new gmail e-mail on %s. Asking the '
|
|
|
|
'server for more info.' % jid)
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='get')
|
2010-09-09 15:21:43 +02:00
|
|
|
query = iq.setTag('query')
|
2012-12-09 21:37:51 +01:00
|
|
|
query.setNamespace(nbxmpp.NS_GMAILNOTIFY)
|
2010-09-09 15:21:43 +02:00
|
|
|
# we want only be notified about newer mails
|
|
|
|
if self.gmail_last_tid:
|
|
|
|
query.setAttr('newer-than-tid', self.gmail_last_tid)
|
|
|
|
if self.gmail_last_time:
|
|
|
|
query.setAttr('newer-than-time', self.gmail_last_time)
|
|
|
|
self.connection.send(iq)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2010-07-21 23:14:50 +02:00
|
|
|
def _gMailQueryCB(self, con, iq_obj):
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
|
|
|
Called when we receive results from Querying the server for mail messages
|
|
|
|
in gmail account
|
|
|
|
"""
|
2010-07-21 23:14:50 +02:00
|
|
|
log.debug('gMailQueryCB')
|
2010-10-06 21:11:23 +02:00
|
|
|
gajim.nec.push_incoming_event(GMailQueryReceivedEvent(None, conn=self,
|
2010-10-18 22:05:41 +02:00
|
|
|
stanza=iq_obj))
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _rosterItemExchangeCB(self, con, msg):
|
|
|
|
"""
|
|
|
|
XEP-0144 Roster Item Echange
|
|
|
|
"""
|
2010-07-30 01:30:59 +02:00
|
|
|
log.debug('rosterItemExchangeCB')
|
2010-10-06 21:11:23 +02:00
|
|
|
gajim.nec.push_incoming_event(RosterItemExchangeEvent(None, conn=self,
|
2010-10-18 22:05:41 +02:00
|
|
|
stanza=msg))
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _messageCB(self, con, msg):
|
|
|
|
"""
|
|
|
|
Called when we receive a message
|
|
|
|
"""
|
|
|
|
log.debug('MessageCB')
|
2010-04-08 01:20:17 +02:00
|
|
|
|
|
|
|
gajim.nec.push_incoming_event(NetworkEvent('raw-message-received',
|
2010-10-18 22:05:41 +02:00
|
|
|
conn=self, stanza=msg, account=self.name))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2010-10-18 22:05:41 +02:00
|
|
|
def _dispatch_gc_msg_with_captcha(self, stanza, msg_obj):
|
|
|
|
msg_obj.stanza = stanza
|
|
|
|
gajim.nec.push_incoming_event(GcMessageReceivedEvent(None,
|
|
|
|
conn=self, msg_obj=msg_obj))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2010-07-02 00:25:08 +02:00
|
|
|
def _on_bob_received(self, conn, result, cid):
|
|
|
|
"""
|
|
|
|
Called when we receive BoB data
|
|
|
|
"""
|
|
|
|
if cid not in self.awaiting_cids:
|
|
|
|
return
|
|
|
|
|
|
|
|
if result.getType() == 'result':
|
2012-12-09 21:37:51 +01:00
|
|
|
data = msg.getTags('data', namespace=nbxmpp.NS_BOB)
|
2010-07-02 00:25:08 +02:00
|
|
|
if data.getAttr('cid') == cid:
|
|
|
|
for func in self.awaiting_cids[cid]:
|
|
|
|
cb = func[0]
|
|
|
|
args = func[1]
|
|
|
|
pos = func[2]
|
|
|
|
bob_data = data.getData()
|
|
|
|
def recurs(node, cid, data):
|
|
|
|
if node.getData() == 'cid:' + cid:
|
|
|
|
node.setData(data)
|
|
|
|
else:
|
|
|
|
for child in node.getChildren():
|
|
|
|
recurs(child, cid, data)
|
|
|
|
recurs(args[pos], cid, bob_data)
|
|
|
|
cb(*args)
|
|
|
|
del self.awaiting_cids[cid]
|
|
|
|
return
|
|
|
|
|
|
|
|
# An error occured, call callback without modifying data.
|
|
|
|
for func in self.awaiting_cids[cid]:
|
|
|
|
cb = func[0]
|
|
|
|
args = func[1]
|
|
|
|
cb(*args)
|
|
|
|
del self.awaiting_cids[cid]
|
|
|
|
|
|
|
|
def get_bob_data(self, cid, to, callback, args, position):
|
|
|
|
"""
|
|
|
|
Request for BoB (XEP-0231) and when data will arrive, call callback
|
|
|
|
with given args, after having replaced cid by it's data in
|
|
|
|
args[position]
|
|
|
|
"""
|
|
|
|
if cid in self.awaiting_cids:
|
|
|
|
self.awaiting_cids[cid].appends((callback, args, position))
|
|
|
|
else:
|
|
|
|
self.awaiting_cids[cid] = [(callback, args, position)]
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(to=to, typ='get')
|
2010-07-02 00:25:08 +02:00
|
|
|
data = iq.addChild(name='data', attrs={'cid': cid},
|
2012-12-09 21:37:51 +01:00
|
|
|
namespace=nbxmpp.NS_BOB)
|
2010-07-02 00:25:08 +02:00
|
|
|
self.connection.SendAndCallForResponse(iq, self._on_bob_received,
|
|
|
|
{'cid': cid})
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def _presenceCB(self, con, prs):
|
|
|
|
"""
|
|
|
|
Called when we receive a presence
|
|
|
|
"""
|
2010-09-17 12:41:30 +02:00
|
|
|
log.debug('PresenceCB')
|
2010-04-08 01:20:17 +02:00
|
|
|
gajim.nec.push_incoming_event(NetworkEvent('raw-pres-received',
|
2010-10-18 22:05:41 +02:00
|
|
|
conn=self, stanza=prs))
|
2010-04-08 01:20:17 +02:00
|
|
|
|
2010-10-04 10:56:34 +02:00
|
|
|
def _nec_subscribe_presence_received(self, obj):
|
|
|
|
account = obj.conn.name
|
|
|
|
if account != self.name:
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2010-10-04 10:56:34 +02:00
|
|
|
if gajim.jid_is_transport(obj.fjid) and obj.fjid in \
|
|
|
|
self.agent_registrations:
|
|
|
|
self.agent_registrations[obj.fjid]['sub_received'] = True
|
|
|
|
if not self.agent_registrations[obj.fjid]['roster_push']:
|
|
|
|
# We'll reply after roster push result
|
|
|
|
return True
|
|
|
|
if gajim.config.get_per('accounts', self.name, 'autoauth') or \
|
|
|
|
gajim.jid_is_transport(obj.fjid) or obj.jid in self.jids_for_auto_auth \
|
|
|
|
or obj.transport_auto_auth:
|
|
|
|
if self.connection:
|
2012-12-16 23:53:32 +01:00
|
|
|
p = nbxmpp.Presence(obj.fjid, 'subscribed')
|
2010-10-04 10:56:34 +02:00
|
|
|
p = self.add_sha(p)
|
|
|
|
self.connection.send(p)
|
|
|
|
if gajim.jid_is_transport(obj.fjid) or obj.transport_auto_auth:
|
|
|
|
#TODO!?!?
|
|
|
|
#self.show = 'offline'
|
|
|
|
#self.status = 'offline'
|
|
|
|
#emit NOTIFY
|
|
|
|
pass
|
|
|
|
if obj.transport_auto_auth:
|
|
|
|
self.automatically_added.append(obj.jid)
|
|
|
|
self.request_subscription(obj.jid, name=obj.user_nick)
|
|
|
|
return True
|
|
|
|
if not obj.status:
|
|
|
|
obj.status = _('I would like to add you to my roster.')
|
|
|
|
|
|
|
|
def _nec_subscribed_presence_received(self, obj):
|
|
|
|
account = obj.conn.name
|
|
|
|
if account != self.name:
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2010-10-04 10:56:34 +02:00
|
|
|
# BE CAREFUL: no con.updateRosterItem() in a callback
|
|
|
|
if obj.jid in self.automatically_added:
|
|
|
|
self.automatically_added.remove(obj.jid)
|
|
|
|
return True
|
|
|
|
# detect a subscription loop
|
|
|
|
if obj.jid not in self.subscribed_events:
|
|
|
|
self.subscribed_events[obj.jid] = []
|
|
|
|
self.subscribed_events[obj.jid].append(time_time())
|
|
|
|
block = False
|
|
|
|
if len(self.subscribed_events[obj.jid]) > 5:
|
|
|
|
if time_time() - self.subscribed_events[obj.jid][0] < 5:
|
|
|
|
block = True
|
|
|
|
self.subscribed_events[obj.jid] = \
|
|
|
|
self.subscribed_events[obj.jid][1:]
|
|
|
|
if block:
|
|
|
|
gajim.config.set_per('account', self.name, 'dont_ack_subscription',
|
|
|
|
True)
|
|
|
|
return True
|
|
|
|
|
|
|
|
def _nec_subscribed_presence_received_end(self, obj):
|
|
|
|
account = obj.conn.name
|
|
|
|
if account != self.name:
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2010-10-04 10:56:34 +02:00
|
|
|
if not gajim.config.get_per('accounts', account,
|
|
|
|
'dont_ack_subscription'):
|
|
|
|
self.ack_subscribed(obj.jid)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2010-10-04 10:56:34 +02:00
|
|
|
def _nec_unsubscribed_presence_received(self, obj):
|
|
|
|
account = obj.conn.name
|
|
|
|
if account != self.name:
|
|
|
|
return
|
|
|
|
# detect a unsubscription loop
|
|
|
|
if obj.jid not in self.subscribed_events:
|
|
|
|
self.subscribed_events[obj.jid] = []
|
|
|
|
self.subscribed_events[obj.jid].append(time_time())
|
|
|
|
block = False
|
|
|
|
if len(self.subscribed_events[obj.jid]) > 5:
|
|
|
|
if time_time() - self.subscribed_events[obj.jid][0] < 5:
|
|
|
|
block = True
|
|
|
|
self.subscribed_events[obj.jid] = \
|
|
|
|
self.subscribed_events[obj.jid][1:]
|
|
|
|
if block:
|
|
|
|
gajim.config.set_per('account', self.name, 'dont_ack_subscription',
|
|
|
|
True)
|
|
|
|
return True
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2010-10-04 10:56:34 +02:00
|
|
|
def _nec_unsubscribed_presence_received_end(self, obj):
|
|
|
|
account = obj.conn.name
|
|
|
|
if account != self.name:
|
|
|
|
return
|
|
|
|
if not gajim.config.get_per('accounts', account,
|
|
|
|
'dont_ack_subscription'):
|
|
|
|
self.ack_unsubscribed(obj.jid)
|
|
|
|
|
2010-11-09 21:52:22 +01:00
|
|
|
def _nec_agent_removed(self, obj):
|
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
|
|
|
for jid in obj.jid_list:
|
|
|
|
log.debug('Removing contact %s due to unregistered transport %s' % \
|
2010-12-22 11:21:57 +01:00
|
|
|
(jid, obj.agent))
|
2010-11-09 21:52:22 +01:00
|
|
|
self.unsubscribe(jid)
|
|
|
|
# Transport contacts can't have 2 resources
|
|
|
|
if jid in gajim.to_be_removed[self.name]:
|
|
|
|
# This way we'll really remove it
|
|
|
|
gajim.to_be_removed[self.name].remove(jid)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _StanzaArrivedCB(self, con, obj):
|
|
|
|
self.last_io = gajim.idlequeue.current_time()
|
|
|
|
|
|
|
|
def _MucOwnerCB(self, con, iq_obj):
|
|
|
|
log.debug('MucOwnerCB')
|
2010-10-06 21:11:23 +02:00
|
|
|
gajim.nec.push_incoming_event(MucOwnerReceivedEvent(None, conn=self,
|
2010-10-18 22:05:41 +02:00
|
|
|
stanza=iq_obj))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _MucAdminCB(self, con, iq_obj):
|
|
|
|
log.debug('MucAdminCB')
|
2010-10-06 21:11:23 +02:00
|
|
|
gajim.nec.push_incoming_event(MucAdminReceivedEvent(None, conn=self,
|
2010-10-18 22:05:41 +02:00
|
|
|
stanza=iq_obj))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _IqPingCB(self, con, iq_obj):
|
|
|
|
log.debug('IqPingCB')
|
2010-09-09 15:48:08 +02:00
|
|
|
gajim.nec.push_incoming_event(PingReceivedEvent(None, conn=self,
|
2010-10-18 22:05:41 +02:00
|
|
|
stanza=iq_obj))
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
2010-09-09 15:48:08 +02:00
|
|
|
|
|
|
|
def _nec_ping_received(self, obj):
|
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
2010-02-08 15:08:40 +01:00
|
|
|
if not self.connection or self.connected < 2:
|
|
|
|
return
|
2010-10-18 22:05:41 +02:00
|
|
|
iq_obj = obj.stanza.buildReply('result')
|
2013-01-10 17:21:05 +01:00
|
|
|
q = iq_obj.getTag('ping')
|
|
|
|
if q:
|
|
|
|
iq_obj.delChild(q)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.send(iq_obj)
|
|
|
|
|
|
|
|
def _PrivacySetCB(self, con, iq_obj):
|
|
|
|
"""
|
|
|
|
Privacy lists (XEP 016)
|
|
|
|
|
|
|
|
A list has been set.
|
|
|
|
"""
|
|
|
|
log.debug('PrivacySetCB')
|
|
|
|
if not self.connection or self.connected < 2:
|
|
|
|
return
|
|
|
|
result = iq_obj.buildReply('result')
|
|
|
|
q = result.getTag('query')
|
|
|
|
if q:
|
|
|
|
result.delChild(q)
|
|
|
|
self.connection.send(result)
|
2017-01-27 23:48:27 +01:00
|
|
|
|
|
|
|
for list_ in iq_obj.getQueryPayload():
|
|
|
|
if list_.getName() == 'list':
|
|
|
|
self.get_privacy_list(list_.getAttr('name'))
|
|
|
|
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _getRoster(self):
|
|
|
|
log.debug('getRosterCB')
|
|
|
|
if not self.connection:
|
|
|
|
return
|
|
|
|
self.connection.getRoster(self._on_roster_set)
|
|
|
|
self.discoverItems(gajim.config.get_per('accounts', self.name,
|
2010-10-06 21:11:23 +02:00
|
|
|
'hostname'), id_prefix='Gajim_')
|
2010-02-08 15:08:40 +01:00
|
|
|
if gajim.config.get_per('accounts', self.name, 'use_ft_proxies'):
|
|
|
|
self.discover_ft_proxies()
|
|
|
|
|
|
|
|
def discover_ft_proxies(self):
|
|
|
|
cfg_proxies = gajim.config.get_per('accounts', self.name,
|
2010-10-06 21:11:23 +02:00
|
|
|
'file_transfer_proxies')
|
2010-08-29 20:22:20 +02:00
|
|
|
our_jid = helpers.parse_jid(gajim.get_jid_from_account(self.name) + \
|
|
|
|
'/' + self.server_resource)
|
2011-10-23 20:26:28 +02:00
|
|
|
testit = gajim.config.get_per('accounts', self.name,
|
|
|
|
'test_ft_proxies_on_startup')
|
2010-02-08 15:08:40 +01:00
|
|
|
if cfg_proxies:
|
|
|
|
proxies = [e.strip() for e in cfg_proxies.split(',')]
|
|
|
|
for proxy in proxies:
|
2011-10-23 20:26:28 +02:00
|
|
|
gajim.proxy65_manager.resolve(proxy, self.connection, our_jid,
|
|
|
|
testit=testit)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2013-06-02 22:02:43 +02:00
|
|
|
def discover_servers(self):
|
|
|
|
if not self.connection:
|
|
|
|
return
|
|
|
|
servers = []
|
|
|
|
for c in gajim.contacts.iter_contacts(self.name):
|
|
|
|
s = gajim.get_server_from_jid(c.jid)
|
|
|
|
if s not in servers and s not in gajim.transport_type:
|
|
|
|
servers.append(s)
|
|
|
|
for s in servers:
|
|
|
|
self.discoverInfo(s)
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def _on_roster_set(self, roster):
|
2010-08-29 20:22:20 +02:00
|
|
|
gajim.nec.push_incoming_event(RosterReceivedEvent(None, conn=self,
|
|
|
|
xmpp_roster=roster))
|
|
|
|
|
|
|
|
def _nec_roster_received(self, obj):
|
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
|
|
|
our_jid = gajim.get_jid_from_account(self.name)
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.connected > 1 and self.continue_connect_info:
|
|
|
|
msg = self.continue_connect_info[1]
|
|
|
|
sign_msg = self.continue_connect_info[2]
|
|
|
|
signed = ''
|
|
|
|
send_first_presence = True
|
|
|
|
if sign_msg:
|
2010-10-06 21:11:23 +02:00
|
|
|
signed = self.get_signed_presence(msg,
|
|
|
|
self._send_first_presence)
|
2010-02-08 15:08:40 +01:00
|
|
|
if signed is None:
|
2010-11-24 10:33:34 +01:00
|
|
|
gajim.nec.push_incoming_event(GPGPasswordRequiredEvent(None,
|
2010-11-17 23:52:14 +01:00
|
|
|
conn=self, callback=self._send_first_presence))
|
2010-10-06 21:11:23 +02:00
|
|
|
# _send_first_presence will be called when user enter
|
|
|
|
# passphrase
|
2010-02-08 15:08:40 +01:00
|
|
|
send_first_presence = False
|
|
|
|
if send_first_presence:
|
|
|
|
self._send_first_presence(signed)
|
|
|
|
|
2010-08-29 20:22:20 +02:00
|
|
|
if obj.received_from_server:
|
2010-10-19 18:14:30 +02:00
|
|
|
for jid in obj.roster:
|
|
|
|
if jid != our_jid and gajim.jid_is_transport(jid) and \
|
|
|
|
not gajim.get_transport_name_from_jid(jid):
|
|
|
|
# we can't determine which iconset to use
|
|
|
|
self.discoverInfo(jid)
|
|
|
|
|
|
|
|
gajim.logger.replace_roster(self.name, obj.version, obj.roster)
|
|
|
|
|
|
|
|
for contact in gajim.contacts.iter_contacts(self.name):
|
|
|
|
if not contact.is_groupchat() and contact.jid not in obj.roster\
|
|
|
|
and contact.jid != our_jid:
|
2010-08-29 20:22:20 +02:00
|
|
|
gajim.nec.push_incoming_event(RosterInfoEvent(None,
|
2010-10-19 18:14:30 +02:00
|
|
|
conn=self, jid=contact.jid, nickname=None, sub=None,
|
|
|
|
ask=None, groups=()))
|
|
|
|
for jid, info in obj.roster.items():
|
|
|
|
gajim.nec.push_incoming_event(RosterInfoEvent(None,
|
|
|
|
conn=self, jid=jid, nickname=info['name'],
|
|
|
|
sub=info['subscription'], ask=info['ask'],
|
|
|
|
groups=info['groups']))
|
2010-04-08 01:20:17 +02:00
|
|
|
|
2010-10-06 21:11:23 +02:00
|
|
|
def _send_first_presence(self, signed=''):
|
2010-02-08 15:08:40 +01:00
|
|
|
show = self.continue_connect_info[0]
|
|
|
|
msg = self.continue_connect_info[1]
|
|
|
|
sign_msg = self.continue_connect_info[2]
|
|
|
|
if sign_msg and not signed:
|
|
|
|
signed = self.get_signed_presence(msg)
|
|
|
|
if signed is None:
|
2010-11-15 16:50:54 +01:00
|
|
|
gajim.nec.push_incoming_event(BadGPGPassphraseEvent(None,
|
|
|
|
conn=self))
|
2010-02-08 15:08:40 +01:00
|
|
|
self.USE_GPG = False
|
|
|
|
signed = ''
|
|
|
|
self.connected = gajim.SHOW_LIST.index(show)
|
|
|
|
sshow = helpers.get_xmpp_show(show)
|
|
|
|
# send our presence
|
|
|
|
if show == 'invisible':
|
|
|
|
self.send_invisible_presence(msg, signed, True)
|
|
|
|
return
|
|
|
|
if show not in ['offline', 'online', 'chat', 'away', 'xa', 'dnd']:
|
|
|
|
return
|
|
|
|
priority = gajim.get_priority(self.name, sshow)
|
|
|
|
our_jid = helpers.parse_jid(gajim.get_jid_from_account(self.name))
|
|
|
|
vcard = self.get_cached_vcard(our_jid)
|
|
|
|
if vcard and 'PHOTO' in vcard and 'SHA' in vcard['PHOTO']:
|
|
|
|
self.vcard_sha = vcard['PHOTO']['SHA']
|
2012-12-09 21:37:51 +01:00
|
|
|
p = nbxmpp.Presence(typ=None, priority=priority, show=sshow)
|
2010-02-08 15:08:40 +01:00
|
|
|
p = self.add_sha(p)
|
|
|
|
if msg:
|
|
|
|
p.setStatus(msg)
|
|
|
|
if signed:
|
2012-12-09 21:37:51 +01:00
|
|
|
p.setTag(nbxmpp.NS_SIGNED + ' x').setData(signed)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
if self.connection:
|
|
|
|
self.connection.send(p)
|
|
|
|
self.priority = priority
|
2010-11-06 10:04:41 +01:00
|
|
|
gajim.nec.push_incoming_event(OurShowEvent(None, conn=self,
|
|
|
|
show=show))
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.vcard_supported:
|
|
|
|
# ask our VCard
|
|
|
|
self.request_vcard(None)
|
|
|
|
|
|
|
|
# Get bookmarks from private namespace
|
|
|
|
self.get_bookmarks()
|
|
|
|
|
|
|
|
# Get annotations from private namespace
|
|
|
|
self.get_annotations()
|
|
|
|
|
|
|
|
# Inform GUI we just signed in
|
2010-11-29 11:11:24 +01:00
|
|
|
gajim.nec.push_incoming_event(SignedInEvent(None, conn=self))
|
2010-02-08 15:08:40 +01:00
|
|
|
self.send_awaiting_pep()
|
|
|
|
self.continue_connect_info = None
|
2016-02-08 23:08:26 +01:00
|
|
|
# hashes of already received messages
|
|
|
|
self.received_message_hashes = []
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def request_gmail_notifications(self):
|
|
|
|
if not self.connection or self.connected < 2:
|
|
|
|
return
|
|
|
|
# It's a gmail account,
|
|
|
|
# inform the server that we want e-mail notifications
|
|
|
|
our_jid = helpers.parse_jid(gajim.get_jid_from_account(self.name))
|
|
|
|
log.debug(('%s is a gmail account. Setting option '
|
2010-10-06 21:11:23 +02:00
|
|
|
'to get e-mail notifications on the server.') % (our_jid))
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='set', to=our_jid)
|
2010-02-08 15:08:40 +01:00
|
|
|
iq.setAttr('id', 'MailNotify')
|
|
|
|
query = iq.setTag('usersetting')
|
2012-12-09 21:37:51 +01:00
|
|
|
query.setNamespace(nbxmpp.NS_GTALKSETTING)
|
2010-02-08 15:08:40 +01:00
|
|
|
query = query.setTag('mailnotifications')
|
|
|
|
query.setAttr('value', 'true')
|
|
|
|
self.connection.send(iq)
|
|
|
|
# Ask how many messages there are now
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='get')
|
2010-02-08 15:08:40 +01:00
|
|
|
iq.setID(self.connection.getAnID())
|
|
|
|
query = iq.setTag('query')
|
2012-12-09 21:37:51 +01:00
|
|
|
query.setNamespace(nbxmpp.NS_GMAILNOTIFY)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.send(iq)
|
|
|
|
|
2010-08-30 21:42:36 +02:00
|
|
|
def _SearchCB(self, con, iq_obj):
|
|
|
|
log.debug('SearchCB')
|
|
|
|
gajim.nec.push_incoming_event(SearchFormReceivedEvent(None,
|
2010-10-18 22:05:41 +02:00
|
|
|
conn=self, stanza=iq_obj))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _search_fields_received(self, con, iq_obj):
|
|
|
|
jid = jid = helpers.get_jid_from_iq(iq_obj)
|
2012-12-09 21:37:51 +01:00
|
|
|
tag = iq_obj.getTag('query', namespace = nbxmpp.NS_SEARCH)
|
2010-02-08 15:08:40 +01:00
|
|
|
if not tag:
|
|
|
|
self.dispatch('SEARCH_FORM', (jid, None, False))
|
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
df = tag.getTag('x', namespace=nbxmpp.NS_DATA)
|
2010-02-08 15:08:40 +01:00
|
|
|
if df:
|
|
|
|
self.dispatch('SEARCH_FORM', (jid, df, True))
|
|
|
|
return
|
|
|
|
df = {}
|
|
|
|
for i in iq_obj.getQueryPayload():
|
|
|
|
df[i.getName()] = i.getData()
|
|
|
|
self.dispatch('SEARCH_FORM', (jid, df, False))
|
2010-08-11 08:44:49 +02:00
|
|
|
|
|
|
|
def _PubkeyGetCB(self, con, iq_obj):
|
2010-08-08 10:42:30 +02:00
|
|
|
log.info('PubkeyGetCB')
|
2010-08-11 08:44:49 +02:00
|
|
|
jid_from = helpers.get_full_jid_from_iq(iq_obj)
|
|
|
|
sid = iq_obj.getAttr('id')
|
|
|
|
jingle_xtls.send_cert(con, jid_from, sid)
|
2012-12-09 21:37:51 +01:00
|
|
|
raise nbxmpp.NodeProcessed
|
2010-08-11 08:44:49 +02:00
|
|
|
|
|
|
|
def _PubkeyResultCB(self, con, iq_obj):
|
2010-08-08 10:42:30 +02:00
|
|
|
log.info('PubkeyResultCB')
|
2010-08-11 08:44:49 +02:00
|
|
|
jid_from = helpers.get_full_jid_from_iq(iq_obj)
|
|
|
|
jingle_xtls.handle_new_cert(con, iq_obj, jid_from)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2014-08-13 22:46:18 +02:00
|
|
|
def _BlockingSetCB(self, con, iq_obj):
|
|
|
|
log.debug('_BlockingSetCB')
|
|
|
|
gajim.nec.push_incoming_event(BlockingEvent(None, conn=self,
|
|
|
|
stanza=iq_obj))
|
|
|
|
raise nbxmpp.NodeProcessed
|
|
|
|
|
|
|
|
def _nec_blocking(self, obj):
|
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
|
|
|
if obj.unblock_all:
|
|
|
|
self.blocked_contacts = []
|
|
|
|
else:
|
|
|
|
for jid in obj.blocked_jids:
|
|
|
|
if jid not in self.blocked_contacts:
|
|
|
|
self.blocked_contacts.append(jid)
|
|
|
|
for jid in obj.unblocked_jids:
|
|
|
|
if jid in self.blocked_contacts:
|
|
|
|
self.blocked_contacts.remove(jid)
|
|
|
|
|
2012-04-21 23:52:24 +02:00
|
|
|
def _nec_stream_other_host_received(self, obj):
|
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
|
|
|
self.redirected = obj.redirected
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def _StreamCB(self, con, obj):
|
2012-04-21 23:52:24 +02:00
|
|
|
log.debug('StreamCB')
|
|
|
|
gajim.nec.push_incoming_event(StreamReceivedEvent(None,
|
2012-06-16 13:51:54 +02:00
|
|
|
conn=self, stanza=obj))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _register_handlers(self, con, con_type):
|
|
|
|
# try to find another way to register handlers in each class
|
|
|
|
# that defines handlers
|
|
|
|
con.RegisterHandler('message', self._messageCB)
|
|
|
|
con.RegisterHandler('presence', self._presenceCB)
|
|
|
|
# We use makefirst so that this handler is called before _messageCB, and
|
|
|
|
# can prevent calling it when it's not needed.
|
2010-10-06 21:11:23 +02:00
|
|
|
# We also don't check for namespace, else it cannot stop _messageCB to
|
|
|
|
# be called
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('message', self._pubsubEventCB, makefirst=True)
|
2012-12-09 21:37:51 +01:00
|
|
|
con.RegisterHandler('iq', self._vCardCB, 'result', nbxmpp.NS_VCARD)
|
|
|
|
con.RegisterHandler('iq', self._rosterSetCB, 'set', nbxmpp.NS_ROSTER)
|
|
|
|
con.RegisterHandler('iq', self._siSetCB, 'set', nbxmpp.NS_SI)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._rosterItemExchangeCB, 'set',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_ROSTERX)
|
|
|
|
con.RegisterHandler('iq', self._siErrorCB, 'error', nbxmpp.NS_SI)
|
|
|
|
con.RegisterHandler('iq', self._siResultCB, 'result', nbxmpp.NS_SI)
|
|
|
|
con.RegisterHandler('iq', self._discoGetCB, 'get', nbxmpp.NS_DISCO)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._bytestreamSetCB, 'set',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_BYTESTREAM)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._bytestreamResultCB, 'result',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_BYTESTREAM)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._bytestreamErrorCB, 'error',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_BYTESTREAM)
|
2010-08-17 15:42:34 +02:00
|
|
|
con.RegisterHandlerOnce('iq', self.IBBAllIqHandler)
|
2012-12-09 21:37:51 +01:00
|
|
|
con.RegisterHandler('iq', self.IBBIqHandler, ns=nbxmpp.NS_IBB)
|
|
|
|
con.RegisterHandler('message', self.IBBMessageHandler, ns=nbxmpp.NS_IBB)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._DiscoverItemsCB, 'result',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_DISCO_ITEMS)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._DiscoverItemsErrorCB, 'error',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_DISCO_ITEMS)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._DiscoverInfoCB, 'result',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_DISCO_INFO)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._DiscoverInfoErrorCB, 'error',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_DISCO_INFO)
|
|
|
|
con.RegisterHandler('iq', self._VersionCB, 'get', nbxmpp.NS_VERSION)
|
|
|
|
con.RegisterHandler('iq', self._TimeCB, 'get', nbxmpp.NS_TIME)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._TimeRevisedCB, 'get',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_TIME_REVISED)
|
|
|
|
con.RegisterHandler('iq', self._LastCB, 'get', nbxmpp.NS_LAST)
|
|
|
|
con.RegisterHandler('iq', self._LastResultCB, 'result', nbxmpp.NS_LAST)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._VersionResultCB, 'result',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_VERSION)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._TimeRevisedResultCB, 'result',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_TIME_REVISED)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._MucOwnerCB, 'result',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_MUC_OWNER)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._MucAdminCB, 'result',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_MUC_ADMIN)
|
|
|
|
con.RegisterHandler('iq', self._PrivateCB, 'result', nbxmpp.NS_PRIVATE)
|
2010-06-07 19:11:44 +02:00
|
|
|
con.RegisterHandler('iq', self._SecLabelCB, 'result',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_SECLABEL_CATALOG)
|
|
|
|
con.RegisterHandler('iq', self._HttpAuthCB, 'get', nbxmpp.NS_HTTP_AUTH)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._CommandExecuteCB, 'set',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_COMMANDS)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._gMailNewMailCB, 'set',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_GMAILNOTIFY)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._gMailQueryCB, 'result',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_GMAILNOTIFY)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._DiscoverInfoGetCB, 'get',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_DISCO_INFO)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._DiscoverItemsGetCB, 'get',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_DISCO_ITEMS)
|
|
|
|
con.RegisterHandler('iq', self._IqPingCB, 'get', nbxmpp.NS_PING)
|
|
|
|
con.RegisterHandler('iq', self._SearchCB, 'result', nbxmpp.NS_SEARCH)
|
|
|
|
con.RegisterHandler('iq', self._PrivacySetCB, 'set', nbxmpp.NS_PRIVACY)
|
|
|
|
con.RegisterHandler('iq', self._ArchiveCB, ns=nbxmpp.NS_ARCHIVE)
|
2016-10-31 02:11:46 +01:00
|
|
|
con.RegisterHandler('iq', self._ArchiveCB, ns=nbxmpp.NS_MAM)
|
2017-04-18 17:52:17 +02:00
|
|
|
con.RegisterHandler('iq', self._ArchiveCB, ns=nbxmpp.NS_MAM_1)
|
|
|
|
con.RegisterHandler('iq', self._ArchiveCB, ns=nbxmpp.NS_MAM_2)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._PubSubCB, 'result')
|
|
|
|
con.RegisterHandler('iq', self._PubSubErrorCB, 'error')
|
|
|
|
con.RegisterHandler('iq', self._JingleCB, 'result')
|
|
|
|
con.RegisterHandler('iq', self._JingleCB, 'error')
|
2012-12-09 21:37:51 +01:00
|
|
|
con.RegisterHandler('iq', self._JingleCB, 'set', nbxmpp.NS_JINGLE)
|
2010-02-08 15:08:40 +01:00
|
|
|
con.RegisterHandler('iq', self._ErrorCB, 'error')
|
|
|
|
con.RegisterHandler('iq', self._IqCB)
|
|
|
|
con.RegisterHandler('iq', self._StanzaArrivedCB)
|
|
|
|
con.RegisterHandler('iq', self._ResultCB, 'result')
|
|
|
|
con.RegisterHandler('presence', self._StanzaArrivedCB)
|
|
|
|
con.RegisterHandler('message', self._StanzaArrivedCB)
|
2012-04-21 23:52:24 +02:00
|
|
|
con.RegisterHandler('unknown', self._StreamCB,
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_XMPP_STREAMS, xmlns=nbxmpp.NS_STREAMS)
|
2012-04-21 23:52:24 +02:00
|
|
|
con.RegisterHandler('iq', self._PubkeyGetCB, 'get',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_PUBKEY_PUBKEY)
|
2012-04-21 23:52:24 +02:00
|
|
|
con.RegisterHandler('iq', self._PubkeyResultCB, 'result',
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.NS_PUBKEY_PUBKEY)
|
2014-08-13 22:46:18 +02:00
|
|
|
con.RegisterHandler('iq', self._BlockingSetCB, 'set',
|
|
|
|
nbxmpp.NS_BLOCKING)
|