slixmpp/sleekxmpp/plugins/xep_0332/stanza/response.py

58 lines
1.9 KiB
Python
Raw Normal View History

2015-01-22 11:10:03 +00:00
"""
SleekXMPP: The Sleek XMPP Library
Implementation of HTTP over XMPP transport
http://xmpp.org/extensions/xep-0332.html
Copyright (C) 2015 Riptide IO, sangeeth@riptideio.com
This file is part of SleekXMPP.
See the file LICENSE for copying permission.
"""
from sleekxmpp.xmlstream import ElementBase
2015-01-22 11:10:03 +00:00
class Response(ElementBase):
2015-01-22 11:10:03 +00:00
"""
When the HTTP Server responds, it does so by sending an `iq` stanza
response (type=`result`) back to the client containing the `resp` element.
Since response are asynchronous, and since multiple requests may be active
at the same time, responses may be returned in a different order than the
in which the original requests were made.
2015-01-22 11:10:03 +00:00
Examples:
<iq type='result' from='httpserver@clayster.com' to='httpclient@clayster.com/browser' id='2'>
<resp xmlns='urn:xmpp:http' version='1.1' statusCode='200' statusMessage='OK'>
<headers xmlns='http://jabber.org/protocol/shim'>
<header name='Date'>Fri, 03 May 2013 16:39:54GMT-4</header>
<header name='Server'>Clayster</header>
<header name='Content-Type'>text/turtle</header>
<header name='Content-Length'>...</header>
<header name='Connection'>Close</header>
</headers>
<data>
<text>
...
</text>
</data>
</resp>
</iq>
"""
name = 'response'
2015-01-29 03:03:40 +00:00
namespace = 'urn:xmpp:http'
interfaces = set(['code', 'version'])
plugin_attrib = 'resp'
2015-01-29 03:03:40 +00:00
def get_code(self):
print "Response:: get_code()"
def set_code(self, code):
print "Response:: set_code()"
self._set_attr('statusCode', str(code))
self._set_attr('statusMessage', str(code))
def set_version(self, version='1.1'):
print "Response:: set_version()"
self._set_attr('version', version)