Onward, ever onward
[theonering] / src / connection.py
1 import weakref
2 import logging
3
4 import telepathy
5
6 import constants
7 import gv_backend
8 import handle
9 import channel_manager
10 import simple_presence
11
12
13 class TheOneRingConnection(telepathy.server.Connection, simple_presence.SimplePresenceMixin):
14
15         MANDATORY_PARAMETERS = {
16                 'account' : 's',
17                 'password' : 's'
18         }
19         OPTIONAL_PARAMETERS = {
20         }
21         PARAMETER_DEFAULTS = {
22         }
23
24         def __init__(self, manager, parameters):
25                 try:
26                         self.check_parameters(parameters)
27                         account = unicode(parameters['account'])
28
29                         telepathy.server.Connection.__init__(
30                                 self,
31                                 constants._telepathy_protocol_name_,
32                                 account,
33                                 constants._telepathy_implementation_name_
34                         )
35
36                         self._manager = weakref.proxy(manager)
37                         self._credentials = (
38                                 parameters['account'].encode('utf-8'),
39                                 parameters['password'].encode('utf-8'),
40                         )
41                         self._channelManager = channel_manager.ChannelManager(self)
42
43                         cookieFilePath = "%s/cookies.txt" % constants._data_path_
44                         self._backend = gv_backend.GVDialer(cookieFilePath)
45
46                         self.set_self_handle(handle.create_handle(self, 'connection'))
47
48                         logging.info("Connection to the account %s created" % account)
49                 except Exception, e:
50                         logging.exception("Failed to create Connection")
51                         raise
52
53         @property
54         def manager(self):
55                 return self._manager
56
57         @property
58         def gvoice_backend(self):
59                 return self._backend
60
61         @property
62         def username(self):
63                 self._credentials[0]
64
65         def handle(self, handleType, handleId):
66                 self.check_handle(handleType, handleId)
67                 return self._handles[handleType, handleId]
68
69         def Connect(self):
70                 """
71                 For org.freedesktop.telepathy.Connection
72                 """
73                 try:
74                         self._backend.login(*self._credentials)
75                         self.StatusChanged(
76                                 telepathy.CONNECTION_STATUS_CONNECTED,
77                                 telepathy.CONNECTION_STATUS_REASON_REQUESTED
78                         )
79                         logging.info("Connected")
80                 except Exception:
81                         self.StatusChanged(
82                                 telepathy.CONNECTION_STATUS_DISCONNECTED,
83                                 telepathy.CONNECTION_STATUS_REASON_AUTHENTICATION_FAILED
84                         )
85                         logging.exception("Connecting Failed")
86
87         def Disconnect(self):
88                 """
89                 For org.freedesktop.telepathy.Connection
90                 """
91                 try:
92                         self._backend.logout()
93                         logging.info("Disconnected")
94                 except Exception:
95                         logging.exception("Disconnecting Failed")
96
97         def RequestChannel(self, type, handleType, handleId, suppressHandler):
98                 """
99                 For org.freedesktop.telepathy.Connection
100
101                 @param type DBus interface name for base channel type
102                 @param handleId represents a contact, list, etc according to handleType
103
104                 @returns DBus object path for the channel created or retrieved
105                 """
106                 self.check_connected()
107
108                 channel = None
109                 channelManager = self._channelManager
110                 handle = self.handle(handleType, handleId)
111
112                 if type == telepathy.CHANNEL_TYPE_CONTACT_LIST:
113                         channel = channelManager.channel_for_list(handle, suppressHandler)
114                 elif type == telepathy.CHANNEL_TYPE_TEXT:
115                         if handleType != telepathy.HANDLE_TYPE_CONTACT:
116                                 raise telepathy.NotImplemented("Only Contacts are allowed")
117                         contact = handle.contact
118                         channel = channelManager.channel_for_text(handle, None, suppressHandler)
119                 else:
120                         raise telepathy.NotImplemented("unknown channel type %s" % type)
121
122                 return channel._object_path
123
124         def RequestHandles(self, handleType, names, sender):
125                 """
126                 For org.freedesktop.telepathy.Connection
127                 """
128                 self.check_connected()
129                 self.check_handleType(handleType)
130
131                 handles = []
132                 for name in names:
133                         name = name.encode('utf-8')
134                         if handleType == telepathy.HANDLE_TYPE_CONTACT:
135                                 h = self._create_contact_handle(name)
136                         elif handleType == telepathy.HANDLE_TYPE_LIST:
137                                 h = handle.create_handle(self, 'list', name)
138                         elif handleType == telepathy.HANDLE_TYPE_GROUP:
139                                 h = handle.create_handle(self, 'group', name)
140                         else:
141                                 raise telepathy.NotAvailable('Handle type unsupported %d' % handleType)
142                         handles.append(h.id)
143                         self.add_client_handle(handle, sender)
144                 return handles
145
146         def _create_contact_handle(self, name):
147                 requestedContactId, requestedContactName = handle.field_split(name)
148
149                 contacts = self._backend.get_contacts()
150                 contactsFound = [
151                         (contactId, contactName) for (contactId, contactName) in contacts
152                         if contactName == name
153                 ]
154
155                 if 0 < len(contactsFound):
156                         contactId, contactName = contactsFound[0]
157                         h = handle.create_handle(self, 'contact', contactId, contactName)
158                 else:
159                         h = handle.create_handle(self, 'contact', requestedContactId, requestedContactName)