summaryrefslogtreecommitdiff
path: root/sleekxmpp/stanza/message.py
blob: 560e1d4766ea49c23ed7e93558ae7018b02561df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
"""
    SleekXMPP: The Sleek XMPP Library
    Copyright (C) 2010  Nathanael C. Fritz
    This file is part of SleekXMPP.

    See the file LICENSE for copying permission.
"""

from sleekxmpp.stanza import Error
from sleekxmpp.stanza.rootstanza import RootStanza
from sleekxmpp.xmlstream.stanzabase import StanzaBase, ET


class Message(RootStanza):

    """
    XMPP's <message> stanzas are a "push" mechanism to send information
    to other XMPP entities without requiring a response.

    Chat clients will typically use <message> stanzas that have a type
    of either "chat" or "groupchat".

    When handling a message event, be sure to check if the message is
    an error response.

    Example <message> stanzas:
        <message to="user1@example.com" from="user2@example.com">
          <body>Hi!</body>
        </message>

        <message type="groupchat" to="room@conference.example.com">
          <body>Hi everyone!</body>
        </message>

    Stanza Interface:
        body    -- The main contents of the message.
        subject -- An optional description of the message's contents.
        mucroom -- (Read-only) The name of the MUC room that sent the message.
        mucnick -- (Read-only) The MUC nickname of message's sender.

    Attributes:
        types -- May be one of: normal, chat, headline, groupchat, or error.

    Methods:
        chat       -- Set the message type to 'chat'.
        normal     -- Set the message type to 'normal'.
        reply      -- Overrides StanzaBase.reply
        getType    -- Overrides StanzaBase interface
        getMucroom -- Return the name of the MUC room of the message.
        setMucroom -- Dummy method to prevent assignment.
        delMucroom -- Dummy method to prevent deletion.
        getMucnick -- Return the MUC nickname of the message's sender.
        setMucnick -- Dummy method to prevent assignment.
        delMucnick -- Dummy method to prevent deletion.
    """

    namespace = 'jabber:client'
    name = 'message'
    interfaces = set(('type', 'to', 'from', 'id', 'body', 'subject',
                      'mucroom', 'mucnick'))
    sub_interfaces = set(('body', 'subject'))
    plugin_attrib = name
    types = set((None, 'normal', 'chat', 'headline', 'error', 'groupchat'))

    def getType(self):
        """
        Return the message type.

        Overrides default stanza interface behavior.

        Returns 'normal' if no type attribute is present.
        """
        return self._getAttr('type', 'normal')

    def chat(self):
        """Set the message type to 'chat'."""
        self['type'] = 'chat'
        return self

    def normal(self):
        """Set the message type to 'chat'."""
        self['type'] = 'normal'
        return self

    def reply(self, body=None):
        """
        Create a message reply.

        Overrides StanzaBase.reply.

        Sets proper 'to' attribute if the message is from a MUC, and
        adds a message body if one is given.

        Arguments:
            body -- Optional text content for the message.
        """
        StanzaBase.reply(self)
        if self['type'] == 'groupchat':
            self['to'] = self['to'].bare

        del self['id']

        if body is not None:
            self['body'] = body
        return self

    def getMucroom(self):
        """
        Return the name of the MUC room where the message originated.

        Read-only stanza interface.
        """
        if self['type'] == 'groupchat':
            return self['from'].bare
        else:
            return ''

    def getMucnick(self):
        """
        Return the nickname of the MUC user that sent the message.

        Read-only stanza interface.
        """
        if self['type'] == 'groupchat':
            return self['from'].resource
        else:
            return ''

    def setMucroom(self, value):
        """Dummy method to prevent modification."""
        pass

    def delMucroom(self):
        """Dummy method to prevent deletion."""
        pass

    def setMucnick(self, value):
        """Dummy method to prevent modification."""
        pass

    def delMucnick(self):
        """Dummy method to prevent deletion."""
        pass