summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0332/stanza/response.py
diff options
context:
space:
mode:
Diffstat (limited to 'sleekxmpp/plugins/xep_0332/stanza/response.py')
-rw-r--r--sleekxmpp/plugins/xep_0332/stanza/response.py66
1 files changed, 0 insertions, 66 deletions
diff --git a/sleekxmpp/plugins/xep_0332/stanza/response.py b/sleekxmpp/plugins/xep_0332/stanza/response.py
deleted file mode 100644
index 6804ade9..00000000
--- a/sleekxmpp/plugins/xep_0332/stanza/response.py
+++ /dev/null
@@ -1,66 +0,0 @@
-"""
- 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
-
-
-class HTTPResponse(ElementBase):
-
- """
- 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.
-
- 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'
- namespace = 'urn:xmpp:http'
- interfaces = set(['code', 'message', 'version'])
- plugin_attrib = 'http-resp'
-
- def get_code(self):
- code = self._get_attr('statusCode', None)
- return int(code) if code is not None else code
-
- def set_code(self, code):
- self._set_attr('statusCode', str(code))
-
- def get_message(self):
- return self._get_attr('statusMessage', '')
-
- def set_message(self, message):
- self._set_attr('statusMessage', message)
-
- def set_version(self, version='1.1'):
- self._set_attr('version', version)