b20d2df9b7525974074baed169477dcc69056aaf
[gc-dialer] / src / null_backend.py
1 #!/usr/bin/python
2
3 """
4 DialCentral - Front end for Google's Grand Central service.
5 Copyright (C) 2008  Eric Warnke ericew AT gmail DOT com
6
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
11
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public
18 License along with this library; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
20 """
21
22
23 class NullDialer(object):
24
25         def __init__(self):
26                 pass
27
28         def is_authed(self, force = False):
29                 return False
30
31         def login(self, username, password):
32                 return self.is_authed()
33
34         def logout(self):
35                 self.clear_caches()
36
37         def dial(self, number):
38                 return True
39
40         def clear_caches(self):
41                 pass
42
43         def is_valid_syntax(self, number):
44                 """
45                 @returns If This number be called ( syntax validation only )
46                 """
47                 return False
48
49         def get_account_number(self):
50                 """
51                 @returns The grand central phone number
52                 """
53                 return ""
54
55         def set_sane_callback(self):
56                 pass
57
58         def get_callback_numbers(self):
59                 return {}
60
61         def set_callback_number(self, callbacknumber):
62                 return True
63
64         def get_callback_number(self):
65                 return ""
66
67         def get_recent(self):
68                 return ()
69
70         def get_addressbooks(self):
71                 return ()
72
73         def open_addressbook(self, bookId):
74                 return self
75
76         @staticmethod
77         def contact_source_short_name(contactId):
78                 return "ERROR"
79
80         @staticmethod
81         def factory_name():
82                 return "ERROR"
83
84         def get_contacts(self):
85                 return ()
86
87         def get_contact_details(self, contactId):
88                 return ()