Add support for XEP-0319, idle presence
This commit is contained in:
parent
4a590d1497
commit
ed3a4fb8d4
5 changed files with 116 additions and 0 deletions
1
setup.py
1
setup.py
|
@ -115,6 +115,7 @@ packages = [ 'sleekxmpp',
|
|||
'sleekxmpp/plugins/xep_0297',
|
||||
'sleekxmpp/plugins/xep_0308',
|
||||
'sleekxmpp/plugins/xep_0313',
|
||||
'sleekxmpp/plugins/xep_0319',
|
||||
'sleekxmpp/plugins/google',
|
||||
'sleekxmpp/plugins/google/gmail',
|
||||
'sleekxmpp/plugins/google/auth',
|
||||
|
|
|
@ -80,4 +80,5 @@ __all__ = [
|
|||
'xep_0302', # XMPP Compliance Suites 2012
|
||||
'xep_0308', # Last Message Correction
|
||||
'xep_0313', # Message Archive Management
|
||||
'xep_0319', # Last User Interaction in Presence
|
||||
]
|
||||
|
|
16
sleekxmpp/plugins/xep_0319/__init__.py
Normal file
16
sleekxmpp/plugins/xep_0319/__init__.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
"""
|
||||
SleekXMPP: The Sleek XMPP Library
|
||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||
This file is part of SleekXMPP.
|
||||
|
||||
See the file LICENSE for copying permission.
|
||||
"""
|
||||
|
||||
from sleekxmpp.plugins.base import register_plugin
|
||||
|
||||
from sleekxmpp.plugins.xep_0319 import stanza
|
||||
from sleekxmpp.plugins.xep_0319.stanza import Idle
|
||||
from sleekxmpp.plugins.xep_0319.idle import XEP_0319
|
||||
|
||||
|
||||
register_plugin(XEP_0319)
|
70
sleekxmpp/plugins/xep_0319/idle.py
Normal file
70
sleekxmpp/plugins/xep_0319/idle.py
Normal file
|
@ -0,0 +1,70 @@
|
|||
"""
|
||||
SleekXMPP: The Sleek XMPP Library
|
||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||
This file is part of SleekXMPP.
|
||||
|
||||
See the file LICENSE for copying permission.
|
||||
"""
|
||||
|
||||
from datetime import datetime, timedelta
|
||||
|
||||
from sleekxmpp.stanza import Presence
|
||||
from sleekxmpp.plugins import BasePlugin
|
||||
from sleekxmpp.xmlstream import register_stanza_plugin
|
||||
from sleekxmpp.xmlstream.handler import Callback
|
||||
from sleekxmpp.xmlstream.matcher import StanzaPath
|
||||
from sleekxmpp.plugins.xep_0319 import stanza
|
||||
|
||||
|
||||
class XEP_0319(BasePlugin):
|
||||
name = 'xep_0319'
|
||||
description = 'XEP-0319: Last User Interaction in Presence'
|
||||
dependencies = set()
|
||||
stanza = stanza
|
||||
|
||||
def plugin_init(self):
|
||||
self._idle_stamps = {}
|
||||
register_stanza_plugin(Presence, stanza.Idle)
|
||||
self.api.register(self._set_idle,
|
||||
'set_idle',
|
||||
default=True)
|
||||
self.api.register(self._get_idle,
|
||||
'get_idle',
|
||||
default=True)
|
||||
self.xmpp.register_handler(
|
||||
Callback('Idle Presence',
|
||||
StanzaPath('presence/idle'),
|
||||
self._idle_presence))
|
||||
self.xmpp.add_filter('out', self._stamp_idle_presence)
|
||||
|
||||
def session_bind(self, jid):
|
||||
self.xmpp['xep_0030'].add_feature('urn:xmpp:idle:0')
|
||||
|
||||
def plugin_end(self):
|
||||
self.xmpp['xep_0030'].del_feature(feature='urn:xmpp:idle:0')
|
||||
self.xmpp.del_filter('out', self._stamp_idle_presence)
|
||||
self.xmpp.remove_handler('Idle Presence')
|
||||
|
||||
def idle(self, jid=None, since=None):
|
||||
if since is None:
|
||||
since = datetime.now()
|
||||
self.api['set_idle'](jid, None, None, since)
|
||||
|
||||
def active(self, jid=None):
|
||||
self.api['set_idle'](jid, None, None, None)
|
||||
|
||||
def _set_idle(self, jid, node, ifrom, data):
|
||||
self._idle_stamps[jid] = data
|
||||
|
||||
def _get_idle(self, jid, node, ifrom, data):
|
||||
return self._idle_stamps.get(jid, None)
|
||||
|
||||
def _idle_presence(self, pres):
|
||||
self.xmpp.event('presence_idle', pres)
|
||||
|
||||
def _stamp_idle_presence(self, stanza):
|
||||
if isinstance(stanza, Presence):
|
||||
since = self.api['get_idle'](stanza['from'] or self.xmpp.boundjid)
|
||||
if since:
|
||||
stanza['idle']['since'] = since
|
||||
return stanza
|
28
sleekxmpp/plugins/xep_0319/stanza.py
Normal file
28
sleekxmpp/plugins/xep_0319/stanza.py
Normal file
|
@ -0,0 +1,28 @@
|
|||
"""
|
||||
SleekXMPP: The Sleek XMPP Library
|
||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||
This file is part of SleekXMPP.
|
||||
|
||||
See the file LICENSE for copying permission.
|
||||
"""
|
||||
|
||||
import datetime as dt
|
||||
|
||||
from sleekxmpp.xmlstream import ElementBase
|
||||
from sleekxmpp.plugins import xep_0082
|
||||
|
||||
|
||||
class Idle(ElementBase):
|
||||
name = 'idle'
|
||||
namespace = 'urn:xmpp:idle:0'
|
||||
plugin_attrib = 'idle'
|
||||
interfaces = set(['since'])
|
||||
|
||||
def get_since(self):
|
||||
timestamp = self._get_attr('since')
|
||||
return xep_0082.parse(timestamp)
|
||||
|
||||
def set_since(self, value):
|
||||
if isinstance(value, dt.datetime):
|
||||
value = xep_0082.format_datetime(value)
|
||||
self._set_attr('since', value)
|
Loading…
Reference in a new issue