07018c0afa
* added stanza unhandled (unhandled iqs now reply with feature-not-implemented) * added stanza exceptions (stanzas may now reply with exceptions when their handler raises an exception)
37 lines
952 B
Python
37 lines
952 B
Python
from .. xmlstream.stanzabase import StanzaBase
|
|
from xml.etree import cElementTree as ET
|
|
from . error import Error
|
|
|
|
class Message(StanzaBase):
|
|
interfaces = set(('type', 'to', 'from', 'id', 'body', 'subject'))
|
|
types = set((None, 'normal', 'chat', 'headline', 'error', 'groupchat'))
|
|
sub_interfaces = set(('body', 'subject'))
|
|
name = 'message'
|
|
namespace = 'jabber:client'
|
|
|
|
def getType(self):
|
|
return self.xml.attrib.get('type', 'normal')
|
|
|
|
def chat(self):
|
|
self['type'] = 'chat'
|
|
return self
|
|
|
|
def normal(self):
|
|
self['type'] = 'normal'
|
|
return self
|
|
|
|
def reply(self, body=None):
|
|
StanzaBase.reply(self)
|
|
del self['id']
|
|
if body is not None:
|
|
self['body'] = body
|
|
return self
|
|
|
|
def exception(self, text):
|
|
self.reply()
|
|
self['error']['condition'] = 'undefined-condition'
|
|
self['error']['text'] = text
|
|
self.send()
|
|
|
|
Message.plugin_attrib_map['error'] = Error
|
|
Message.plugin_tag_map["{%s}%s" % (Error.namespace, Error.name)] = Error
|