summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0332/http.py
diff options
context:
space:
mode:
authorSangeeth Saravanaraj <sangeeth@riptideio.com>2015-04-29 14:44:25 +0530
committerSangeeth Saravanaraj <sangeeth@riptideio.com>2015-04-29 14:44:25 +0530
commit61a7cecb319c5628973906250ed973f21883cfd4 (patch)
treefd2ffea9cbe160dd92fad74a1ce577a22ab2be4b /sleekxmpp/plugins/xep_0332/http.py
parent80b60fc0483b21c8d5829b61cabbf9b46aa2c2fb (diff)
downloadslixmpp-61a7cecb319c5628973906250ed973f21883cfd4.tar.gz
slixmpp-61a7cecb319c5628973906250ed973f21883cfd4.tar.bz2
slixmpp-61a7cecb319c5628973906250ed973f21883cfd4.tar.xz
slixmpp-61a7cecb319c5628973906250ed973f21883cfd4.zip
Prefixed request, response and data with http. Avoided (plugin_attrib) name collision with other plugins.
Diffstat (limited to 'sleekxmpp/plugins/xep_0332/http.py')
-rw-r--r--sleekxmpp/plugins/xep_0332/http.py56
1 files changed, 33 insertions, 23 deletions
diff --git a/sleekxmpp/plugins/xep_0332/http.py b/sleekxmpp/plugins/xep_0332/http.py
index 36b6995f..acaef505 100644
--- a/sleekxmpp/plugins/xep_0332/http.py
+++ b/sleekxmpp/plugins/xep_0332/http.py
@@ -17,7 +17,9 @@ from sleekxmpp.xmlstream.handler import Callback
from sleekxmpp.xmlstream.matcher import StanzaPath
from sleekxmpp.plugins.base import BasePlugin
-from sleekxmpp.plugins.xep_0332.stanza import Request, Response, Data
+from sleekxmpp.plugins.xep_0332.stanza import (
+ HTTPRequest, HTTPResponse, HTTPData
+)
from sleekxmpp.plugins.xep_0131.stanza import Headers
@@ -50,18 +52,26 @@ class XEP_0332(BasePlugin):
}
def plugin_init(self):
- self.xmpp.register_handler(Callback(
- 'HTTP Request', StanzaPath('iq/req'), self._handle_request
- ))
- self.xmpp.register_handler(Callback(
- 'HTTP Response', StanzaPath('iq/resp'), self._handle_response
- ))
- register_stanza_plugin(Iq, Request, iterable=True)
- register_stanza_plugin(Iq, Response, iterable=True)
- register_stanza_plugin(Request, Headers, iterable=True)
- register_stanza_plugin(Request, Data, iterable=True)
- register_stanza_plugin(Response, Headers, iterable=True)
- register_stanza_plugin(Response, Data, iterable=True)
+ self.xmpp.register_handler(
+ Callback(
+ 'HTTP Request',
+ StanzaPath('iq/http-req'),
+ self._handle_request
+ )
+ )
+ self.xmpp.register_handler(
+ Callback(
+ 'HTTP Response',
+ StanzaPath('iq/http-resp'),
+ self._handle_response
+ )
+ )
+ register_stanza_plugin(Iq, HTTPRequest, iterable=True)
+ register_stanza_plugin(Iq, HTTPResponse, iterable=True)
+ register_stanza_plugin(HTTPRequest, Headers, iterable=True)
+ register_stanza_plugin(HTTPRequest, HTTPData, iterable=True)
+ register_stanza_plugin(HTTPResponse, Headers, iterable=True)
+ register_stanza_plugin(HTTPResponse, HTTPData, iterable=True)
# TODO: Should we register any api's here? self.api.register()
def plugin_end(self):
@@ -94,12 +104,12 @@ class XEP_0332(BasePlugin):
iq['from'] = self.xmpp.boundjid
iq['to'] = to
iq['type'] = 'set'
- iq['req']['headers'] = headers
- iq['req']['method'] = method
- iq['req']['resource'] = resource
- iq['req']['version'] = '1.1' # TODO: set this implicitly
+ iq['http-req']['headers'] = headers
+ iq['http-req']['method'] = method
+ iq['http-req']['resource'] = resource
+ iq['http-req']['version'] = '1.1' # TODO: set this implicitly
if data is not None:
- iq['req']['data'] = data
+ iq['http-req']['http-data'] = data
return iq.send(
timeout=kwargs.get('timeout', None),
block=kwargs.get('block', True),
@@ -113,12 +123,12 @@ class XEP_0332(BasePlugin):
iq['from'] = self.xmpp.boundjid
iq['to'] = to
iq['type'] = 'result'
- iq['resp']['headers'] = headers
- iq['resp']['code'] = code
- iq['resp']['message'] = message
- iq['resp']['version'] = '1.1' # TODO: set this implicitly
+ iq['http-resp']['headers'] = headers
+ iq['http-resp']['code'] = code
+ iq['http-resp']['message'] = message
+ iq['http-resp']['version'] = '1.1' # TODO: set this implicitly
if data is not None:
- iq['resp']['data'] = data
+ iq['http-resp']['http-data'] = data
return iq.send(
timeout=kwargs.get('timeout', None),
block=kwargs.get('block', True),