diff options
author | Lance Stout <lancestout@gmail.com> | 2012-03-16 10:51:25 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-03-16 10:51:25 -0700 |
commit | 58e0f1e6c3a8dd6eea19e05aa9367a3dd2ceca70 (patch) | |
tree | f1346716c923c752d16099bc6e7698b3e9dcddf3 /sleekxmpp/plugins/xep_0184/reciept.py | |
parent | 96ff2d43c057c1aabdb735f3a0150d3a99fb0db6 (diff) | |
download | slixmpp-58e0f1e6c3a8dd6eea19e05aa9367a3dd2ceca70.tar.gz slixmpp-58e0f1e6c3a8dd6eea19e05aa9367a3dd2ceca70.tar.bz2 slixmpp-58e0f1e6c3a8dd6eea19e05aa9367a3dd2ceca70.tar.xz slixmpp-58e0f1e6c3a8dd6eea19e05aa9367a3dd2ceca70.zip |
Expand support for XEP-0184.
New stanza interfaces:
Adding a message receipt request:
msg['request_receipt'] = True
Adding a message receipt:
msg['receipt'] = '123-24234'
Retrieving the acked message ID:
ack_id = msg['receipt']
print(ack_id)
'123-24234'
New configuration options:
auto_ack:
If True, auto reply to messages that request receipts.
Defaults to True
auto_request:
If True, auto add receipt requests to appropriate outgoing
messages.
Defaults to False
Diffstat (limited to 'sleekxmpp/plugins/xep_0184/reciept.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0184/reciept.py | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/sleekxmpp/plugins/xep_0184/reciept.py b/sleekxmpp/plugins/xep_0184/reciept.py deleted file mode 100644 index fd3f24e7..00000000 --- a/sleekxmpp/plugins/xep_0184/reciept.py +++ /dev/null @@ -1,45 +0,0 @@ -""" - SleekXMPP: The Sleek XMPP Library - Copyright (C) 2012 Erik Reuterborg Larsson, Nathanael C. Fritz - This file is part of SleekXMPP. - - See the file LICENSE for copying permission. -""" - -from sleekxmpp.stanza import Message -from sleekxmpp.xmlstream import register_stanza_plugin -from sleekxmpp.plugins import BasePlugin -from sleekxmpp.plugins.xep_0184 import stanza, Request, Received - - -class XEP_0184(BasePlugin): - - """ - XEP-0184: Message Delivery Receipts - """ - - name = 'xep_0184' - description = 'XEP-0184: Message Delivery Receipts' - dependencies = set(['xep_0030']) - stanza = stanza - - def plugin_init(self): - register_stanza_plugin(Message, Request) - register_stanza_plugin(Message, Received) - - self.xmpp.plugin['xep_0030'].add_feature('urn:xmpp:receipts') - - def ack(self, message): - """ - Acknowledges a message - - Arguments: - message -- The message to acknowledge. - """ - mto = message['to'] - mfrom = message['from'] - mid = message['id'] - msg = self.xmpp.make_message(mto=mfrom, mfrom=mto) - msg['reciept_received']['id'] = mid - msg['id'] = self.xmpp.new_id() - msg.send() |