summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2010-10-25 21:26:25 -0400
committerLance Stout <lancestout@gmail.com>2010-10-25 21:26:25 -0400
commitb888610525a441dce622bf6132a4b3cab76a26b2 (patch)
tree9aec99207c4353d86392b047100a83278f3c48a2
parent6d68706326e3248e167b92289fd695ed8b11cec7 (diff)
downloadslixmpp-b888610525a441dce622bf6132a4b3cab76a26b2.tar.gz
slixmpp-b888610525a441dce622bf6132a4b3cab76a26b2.tar.bz2
slixmpp-b888610525a441dce622bf6132a4b3cab76a26b2.tar.xz
slixmpp-b888610525a441dce622bf6132a4b3cab76a26b2.zip
Added XEP-202 Entity Time plugin.
Contributed by Cesar Alcalde.
-rw-r--r--sleekxmpp/plugins/__init__.py2
-rw-r--r--sleekxmpp/plugins/xep_0202.py112
2 files changed, 113 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/__init__.py b/sleekxmpp/plugins/__init__.py
index 7d4d9815..4dcec8f0 100644
--- a/sleekxmpp/plugins/__init__.py
+++ b/sleekxmpp/plugins/__init__.py
@@ -7,4 +7,4 @@
"""
__all__ = ['xep_0004', 'xep_0012', 'xep_0030', 'xep_0033', 'xep_0045',
'xep_0050', 'xep_0078', 'xep_0085', 'xep_0092', 'xep_0199',
- 'gmail_notify', 'xep_0060']
+ 'gmail_notify', 'xep_0060', 'xep_0202']
diff --git a/sleekxmpp/plugins/xep_0202.py b/sleekxmpp/plugins/xep_0202.py
new file mode 100644
index 00000000..c3f81b2e
--- /dev/null
+++ b/sleekxmpp/plugins/xep_0202.py
@@ -0,0 +1,112 @@
+"""
+ SleekXMPP: The Sleek XMPP Library
+ Copyright (C) 2010 Nathanael C. Fritz
+ This file is part of SleekXMPP.
+
+ See the file LICENSE for copying permission.
+"""
+
+from datetime import datetime, tzinfo
+import logging
+import time
+
+from . import base
+from .. stanza.iq import Iq
+from .. xmlstream.handler.callback import Callback
+from .. xmlstream.matcher.xpath import MatchXPath
+from .. xmlstream import ElementBase, ET, JID, register_stanza_plugin
+
+
+class EntityTime(ElementBase):
+ name = 'time'
+ namespace = 'urn:xmpp:time'
+ plugin_attrib = 'entity_time'
+ interfaces = set(('tzo', 'utc'))
+ sub_interfaces = set(('tzo', 'utc'))
+
+ #def get_utc(self): # TODO: return a datetime.tzinfo object?
+ #pass
+
+ def set_tzo(self, tzo): # TODO: support datetime.tzinfo objects?
+ if isinstance(tzo, tzinfo):
+ td = datetime.now(tzo).utcoffset() # What if we are faking the time? datetime.now() shouldn't be used here'
+ seconds = td.seconds + td.days * 24 * 3600
+ sign = ('+' if seconds >= 0 else '-')
+ minutes = abs(seconds // 60)
+ tzo = '{sign}{hours:02d}:{minutes:02d}'.format(sign=sign, hours=minutes//60, minutes=minutes%60)
+ elif not isinstance(tzo, str):
+ raise TypeError('The time should be a string or a datetime.tzinfo object.')
+ self._set_sub_text('tzo', tzo)
+
+ def get_utc(self):
+ # Returns a datetime object instead the string. Is this a good idea?
+ value = self._get_sub_text('utc')
+ if '.' in value:
+ return datetime.strptime(value, '%Y-%m-%d.%fT%H:%M:%SZ')
+ else:
+ return datetime.strptime(value, '%Y-%m-%dT%H:%M:%SZ')
+
+ def set_utc(self, tim=None):
+ if isinstance(tim, datetime):
+ if tim.utcoffset():
+ tim = tim - tim.utcoffset()
+ tim = tim.strftime('%Y-%m-%dT%H:%M:%SZ')
+ elif isinstance(tim, time.struct_time):
+ tim = time.strftime('%Y-%m-%dT%H:%M:%SZ', tim)
+ elif not isinstance(tim, str):
+ raise TypeError('The time should be a string or a datetime.datetime or time.struct_time object.')
+
+ self._set_sub_text('utc', tim)
+
+
+class xep_0202(base.base_plugin):
+ """
+ XEP-0202 Entity Time
+ """
+ def plugin_init(self):
+ self.description = "Entity Time"
+ self.xep = "0202"
+
+ self.xmpp.registerHandler(
+ Callback('Time Request',
+ MatchXPath('{%s}iq/{%s}time' % (self.xmpp.default_ns,
+ EntityTime.namespace)),
+ self.handle_entity_time_query))
+ register_stanza_plugin(Iq, EntityTime)
+
+ self.xmpp.add_event_handler('entity_time_request', self.handle_entity_time)
+
+
+ def post_init(self):
+ base.base_plugin.post_init(self)
+
+ self.xmpp.plugin['xep_0030'].add_feature('urn:xmpp:time')
+
+ def handle_entity_time_query(self, iq):
+ if iq['type'] == 'get':
+ logging.debug("Entity time requested by %s" % iq['from'])
+ self.xmpp.event('entity_time_request', iq)
+ elif iq['type'] == 'result':
+ logging.debug("Entity time result from %s" % iq['from'])
+ self.xmpp.event('entity_time', iq)
+
+ def handle_entity_time(self, iq):
+ iq = iq.reply()
+ iq.enable('entity_time')
+ tzo = time.strftime('%z') # %z is not on all ANSI C libraries
+ tzo = tzo[:3] + ':' + tzo[3:]
+ iq['entity_time']['tzo'] = tzo
+ iq['entity_time']['utc'] = datetime.utcnow()
+ iq.send()
+
+ def get_entity_time(self, jid):
+ iq = self.xmpp.makeIqGet()
+ iq.enable('entity_time')
+ iq.attrib['to'] = jid
+ iq.attrib['from'] = self.xmpp.boundjid.full
+ id = iq.get('id')
+ result = iq.send()
+ if result and result is not None and result.get('type', 'error') != 'error':
+ return {'utc': result['entity_time']['utc'], 'tzo': result['entity_time']['tzo']}
+ else:
+ return False