X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fchannel%2Ftext.py;h=b1a7aa9c206d002c18e2a67d9507d22787beddfc;hb=54fb3d0f7f39e6446e1771cc29483a4d6138f8dd;hp=8fe4a5f76cdbe86031478820f9bfb1066140c0e1;hpb=6746a49f5ca69cfe1b4ebbd06e9a968973b75412;p=theonering diff --git a/src/channel/text.py b/src/channel/text.py index 8fe4a5f..b1a7aa9 100644 --- a/src/channel/text.py +++ b/src/channel/text.py @@ -1,34 +1,158 @@ import time -import weakref +import datetime +import logging import telepathy +import tp +import util.coroutines as coroutines +import gtk_toolbox -class TextChannel(telepathy.server.ChannelTypeText): + +_moduleLogger = logging.getLogger("channel.text") + + +class TextChannel(tp.ChannelTypeText): """ Look into implementing ChannelInterfaceMessages for rich text formatting """ - def __init__(self, connection, conversation): - self._recv_id = 0 - self._conversation = conversation - self._connRef = weakref.ref(connection) + def __init__(self, connection, manager, props, contactHandle): + self.__manager = manager + self.__props = props - telepathy.server.ChannelTypeText.__init__(self, connection, None) + tp.ChannelTypeText.__init__(self, connection, manager, props) + self.__nextRecievedId = 0 + self.__lastMessageTimestamp = datetime.datetime(1, 1, 1) - self.GroupFlagsChanged(telepathy.CHANNEL_GROUP_FLAG_CAN_ADD, 0) - self.__add_initial_participants() + self.__otherHandle = contactHandle - def Send(self, messageType, text): - if messageType == telepathy.CHANNEL_TEXT_MESSAGE_TYPE_NORMAL: - self._conversation.send_text_message(text) - elif messageType == telepathy.CHANNEL_TEXT_MESSAGE_TYPE_ACTION and text == u"nudge": - self._conversation.send_nudge() + self.__callback = coroutines.func_sink( + coroutines.expand_positional( + self._on_conversations_updated + ) + ) + self._conn.session.voicemails.updateSignalHandler.register_sink( + self.__callback + ) + self._conn.session.texts.updateSignalHandler.register_sink( + self.__callback + ) + + # The only reason there should be anything in the conversation is if + # its new, so report it all + try: + mergedConversations = self._conn.session.voicemails.get_conversation(self._contactKey) + except KeyError: + _moduleLogger.debug("No voicemails in the conversation yet for %r" % (self._contactKey, )) + else: + self._report_conversation(mergedConversations) + try: + mergedConversations = self._conn.session.texts.get_conversation(self._contactKey) + except KeyError: + _moduleLogger.debug("No texts conversation yet for %r" % (self._contactKey, )) else: - raise telepathy.NotImplemented("Unhandled message type") + self._report_conversation(mergedConversations) + + @gtk_toolbox.log_exception(_moduleLogger) + def Send(self, messageType, text): + if messageType != telepathy.CHANNEL_TEXT_MESSAGE_TYPE_NORMAL: + raise telepathy.errors.NotImplemented("Unhandled message type: %r" % messageType) + + _moduleLogger.info("Sending message to %r" % (self.__otherHandle, )) + self._conn.session.backend.send_sms(self.__otherHandle.phoneNumber, text) + self._conn.session.textsStateMachine.reset_timers() + self.Sent(int(time.time()), messageType, text) + @gtk_toolbox.log_exception(_moduleLogger) def Close(self): - self._conversation.leave() - telepathy.server.ChannelTypeText.Close(self) + self.close() + + def close(self): + self._conn.session.voicemails.updateSignalHandler.unregister_sink( + self.__callback + ) + self._conn.session.texts.updateSignalHandler.unregister_sink( + self.__callback + ) + self.__callback = None + + tp.ChannelTypeText.Close(self) self.remove_from_connection() + + @property + def _contactKey(self): + contactKey = self.__otherHandle.contactID, self.__otherHandle.phoneNumber + return contactKey + + @gtk_toolbox.log_exception(_moduleLogger) + def _on_conversations_updated(self, conv, conversationIds): + if self._contactKey not in conversationIds: + return + _moduleLogger.debug("Incoming messages from %r for existing conversation" % (self._contactKey, )) + mergedConversations = conv.get_conversation(self._contactKey) + self._report_conversation(mergedConversations) + + def _report_conversation(self, mergedConversations): + # Can't filter out messages in a texting conversation that came in + # before the last one sent because that creates a race condition of two + # people sending at about the same time, which happens quite a bit + newConversations = mergedConversations.conversations + if not newConversations: + _moduleLogger.debug( + "No messages ended up existing for %r" % (self._contactKey, ) + ) + return + newConversations = self._filter_out_reported(newConversations) + newConversations = self._filter_out_read(newConversations) + newConversations = list(newConversations) + if not newConversations: + _moduleLogger.debug( + "New messages for %r have already been read externally" % (self._contactKey, ) + ) + return + self.__lastMessageTimestamp = newConversations[-1].time + + messages = [ + newMessage + for newConversation in newConversations + for newMessage in newConversation.messages + if newMessage.whoFrom != "Me:" + ] + if not newConversations: + _moduleLogger.debug( + "All incoming messages were really outbound messages for %r" % (self._contactKey, ) + ) + return + + for newMessage in messages: + formattedMessage = self._format_message(newMessage) + self._report_new_message(formattedMessage) + + def _filter_out_reported(self, conversations): + return ( + conversation + for conversation in conversations + if self.__lastMessageTimestamp < conversation.time + ) + + def _filter_out_read(self, conversations): + return ( + conversation + for conversation in conversations + if not conversation.isRead and not conversation.isArchived + ) + + def _format_message(self, message): + return " ".join(part.text.strip() for part in message.body) + + def _report_new_message(self, message): + currentReceivedId = self.__nextRecievedId + timestamp = int(time.time()) + type = telepathy.CHANNEL_TEXT_MESSAGE_TYPE_NORMAL + + _moduleLogger.info("Received message from User %r" % self.__otherHandle) + self.Received(currentReceivedId, timestamp, self.__otherHandle, type, 0, message) + + self.__nextRecievedId += 1