gajim-plural/src/common/zeroconf/connection_handlers_zerocon...

222 lines
5.7 KiB
Python
Raw Normal View History

2006-05-26 16:27:42 +02:00
##
## Copyright (C) 2006 Gajim Team
##
## Contributors for this file:
2007-10-22 13:33:50 +02:00
## - Yann Leboulanger <asterix@lagaule.org>
2006-05-26 16:27:42 +02:00
## - Nikos Kouremenos <nkour@jabber.org>
## - Dimitur Kirov <dkirov@gmail.com>
## - Travis Shirk <travis@pobox.com>
2008-12-03 22:56:12 +01:00
## - Stefan Bethge <stefan@lanpartei.de>
2006-05-26 16:27:42 +02:00
##
## This file is part of Gajim.
##
## Gajim is free software; you can redistribute it and/or modify
2006-05-26 16:27:42 +02:00
## it under the terms of the GNU General Public License as published
## by the Free Software Foundation; version 3 only.
2006-05-26 16:27:42 +02:00
##
## Gajim is distributed in the hope that it will be useful,
2006-05-26 16:27:42 +02:00
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
##
2006-05-26 16:27:42 +02:00
import time
import socket
from calendar import timegm
from common import socks5
2006-05-26 16:27:42 +02:00
import common.xmpp
from common import helpers
from common import gajim
from common.zeroconf import zeroconf
from common.commands import ConnectionCommands
from common.pep import ConnectionPEP
import logging
log = logging.getLogger('gajim.c.z.connection_handlers_zeroconf')
2006-05-26 16:27:42 +02:00
STATUS_LIST = ['offline', 'connecting', 'online', 'chat', 'away', 'xa', 'dnd',
'invisible']
# kind of events we can wait for an answer
VCARD_PUBLISHED = 'vcard_published'
VCARD_ARRIVED = 'vcard_arrived'
AGENT_REMOVED = 'agent_removed'
HAS_IDLE = True
try:
import idle
except Exception:
log.debug(_('Unable to load idle module'))
HAS_IDLE = False
2006-05-26 16:27:42 +02:00
from common import connection_handlers
from session import ChatControlSession
2007-10-09 05:46:51 +02:00
class ConnectionVcard(connection_handlers.ConnectionVcard):
def add_sha(self, p, send_caps = True):
return p
2006-11-23 16:17:24 +01:00
def add_caps(self, p):
return p
2006-11-23 16:17:24 +01:00
def request_vcard(self, jid = None, is_fake_jid = False):
pass
2006-11-23 16:17:24 +01:00
def send_vcard(self, vcard):
pass
2006-09-21 01:24:07 +02:00
class ConnectionBytestream(connection_handlers.ConnectionBytestream):
def _ft_get_from(self, iq_obj):
return unicode(iq_obj.getFrom())
2006-09-21 01:24:07 +02:00
def _ft_get_our_jid(self):
return gajim.get_jid_from_account(self.name)
2006-09-21 01:24:07 +02:00
def _ft_get_receiver_jid(self, file_props):
return file_props['receiver'].jid
def _ft_get_streamhost_jid_attr(self, streamhost):
return streamhost.getAttr('jid')
2006-09-21 01:24:07 +02:00
class ConnectionHandlersZeroconf(ConnectionVcard, ConnectionBytestream,
ConnectionCommands, ConnectionPEP, connection_handlers.ConnectionHandlersBase):
2006-05-26 16:27:42 +02:00
def __init__(self):
ConnectionVcard.__init__(self)
2006-09-21 01:24:07 +02:00
ConnectionBytestream.__init__(self)
ConnectionCommands.__init__(self)
connection_handlers.ConnectionHandlersBase.__init__(self)
2006-05-26 16:27:42 +02:00
try:
idle.init()
except Exception:
2008-12-02 16:53:23 +01:00
global HAS_IDLE
2006-05-26 16:27:42 +02:00
HAS_IDLE = False
def _messageCB(self, ip, con, msg):
2009-11-26 13:27:47 +01:00
"""
Called when we receive a message
"""
log.debug('Zeroconf MessageCB')
frm = msg.getFrom()
mtype = msg.getType()
2007-10-09 05:46:51 +02:00
thread_id = msg.getThread()
if not mtype:
mtype = 'normal'
2007-10-09 05:46:51 +02:00
if frm is None:
for key in self.connection.zeroconf.contacts:
if ip == self.connection.zeroconf.contacts[key][zeroconf.C_ADDRESS]:
frm = key
frm = unicode(frm)
2007-10-09 05:46:51 +02:00
session = self.get_or_create_session(frm, thread_id)
2007-10-09 05:46:51 +02:00
if thread_id and not session.received_thread_id:
session.received_thread_id = True
2007-10-09 05:46:51 +02:00
if msg.getTag('feature') and msg.getTag('feature').namespace == \
common.xmpp.NS_FEATURE:
if gajim.HAVE_PYCRYPTO:
self._FeatureNegCB(con, msg, session)
return
2007-10-09 05:46:51 +02:00
if msg.getTag('init') and msg.getTag('init').namespace == \
common.xmpp.NS_ESESSION_INIT:
self._InitE2ECB(con, msg, session)
encrypted = False
tim = msg.getTimestamp()
tim = helpers.datetime_tuple(tim)
tim = time.localtime(timegm(tim))
2007-10-09 05:46:51 +02:00
if msg.getTag('c', namespace = common.xmpp.NS_STANZA_CRYPTO):
2007-10-09 05:46:51 +02:00
encrypted = True
try:
msg = session.decrypt_stanza(msg)
except Exception:
2007-10-09 05:46:51 +02:00
self.dispatch('FAILED_DECRYPT', (frm, tim))
2007-10-09 05:46:51 +02:00
msgtxt = msg.getBody()
subject = msg.getSubject() # if not there, it's None
# invitations
invite = None
encTag = msg.getTag('x', namespace = common.xmpp.NS_ENCRYPTED)
if not encTag:
invite = msg.getTag('x', namespace = common.xmpp.NS_MUC_USER)
if invite and not invite.getTag('invite'):
invite = None
if encTag and self.USE_GPG:
#decrypt
encmsg = encTag.getData()
keyID = gajim.config.get_per('accounts', self.name, 'keyid')
if keyID:
decmsg = self.gpg.decrypt(encmsg, keyID)
# \x00 chars are not allowed in C (so in GTK)
msgtxt = decmsg.replace('\x00', '')
encrypted = True
2007-10-09 05:46:51 +02:00
if mtype == 'error':
self.dispatch_error_msg(msg, msgtxt, session, frm, tim, subject)
2007-10-09 05:46:51 +02:00
else:
# XXX this shouldn't be hardcoded
if isinstance(session, ChatControlSession):
session.received(frm, msgtxt, tim, encrypted, msg)
2007-10-09 05:46:51 +02:00
else:
session.received(msg)
# END messageCB
2007-10-09 05:46:51 +02:00
2006-09-17 16:45:58 +02:00
def store_metacontacts(self, tags):
2009-11-26 13:27:47 +01:00
"""
Fake empty method
"""
# serverside metacontacts are not supported with zeroconf
2006-09-17 16:45:58 +02:00
# (there is no server)
pass
def remove_transfers_for_contact(self, contact):
2009-11-26 13:27:47 +01:00
"""
Stop all active transfer for contact
"""
pass
def remove_all_transfers(self):
2009-11-26 13:27:47 +01:00
"""
Stops and removes all active connections from the socks5 pool
"""
pass
def remove_transfer(self, file_props, remove_from_list = True):
pass
def _DiscoverItemsGetCB(self, con, iq_obj):
log.debug('DiscoverItemsGetCB')
if not self.connection or self.connected < 2:
return
if self.commandItemsQuery(con, iq_obj):
raise common.xmpp.NodeProcessed
node = iq_obj.getTagAttr('query', 'node')
if node is None:
result = iq_obj.buildReply('result')
self.connection.send(result)
raise common.xmpp.NodeProcessed
if node==common.xmpp.NS_COMMANDS:
self.commandListQuery(con, iq_obj)
raise common.xmpp.NodeProcessed
2008-12-02 15:44:26 +01:00
# vim: se ts=3: