2010-03-26 21:32:16 +00:00
|
|
|
"""
|
|
|
|
SleekXMPP: The Sleek XMPP Library
|
|
|
|
Copyright (C) 2010 Nathanael C. Fritz
|
|
|
|
This file is part of SleekXMPP.
|
|
|
|
|
2010-07-20 15:19:49 +00:00
|
|
|
See the file LICENSE for copying permission.
|
2010-03-26 21:32:16 +00:00
|
|
|
"""
|
2009-12-10 01:23:03 +00:00
|
|
|
from .. xmlstream.stanzabase import StanzaBase
|
|
|
|
from xml.etree import cElementTree as ET
|
2009-12-11 01:29:46 +00:00
|
|
|
from . error import Error
|
2010-01-05 21:56:48 +00:00
|
|
|
from . rootstanza import RootStanza
|
2009-12-10 01:23:03 +00:00
|
|
|
|
2010-01-05 21:56:48 +00:00
|
|
|
class Message(RootStanza):
|
2010-01-08 23:08:12 +00:00
|
|
|
interfaces = set(('type', 'to', 'from', 'id', 'body', 'subject', 'mucroom', 'mucnick'))
|
2009-12-17 01:54:22 +00:00
|
|
|
types = set((None, 'normal', 'chat', 'headline', 'error', 'groupchat'))
|
2009-12-10 01:23:03 +00:00
|
|
|
sub_interfaces = set(('body', 'subject'))
|
|
|
|
name = 'message'
|
2010-04-14 08:23:17 +00:00
|
|
|
plugin_attrib = name
|
2009-12-10 01:23:03 +00:00
|
|
|
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
|
|
|
|
|
2009-12-10 07:33:59 +00:00
|
|
|
def reply(self, body=None):
|
|
|
|
StanzaBase.reply(self)
|
2010-01-08 07:01:19 +00:00
|
|
|
if self['type'] == 'groupchat':
|
|
|
|
self['to'] = self['to'].bare
|
2009-12-17 01:54:22 +00:00
|
|
|
del self['id']
|
2009-12-10 07:33:59 +00:00
|
|
|
if body is not None:
|
|
|
|
self['body'] = body
|
|
|
|
return self
|
|
|
|
|
2010-01-08 23:08:12 +00:00
|
|
|
def getMucroom(self):
|
|
|
|
if self['type'] == 'groupchat':
|
|
|
|
return self['from'].bare
|
|
|
|
else:
|
|
|
|
return ''
|
|
|
|
|
|
|
|
def setMucroom(self, value):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def delMucroom(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def getMucnick(self):
|
|
|
|
if self['type'] == 'groupchat':
|
|
|
|
return self['from'].resource
|
|
|
|
else:
|
|
|
|
return ''
|
|
|
|
|
|
|
|
def setMucnick(self, value):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def delMucnick(self):
|
|
|
|
pass
|