b0579726e27bf11df1f1b3d087a3e3420be989c5
[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                 _moduleLogger.debug("Closing contact list")
55                 self.__session.addressbook.updateSignalHandler.unregister_sink(
56                         self._callback
57                 )
58                 self._callback = None
59
60                 tp.ChannelTypeContactList.Close(self)
61                 self.remove_from_connection()
62
63         @gtk_toolbox.log_exception(_moduleLogger)
64         def GetLocalPendingMembersWithInfo(self):
65                 return []
66
67         @gtk_toolbox.log_exception(_moduleLogger)
68         def _on_contacts_refreshed(self, addressbook, added, removed, changed):
69                 self._process_refresh(addressbook, added, removed)
70
71         def _process_refresh(self, addressbook, added, removed):
72                 _moduleLogger.info(
73                         "%s Added: %r, Removed: %r" % (self.__listHandle.get_name(), len(added), len(removed))
74                 )
75                 connection = self._conn
76                 handlesAdded = [
77                         handle.create_handle(connection, "contact", contactNumber)
78                         for contactNumber in added
79                 ]
80                 handlesRemoved = [
81                         handle.create_handle(connection, "contact", contactNumber)
82                         for contactNumber in removed
83                 ]
84                 message = ""
85                 actor = 0
86                 reason = telepathy.CHANNEL_GROUP_CHANGE_REASON_NONE
87                 self.MembersChanged(
88                         message,
89                         handlesAdded, handlesRemoved,
90                         (), (),
91                         actor,
92                         reason,
93                 )
94
95
96 _LIST_TO_FACTORY = {
97         # The group of contacts for whom you receive presence
98         'subscribe': AllContactsListChannel,
99         # The group of contacts who may receive your presence
100         'publish': AllContactsListChannel,
101         # A group of contacts who are on the publish list but are temporarily
102         # disallowed from receiving your presence
103         # This doesn't make sense to support
104         'hide': None,
105         # A group of contacts who may send you messages
106         # @todo Allow-List would be cool to support
107         'allow': None,
108         # A group of contacts who may not send you messages
109         # @todo Deny-List would be cool to support
110         'deny': None,
111         # On protocols where the user's contacts are stored, this contact list
112         # contains all stored contacts regardless of subscription status.
113         'stored': AllContactsListChannel,
114 }
115
116
117 _SUPPORTED_LISTS = frozenset(
118         name
119         for name in _LIST_TO_FACTORY.iterkeys()
120         if name is not None
121 )
122
123
124 def create_contact_list_channel(connection, manager, props, h):
125         factory = _LIST_TO_FACTORY.get(h.get_name(), None)
126         if factory is None:
127                 raise telepathy.errors.NotCapable("Unsuported type %s" % h.get_name())
128         return factory(connection, manager, props, h)
129
130
131 def get_spported_lists():
132         return _SUPPORTED_LISTS