Switching away from using contact ids
[theonering] / src / channel / contact_list.py
1 import logging
2
3 import telepathy
4
5 import tp
6 import util.coroutines as coroutines
7 import gtk_toolbox
8 import handle
9
10
11 _moduleLogger = logging.getLogger("channel.contact_list")
12
13
14 class AllContactsListChannel(
15                 tp.ChannelTypeContactList,
16                 tp.ChannelInterfaceGroup,
17         ):
18         """
19         The group of contacts for whom you receive presence
20
21         @bug On Maemo 5 this isn't even being created, I think
22         """
23
24         def __init__(self, connection, manager, props, listHandle):
25                 tp.ChannelTypeContactList.__init__(self, connection, manager, props)
26                 tp.ChannelInterfaceGroup.__init__(self)
27
28                 self.__manager = manager
29                 self.__props = props
30                 self.__session = connection.session
31                 self.__listHandle = listHandle
32
33                 self._callback = coroutines.func_sink(
34                         coroutines.expand_positional(
35                                 self._on_contacts_refreshed
36                         )
37                 )
38                 self.__session.addressbook.updateSignalHandler.register_sink(
39                         self._callback
40                 )
41
42                 self.GroupFlagsChanged(0, 0)
43
44                 addressbook = connection.session.addressbook
45                 contacts = addressbook.get_numbers()
46                 self._process_refresh(addressbook, set(contacts), set())
47
48
49         @gtk_toolbox.log_exception(_moduleLogger)
50         def Close(self):
51                 self.close()
52
53         def close(self):
54                 self.__session.addressbook.updateSignalHandler.unregister_sink(
55                         self._callback
56                 )
57                 self._callback = None
58
59                 tp.ChannelTypeContactList.Close(self)
60                 self.remove_from_connection()
61
62         @gtk_toolbox.log_exception(_moduleLogger)
63         def _on_contacts_refreshed(self, addressbook, added, removed, changed):
64                 self._process_refresh(addressbook, added, removed)
65
66         def _process_refresh(self, addressbook, added, removed):
67                 _moduleLogger.info(
68                         "%s Added: %r, Removed: %r" % (self.__listHandle.get_name(), len(added), len(removed))
69                 )
70                 connection = self._conn
71                 handlesAdded = [
72                         handle.create_handle(connection, "contact", contactNumber)
73                         for contactNumber in added
74                 ]
75                 handlesRemoved = [
76                         handle.create_handle(connection, "contact", contactNumber)
77                         for contactNumber in removed
78                 ]
79                 message = ""
80                 actor = 0
81                 reason = telepathy.CHANNEL_GROUP_CHANGE_REASON_NONE
82                 self.MembersChanged(
83                         message,
84                         handlesAdded, handlesRemoved,
85                         (), (),
86                         actor,
87                         reason,
88                 )
89
90
91 _LIST_TO_FACTORY = {
92         # The group of contacts for whom you receive presence
93         'subscribe': AllContactsListChannel,
94         # The group of contacts who may receive your presence
95         'publish': AllContactsListChannel,
96         # A group of contacts who are on the publish list but are temporarily
97         # disallowed from receiving your presence
98         # This doesn't make sense to support
99         'hide': None,
100         # A group of contacts who may send you messages
101         # @todo Allow-List would be cool to support
102         'allow': None,
103         # A group of contacts who may not send you messages
104         # @todo Deny-List would be cool to support
105         'deny': None,
106         # On protocols where the user's contacts are stored, this contact list
107         # contains all stored contacts regardless of subscription status.
108         'stored': AllContactsListChannel,
109 }
110
111
112 _SUPPORTED_LISTS = frozenset(
113         name
114         for name in _LIST_TO_FACTORY.iterkeys()
115         if name is not None
116 )
117
118
119 def create_contact_list_channel(connection, manager, props, h):
120         factory = _LIST_TO_FACTORY.get(h.get_name(), None)
121         if factory is None:
122                 raise telepathy.errors.NotCapable("Unsuported type %s" % h.get_name())
123         return factory(connection, manager, props, h)
124
125
126 def get_spported_lists():
127         return _SUPPORTED_LISTS