gajim-plural/src/common/caps.py

327 lines
9.6 KiB
Python
Raw Normal View History

# -*- coding:utf-8 -*-
## src/common/caps.py
2007-06-27 02:51:12 +02:00
##
## Copyright (C) 2007 Tomasz Melcer <liori AT exroot.org>
## Travis Shirk <travis AT pobox.com>
## Copyright (C) 2007-2008 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2008 Brendan Taylor <whateley AT gmail.com>
## Jonathan Schleifer <js-gajim AT webkeks.org>
## Copyright (C) 2008-2009 Stephan Erb <steve-e AT h3c.de>
2007-06-27 02:51:12 +02:00
##
## This file is part of Gajim.
##
## Gajim is free software; you can redistribute it and/or modify
2007-06-27 02:51:12 +02:00
## it under the terms of the GNU General Public License as published
## by the Free Software Foundation; version 3 only.
2007-06-27 02:51:12 +02:00
##
## Gajim is distributed in the hope that it will be useful,
2007-06-27 02:51:12 +02:00
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2007-06-27 02:51:12 +02:00
## 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/>.
##
2007-06-27 02:51:12 +02:00
'''
Module containing all XEP-115 (Entity Capabilities) related classes
Basic Idea:
CapsCache caches features to hash relationships. The cache is queried
through ClientCaps objects which are hold by contact instances.
'''
2007-07-09 23:24:47 +02:00
import gajim
import helpers
2007-06-27 02:51:12 +02:00
from common.xmpp import NS_XHTML_IM, NS_RECEIPTS, NS_ESESSION, NS_CHATSTATES
# Features where we cannot safely assume that the other side supports them
FEATURE_BLACKLIST = [NS_CHATSTATES, NS_XHTML_IM, NS_RECEIPTS, NS_ESESSION]
2009-10-27 22:48:47 +01:00
class AbstractClientCaps(object):
'''
Base class representing a client and its capabilities as advertised by
2009-10-27 22:48:47 +01:00
a caps tag in a presence.
'''
def __init__(self, caps_hash, node):
self._hash = caps_hash
self._node = node
def get_discover_strategy(self):
return self._discover
def _discover(self, connection, jid):
''' To be implemented by subclassess '''
raise NotImplementedError()
def get_cache_lookup_strategy(self):
return self._lookup_in_cache
def _lookup_in_cache(self, caps_cache):
''' To be implemented by subclassess '''
raise NotImplementedError()
def get_hash_validation_strategy(self):
return self._is_hash_valid
def _is_hash_valid(self, identities, features, dataforms):
raise NotImplementedError()
class ClientCaps(AbstractClientCaps):
''' The current XEP-115 implementation '''
def __init__(self, caps_hash, node, hash_method):
AbstractClientCaps.__init__(self, caps_hash, node)
assert hash_method != 'old'
self._hash_method = hash_method
def _lookup_in_cache(self, caps_cache):
return caps_cache[(self._hash_method, self._hash)]
def _discover(self, connection, jid):
connection.discoverInfo(jid, '%s#%s' % (self._node, self._hash))
def _is_hash_valid(self, identities, features, dataforms):
computed_hash = helpers.compute_caps_hash(identities, features,
dataforms=dataforms, hash_method=self._hash_method)
return computed_hash == self._hash
class OldClientCaps(AbstractClientCaps):
''' Old XEP-115 implemtation. Kept around for background competability. '''
def __init__(self, caps_hash, node):
AbstractClientCaps.__init__(self, caps_hash, node)
def _lookup_in_cache(self, caps_cache):
return caps_cache[('old', self._node + '#' + self._hash)]
def _discover(self, connection, jid):
connection.discoverInfo(jid)
def _is_hash_valid(self, identities, features, dataforms):
return True
2009-10-27 22:48:47 +01:00
class NullClientCaps(AbstractClientCaps):
'''
This is a NULL-Object to streamline caps handling if a client has not
advertised any caps or has advertised them in an improper way.
Assumes (almost) everything is supported.
'''
def __init__(self):
AbstractClientCaps.__init__(self, None, None)
def _lookup_in_cache(self, caps_cache):
return caps_cache[('old', '')]
def _discover(self, connection, jid):
pass
def _is_hash_valid(self, identities, features, dataforms):
return False
2009-10-27 22:48:47 +01:00
2007-06-27 02:51:12 +02:00
class CapsCache(object):
'''
This object keeps the mapping between caps data and real disco
features they represent, and provides simple way to query that info.
2007-06-27 02:51:12 +02:00
'''
def __init__(self, logger=None):
# our containers:
# __cache is a dictionary mapping: pair of hash method and hash maps
2007-06-27 02:51:12 +02:00
# to CapsCacheItem object
# __CacheItem is a class that stores data about particular
# client (hash method/hash pair)
2007-06-27 02:51:12 +02:00
self.__cache = {}
class CacheItem(object):
2008-04-21 16:18:19 +02:00
# __names is a string cache; every string long enough is given
# another object, and we will have plenty of identical long
# strings. therefore we can cache them
__names = {}
2009-10-25 21:17:32 +01:00
def __init__(self, hash_method, hash_, logger):
2007-06-27 02:51:12 +02:00
# cached into db
self.hash_method = hash_method
self.hash = hash_
self._features = []
self._identities = []
2009-10-25 21:17:32 +01:00
self._logger = logger
2007-06-27 02:51:12 +02:00
# not cached into db:
# have we sent the query?
# 0 == not queried
# 1 == queried
# 2 == got the answer
self.queried = 0
2007-06-27 02:51:12 +02:00
def _get_features(self):
return self._features
2008-12-03 18:16:04 +01:00
def _set_features(self, value):
self._features = []
2008-04-21 14:57:34 +02:00
for feature in value:
2009-10-25 21:17:32 +01:00
self._features.append(self.__names.setdefault(feature, feature))
2008-04-21 16:16:20 +02:00
features = property(_get_features, _set_features)
2008-04-21 14:57:34 +02:00
def _get_identities(self):
list_ = []
for i in self._identities:
# transforms it back in a dict
d = dict()
d['category'] = i[0]
if i[1]:
d['type'] = i[1]
if i[2]:
d['xml:lang'] = i[2]
if i[3]:
d['name'] = i[3]
list_.append(d)
return list_
def _set_identities(self, value):
self._identities = []
2008-04-21 14:57:34 +02:00
for identity in value:
# dict are not hashable, so transform it into a tuple
2008-12-03 18:16:04 +01:00
t = (identity['category'], identity.get('type'),
identity.get('xml:lang'), identity.get('name'))
self._identities.append(self.__names.setdefault(t, t))
2008-04-21 16:16:20 +02:00
identities = property(_get_identities, _set_identities)
2008-04-21 14:57:34 +02:00
def update(self, identities, features):
self.identities = identities
self.features = features
2009-10-25 21:17:32 +01:00
self._logger.add_caps_entry(self.hash_method, self.hash,
2007-07-09 23:24:47 +02:00
identities, features)
2007-06-27 02:51:12 +02:00
self.__CacheItem = CacheItem
# prepopulate data which we are sure of; note: we do not log these info
for account in gajim.connections:
2008-12-02 16:10:31 +01:00
gajimcaps = self[('sha-1', gajim.caps_hash[account])]
gajimcaps.identities = [gajim.gajim_identity]
gajimcaps.features = gajim.gajim_common_features + \
gajim.gajim_optional_features[account]
2007-06-27 02:51:12 +02:00
# start logging data from the net
2007-07-09 23:24:47 +02:00
self.logger = logger
2007-06-27 02:51:12 +02:00
2009-10-25 21:17:32 +01:00
def initialize_from_db(self):
2007-06-27 02:51:12 +02:00
# get data from logger...
2007-07-09 23:24:47 +02:00
if self.logger is not None:
2008-12-03 18:16:04 +01:00
for hash_method, hash_, identities, features in \
self.logger.iter_caps_data():
2008-12-03 18:16:04 +01:00
x = self[(hash_method, hash_)]
x.identities = identities
x.features = features
x.queried = 2
2007-06-27 02:51:12 +02:00
def __getitem__(self, caps):
if caps in self.__cache:
return self.__cache[caps]
2008-12-03 18:16:04 +01:00
hash_method, hash_ = caps
2009-10-25 21:17:32 +01:00
x = self.__CacheItem(hash_method, hash_, self.logger)
2008-12-03 18:16:04 +01:00
self.__cache[(hash_method, hash_)] = x
2007-06-27 02:51:12 +02:00
return x
def query_client_of_jid_if_unknown(self, connection, jid, client_caps):
2009-10-27 22:48:47 +01:00
'''
Start a disco query to determine caps (node, ver, exts).
Won't query if the data is already in cache.
'''
lookup_cache_item = client_caps.get_cache_lookup_strategy()
q = lookup_cache_item(self)
if q.queried == 0:
# do query for bare node+hash pair
2007-06-27 02:51:12 +02:00
# this will create proper object
q.queried = 1
discover = client_caps.get_discover_strategy()
discover(connection, jid)
2007-07-09 23:24:47 +02:00
gajim.capscache = CapsCache(gajim.logger)
2007-06-27 02:51:12 +02:00
2007-06-27 02:51:12 +02:00
class ConnectionCaps(object):
'''
This class highly depends on that it is a part of Connection class.
'''
2007-06-27 02:51:12 +02:00
def _capsPresenceCB(self, con, presence):
'''
Handle incoming presence stanzas... This is a callback for xmpp
registered in connection_handlers.py
'''
# we will put these into proper Contact object and ask
# for disco... so that disco will learn how to interpret
# these caps
pm_ctrl = None
2009-04-30 17:20:37 +02:00
try:
jid = helpers.get_full_jid_from_iq(presence)
except:
# Bad jid
return
contact = gajim.contacts.get_contact_from_full_jid(self.name, jid)
if contact is None:
room_jid, nick = gajim.get_room_and_nick_from_fjid(jid)
contact = gajim.contacts.get_gc_contact(
self.name, room_jid, nick)
pm_ctrl = gajim.interface.msg_win_mgr.get_control(jid, self.name)
if contact is None:
# TODO: a way to put contact not-in-roster
# into Contacts
2008-12-03 22:56:12 +01:00
return
caps_tag = presence.getTag('c')
if not caps_tag:
# presence did not contain caps_tag
client_caps = NullClientCaps()
else:
hash_method, node, caps_hash = caps_tag['hash'], caps_tag['node'], caps_tag['ver']
if node is None or caps_hash is None:
# improper caps in stanza, ignore client capabilities.
client_caps = NullClientCaps()
elif hash_method is None:
client_caps = OldClientCaps(caps_hash, node)
else:
client_caps = ClientCaps(caps_hash, node, hash_method)
gajim.capscache.query_client_of_jid_if_unknown(self, jid, client_caps)
contact.client_caps = client_caps
2007-06-27 02:51:12 +02:00
if pm_ctrl:
pm_ctrl.update_contact()
def _capsDiscoCB(self, jid, node, identities, features, dataforms):
contact = gajim.contacts.get_contact_from_full_jid(self.name, jid)
if not contact:
room_jid, nick = gajim.get_room_and_nick_from_fjid(jid)
contact = gajim.contacts.get_gc_contact(self.name, room_jid, nick)
if contact is None:
return
lookup = contact.client_caps.get_cache_lookup_strategy()
cache_item = lookup(gajim.capscache)
if cache_item.queried == 2:
return
else:
validate = contact.client_caps.get_hash_validation_strategy()
hash_is_valid = validate(identities, features, dataforms)
if hash_is_valid:
cache_item.update(identities, features)
else:
contact.client_caps = NullClientCaps()
# vim: se ts=3: