minor cleanup in hermes.py
[hermes] / package / src / org / maemo / hermes / engine / hermes.py
1 from org.maemo.hermes.engine.friend import Friend
2 from org.maemo.hermes.engine.contact import Contact
3 import evolution
4
5 class Hermes:
6     """Encapsulate the process of syncing online friends' information with the
7        Evolution contacts' database. This should be used as follows:
8        
9          * Initialise, passing in a GUI callback.
10          * Call Syncjob.
11          * Retrieve information on changes effected.
12          * Call update_contact to enact manual mapping.
13          
14        Copyright (c) Andrew Flegg <andrew@bleb.org> 2010.
15        Released under the Artistic Licence."""
16
17     
18     # -----------------------------------------------------------------------
19     def __init__(self, services, gui_progress=None):
20         """Constructor. Passed a list of services, and a            
21            method which will be invoked with three arguments:
22                 str    Name of current step
23                 int    Current position
24                 int    Maximum value of position."""
25
26         
27         # -- These fields are currently part of the API...
28         #
29         self.updated = []
30         self.matched = []
31         self.unmatched = []
32         self.friends = {}
33         self.addresses = None
34         
35         # -- Other initialisation...
36         #
37         self._services = services
38         self._progress = gui_progress or (lambda msg, i, j: None)
39     
40     
41     # -----------------------------------------------------------------------
42     def run(self, overwrite_existing_fields=False):
43         self._progress("Reading contacts...", 1, 10000)
44         
45         contacts = []
46         self.addresses = evolution.ebook.open_addressbook('default')
47         for contact in self.addresses.get_all_contacts():
48             contacts.append(Contact(self.addresses, contact))
49
50         # work out progress bar info
51         total_contacts = len(contacts) * len(self._services)
52         total_ticks    = 6 * total_contacts # Number of distinct loops below
53
54         # warm up
55         current_tick = 1
56         for service in self._services:
57             print "pre-process:", service.get_id()
58             for contact in contacts:
59                 self._progress("Pre-processing contacts...", current_tick, total_ticks)
60                 current_tick += 1
61                 service.pre_process_contact(contact)
62                 
63         # fetch data
64         for service in self._services:
65             print "process_friends:", service.get_id()
66             self._progress("Reading friends...", current_tick, total_ticks)
67             current_tick += len(contacts)
68             service.process_friends()
69         
70         # combine results into one friend
71         for contact in contacts:
72             result = Friend()
73             for service in self._services:
74                 print "process_contact:", service.get_id()
75                 self._progress("Processing contacts...", current_tick, total_ticks)
76                 current_tick += 1
77                 friend = service.process_contact(contact)
78                 if friend:
79                     contact.add_mapping(service.get_id())
80                     friend.update_friend(result)
81             
82             if result.get_name() is not None:
83                 self.update_contact(result, overwrite_existing_fields)
84             else:
85                 self.unmatched.append(contact)
86             
87         # give services a chance to create new contacts
88         for service in self._services:
89             print "create_contacts:", service.get_id()
90             to_create = service.get_friends_to_create_contacts_for()
91             tick_increment = len(contacts) / (len(to_create) or 1)
92             print tick_increment, to_create
93             for friend in to_create:
94                 self._progress("Creating contacts...", current_tick, total_ticks)
95                 current_tick += tick_increment
96                 self.create_contact_from_friend(friend)
97                 
98         # finalisation
99         for service in self._services:
100             print "finalize:", service.get_id()
101             self._progress("Finalising...", current_tick, total_ticks)
102             current_tick += len(contacts)
103             service.finalise(self.updated, overwrite_existing_fields)
104             
105         # commit changes
106         tick_increment = total_contacts / (len(self.updated) or 1)
107         print tick_increment, self.updated
108         for contact in self.updated:
109             print "committing changes to:", contact.get_name(), contact
110             self._progress("Saving changes...", current_tick, total_ticks)
111             current_tick += tick_increment
112             self.addresses.commit_contact(contact.get_econtact())
113             
114         self._progress('Finished', 1, -1)
115         
116
117     # -----------------------------------------------------------------------
118     def update_contact(self, contact, friend, resync=False):
119         """Update the given contact with information from the given friend."""
120         
121         print "updating contact ", contact, " with friend ", friend
122         self.updated.append(contact)
123         self.matched.append(contact)
124         if friend.get_source() is not None:
125             contact.add_mapping(friend.get_source())
126
127
128     # -----------------------------------------------------------------------
129     def create_contact_from_friend(self, friend):
130         econtact = evolution.ebook.EContact()
131         econtact.props.full_name = friend['name']
132         econtact.props.given_name = friend['first_name']
133         econtact.props.family_name = friend['last_name']
134         contact = Contact(self.addresses, econtact)
135                 
136         self.addresses.add_contact(contact.get_econtact())
137         self.update_contact(contact, friend)
138         
139         print "Created [%s]" % (contact.get_name())