Merge remote-tracking branch 'whooo/master' into develop
This commit is contained in:
		
							
								
								
									
										10
									
								
								sleekxmpp/plugins/xep_0184/__init__.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								sleekxmpp/plugins/xep_0184/__init__.py
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,10 @@
 | 
			
		||||
"""
 | 
			
		||||
    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.plugins.xep_0184.reciept import xep_0184
 | 
			
		||||
from sleekxmpp.plugins.xep_0184.stanza import Request, Received
 | 
			
		||||
							
								
								
									
										43
									
								
								sleekxmpp/plugins/xep_0184/reciept.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										43
									
								
								sleekxmpp/plugins/xep_0184/reciept.py
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,43 @@
 | 
			
		||||
"""
 | 
			
		||||
    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.base import base_plugin
 | 
			
		||||
from stanza import Request, Received
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class xep_0184(base_plugin):
 | 
			
		||||
    """
 | 
			
		||||
    XEP-0184: Message Delivery Receipts
 | 
			
		||||
    """
 | 
			
		||||
 | 
			
		||||
    def plugin_init(self):
 | 
			
		||||
        self.xep = '0184'
 | 
			
		||||
        self.description = 'Message Delivery Receipts'
 | 
			
		||||
        register_stanza_plugin(Message, Request)
 | 
			
		||||
        register_stanza_plugin(Message, Received)
 | 
			
		||||
 | 
			
		||||
    def post_init(self):
 | 
			
		||||
        base_plugin.post_init(self)
 | 
			
		||||
        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()
 | 
			
		||||
							
								
								
									
										45
									
								
								sleekxmpp/plugins/xep_0184/stanza.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										45
									
								
								sleekxmpp/plugins/xep_0184/stanza.py
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,45 @@
 | 
			
		||||
"""
 | 
			
		||||
    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.xmlstream.stanzabase import ElementBase, ET
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class Request(ElementBase):
 | 
			
		||||
    namespace = 'urn:xmpp:receipts'
 | 
			
		||||
    name = 'request'
 | 
			
		||||
    plugin_attrib = 'request_reciept'
 | 
			
		||||
    interfaces = set(('request_reciept',))
 | 
			
		||||
    is_extension = True
 | 
			
		||||
 | 
			
		||||
    def setup(self, xml=None):
 | 
			
		||||
        self.xml = ET.Element('')
 | 
			
		||||
        return True
 | 
			
		||||
 | 
			
		||||
    def set_request_reciept(self, val):
 | 
			
		||||
        self.del_request_reciept()
 | 
			
		||||
        parent = self.parent()
 | 
			
		||||
        if val:
 | 
			
		||||
            self.xml = ET.Element("{%s}%s" % (self.namespace, self.name))
 | 
			
		||||
            parent.append(self.xml)
 | 
			
		||||
 | 
			
		||||
    def get_request_reciept(self):
 | 
			
		||||
        parent = self.parent()
 | 
			
		||||
        if parent.find("{%s}%s" % (self.namespace, self.name)) is not None:
 | 
			
		||||
            return True
 | 
			
		||||
        else:
 | 
			
		||||
            return False
 | 
			
		||||
 | 
			
		||||
    def del_request_reciept(self):
 | 
			
		||||
        self.xml = ET.Element('')
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class Received(ElementBase):
 | 
			
		||||
    namespace = 'urn:xmpp:receipts'
 | 
			
		||||
    name = 'received'
 | 
			
		||||
    plugin_attrib = 'reciept_received'
 | 
			
		||||
    interfaces = set(('id',))
 | 
			
		||||
		Reference in New Issue
	
	Block a user