summaryrefslogtreecommitdiff
path: root/sunshine/channel/text.py
blob: 2e5fb80ed6b6293c3d8c9825b454f57640157840 (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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
# telepathy-sunshine is the GaduGadu connection manager for Telepathy
#
# Copyright (C) 2006-2007 Ali Sabil <ali.sabil@gmail.com>
# Copyright (C) 2007 Johann Prieur <johann.prieur@gmail.com>
# Copyright (C) 2010 Krzysztof Klinikowski <kkszysiu@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

import logging
import weakref
import time

import telepathy

from sunshine.util.decorator import async, escape
from sunshine.handle import SunshineHandleFactory
from sunshine.channel import SunshineChannel

__all__ = ['SunshineTextChannel']

logger = logging.getLogger('Sunshine.TextChannel')


class SunshineTextChannel(SunshineChannel,
                          telepathy.server.ChannelTypeText,
                          telepathy.server.ChannelInterfaceChatState):

    def __init__(self, conn, manager, conversation, props, object_path=None):
        _, surpress_handler, handle = manager._get_type_requested_handle(props)
        self._recv_id = 0
        self._conn_ref = weakref.ref(conn)
        self.conn = conn

        self.handle = handle
        telepathy.server.ChannelTypeText.__init__(self, conn, manager, props, object_path=None)
        SunshineChannel.__init__(self, conn, props)
        telepathy.server.ChannelInterfaceChatState.__init__(self)

    def Send(self, message_type, text):
        if message_type == telepathy.CHANNEL_TEXT_MESSAGE_TYPE_NORMAL:
            logger.info("Sending message to %s, id %s, body: '%s'" % (str(self.handle.name), str(self.handle.id), unicode(text)))
            msg = text.decode('UTF-8').encode('windows-1250', 'replace')
            #gg_text = escape(text.decode('UTF-8')).encode('UTF-8').replace('<', '&lt;').replace('>', '&gt;')
            gg_text = text.decode('UTF-8', 'xmlcharrefreplace').replace('<', '&lt;').replace('>', '&gt;')
            self._conn_ref().profile.sendTo(int(self.handle.name), str(gg_text), str(msg))
            self._conn_ref().profile.sendTypingNotify(int(self.handle.name), 0)
        else:
            raise telepathy.NotImplemented("Unhandled message type")
        self.Sent(int(time.time()), message_type, text)

    def Close(self):
        telepathy.server.ChannelTypeText.Close(self)
        self.remove_from_connection()

    # Redefine GetSelfHandle since we use our own handle
    #  as Butterfly doesn't have channel specific handles
    def GetSelfHandle(self):
        return self._conn.GetSelfHandle()

    # Rededefine AcknowledgePendingMessages to remove offline messages
    # from the oim box.
    def AcknowledgePendingMessages(self, ids):
        telepathy.server.ChannelTypeText.AcknowledgePendingMessages(self, ids)
#        messages = []
#        for id in ids:
#            if id in self._pending_offline_messages.keys():
#                messages.append(self._pending_offline_messages[id])
#                del self._pending_offline_messages[id]
#        self._oim_box_ref().delete_messages(messages)

    # Rededefine ListPendingMessages to remove offline messages
    # from the oim box.
    def ListPendingMessages(self, clear):
        return telepathy.server.ChannelTypeText.ListPendingMessages(self, clear)

    def SetChatState(self, state):
        # Not useful if we dont have a conversation.
        if state == telepathy.CHANNEL_CHAT_STATE_COMPOSING:
            t = 1
        else:
            t = 0

        handle = SunshineHandleFactory(self._conn_ref(), 'self')
        self._conn_ref().profile.sendTypingNotify(int(self.handle.name), t)
        self.ChatStateChanged(handle, state)

class SunshineRoomTextChannel(telepathy.server.ChannelTypeText, telepathy.server.ChannelInterfaceGroup):

    def __init__(self, conn, manager, conversation, props, object_path=None):
        _, surpress_handler, handle = manager._get_type_requested_handle(props)
        self._recv_id = 0
        self._conn_ref = weakref.ref(conn)
        self.conn = conn

        if conversation != None:
            self.contacts = conversation

        self.handle = handle
        telepathy.server.ChannelTypeText.__init__(self, conn, manager, props, object_path=None)
        telepathy.server.ChannelInterfaceGroup.__init__(self)

        self.GroupFlagsChanged(telepathy.CHANNEL_GROUP_FLAG_CAN_ADD, 0)

    def Send(self, message_type, text):
        if message_type == telepathy.CHANNEL_TEXT_MESSAGE_TYPE_NORMAL:
            recipients = []
            if self.contacts != None:
                for rhandle in self.contacts:
                    recipients.append(rhandle.name)

            for nr in recipients:
                print nr
                recs_tmp = sorted(recipients)
                recs_tmp.remove(nr)

                logger.info("Sending message to %s, id %s, body: '%s'" % (str(nr), str(self.handle.id), unicode(text)))
                msg = text.encode('windows-1250')
                self.conn.gadu_client.sendToConf(int(nr), str(text), str(msg), recs_tmp)
        else:
            raise telepathy.NotImplemented("Unhandled message type")
        self.Sent(int(time.time()), message_type, text)

    def Close(self):
        telepathy.server.ChannelTypeText.Close(self)
        self.remove_from_connection()

    # Redefine GetSelfHandle since we use our own handle
    #  as Butterfly doesn't have channel specific handles
    def GetSelfHandle(self):
        return self._conn.GetSelfHandle()

    # Rededefine AcknowledgePendingMessages to remove offline messages
    # from the oim box.
    def AcknowledgePendingMessages(self, ids):
        telepathy.server.ChannelTypeText.AcknowledgePendingMessages(self, ids)
#        messages = []
#        for id in ids:
#            if id in self._pending_offline_messages.keys():
#                messages.append(self._pending_offline_messages[id])
#                del self._pending_offline_messages[id]
#        self._oim_box_ref().delete_messages(messages)

    # Rededefine ListPendingMessages to remove offline messages
    # from the oim box.
    def ListPendingMessages(self, clear):
        return telepathy.server.ChannelTypeText.ListPendingMessages(self, clear)

    def getContacts(self, contacts):
        self.contacts = contacts

#        if clear:
#            messages = self._pending_offline_messages.values()
#            self._oim_box_ref().delete_messages(messages)
#        return telepathy.server.ChannelTypeText.ListPendingMessages(self, clear)
#
#    # papyon.event.ConversationEventInterface
#    def on_conversation_user_joined(self, contact):
#        handle = ButterflyHandleFactory(self._conn_ref(), 'contact',
#                contact.account, contact.network_id)
#        logger.info("User %s joined" % unicode(handle))
#        if handle not in self._members:
#            self.MembersChanged('', [handle], [], [], [],
#                    handle, telepathy.CHANNEL_GROUP_CHANGE_REASON_INVITED)
#
#    # papyon.event.ConversationEventInterface
#    def on_conversation_user_left(self, contact):
#        handle = ButterflyHandleFactory(self._conn_ref(), 'contact',
#                contact.account, contact.network_id)
#        logger.info("User %s left" % unicode(handle))
#        # There was only us and we are leaving, is it necessary?
#        if len(self._members) == 1:
#            self.ChatStateChanged(handle, telepathy.CHANNEL_CHAT_STATE_GONE)
#        elif len(self._members) == 2:
#            # Add the last user who left as the offline contact so we may still send
#            # him offlines messages and destroy the conversation
#            self._conversation.leave()
#            self._conversation = None
#            self._offline_handle = handle
#            self._offline_contact = contact
#        else:
#            #If there is only us and a offline contact don't remove him from
#            #the members since we still send him messages
#            self.MembersChanged('', [], [handle], [], [],
#                    handle, telepathy.CHANNEL_GROUP_CHANGE_REASON_NONE)
#
#    # papyon.event.ConversationEventInterface
#    def on_conversation_user_typing(self, contact):
#        handle = ButterflyHandleFactory(self._conn_ref(), 'contact',
#                contact.account, contact.network_id)
#        logger.info("User %s is typing" % unicode(handle))
#        self.ChatStateChanged(handle, telepathy.CHANNEL_CHAT_STATE_COMPOSING)
#
#    # papyon.event.ConversationEventInterface
#    def on_conversation_message_received(self, sender, message):
#        id = self._recv_id
#        timestamp = int(time.time())
#        handle = ButterflyHandleFactory(self._conn_ref(), 'contact',
#                sender.account, sender.network_id)
#        type = telepathy.CHANNEL_TEXT_MESSAGE_TYPE_NORMAL
#        message = message.content
#        logger.info("User %s sent a message" % unicode(handle))
#        self.Received(id, timestamp, handle, type, 0, message)
#        self._recv_id += 1
#
#    # papyon.event.ConversationEventInterface
#    def on_conversation_nudge_received(self, sender):
#        id = self._recv_id
#        timestamp = int(time.time())
#        handle = ButterflyHandleFactory(self._conn_ref(), 'contact',
#                sender.account, sender.network_id)
#        type = telepathy.CHANNEL_TEXT_MESSAGE_TYPE_ACTION
#        text = unicode("sends you a nudge", "utf-8")
#        logger.info("User %s sent a nudge" % unicode(handle))
#        self.Received(id, timestamp, handle, type, 0, text)
#        self._recv_id += 1
#
#    # papyon.event.ContactEventInterface
#    def on_contact_presence_changed(self, contact):
#        handle = ButterflyHandleFactory(self._conn_ref(), 'contact',
#                contact.account, contact.network_id)
#        # Recreate a conversation if our contact join
#        if self._offline_contact == contact and contact.presence != papyon.Presence.OFFLINE:
#            logger.info('Contact %s connected, inviting him to the text channel' % unicode(contact))
#            client = self._conn_ref().msn_client
#            self._conversation = papyon.Conversation(client, [contact])
#            papyon.event.ConversationEventInterface.__init__(self, self._conversation)
#            self._offline_contact = None
#            self._offline_handle = None
#        #FIXME : I really hope there is no race condition between the time
#        # the contact accept the invitation and the time we send him a message
#        # Can a user refuse an invitation? what happens then?
#
#
#    # Public API
#    def offline_message_received(self, message):
#        # @message a papyon.OfflineIM.OfflineMessage
#        id = self._recv_id
#        sender = message.sender
#        timestamp = time.mktime(message.date.timetuple())
#        text = message.text
#
#        # Map the id to the offline message so we can remove it
#        # when acked by the client
#        self._pending_offline_messages[id] = message
#
#        handle = ButterflyHandleFactory(self._conn_ref(), 'contact',
#                sender.account, sender.network_id)
#        type = telepathy.CHANNEL_TEXT_MESSAGE_TYPE_NORMAL
#        logger.info("User %r sent a offline message" % handle)
#        self.Received(id, timestamp, handle, type, 0, text)
#
#        self._recv_id += 1
#
#    @async
#    def __add_initial_participants(self):
#        handles = []
#        handles.append(self._conn.GetSelfHandle())
#        if self._conversation:
#            for participant in self._conversation.participants:
#                handle = ButterflyHandleFactory(self._conn_ref(), 'contact',
#                        participant.account, participant.network_id)
#                handles.append(handle)
#        else:
#            handles.append(self._offline_handle)
#
#        self.MembersChanged('', handles, [], [], [],
#                0, telepathy.CHANNEL_GROUP_CHANGE_REASON_NONE)