Menu

[r404]: / trunk / GoogleContactsSync / ConflictResolver.cs  Maximize  Restore  History

Download this file

391 lines (306 with data), 15.0 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
using System;
using System.Collections.Generic;
using System.Text;
using Google.Contacts;
using Google.Documents;
using System.Reflection;
using Google.GData.Extensions;
using Google.GData.Calendar;
namespace GoContactSyncMod
{
class ConflictResolver : IConflictResolver
{
private ConflictResolverForm _form;
public ConflictResolver()
{
_form = new ConflictResolverForm();
}
#region IConflictResolver Members
public ConflictResolution Resolve(ContactMatch match, bool isNewMatch)
{
string name = match.ToString();
if (isNewMatch)
{
_form.messageLabel.Text =
"This is the first time these Outlook and Google Contacts \"" + name +
"\" are synced. Choose which you would like to keep.";
_form.skip.Text = "Keep both";
}
else
{
_form.messageLabel.Text =
"Both the Outlook Contact and the Google Contact \"" + name +
"\" have been changed. Choose which you would like to keep.";
}
_form.OutlookItemTextBox.Text = string.Empty;
_form.GoogleItemTextBox.Text = string.Empty;
if (match.OutlookContact != null)
{
Microsoft.Office.Interop.Outlook.ContactItem item = match.OutlookContact.GetOriginalItemFromOutlook();
try
{
_form.OutlookItemTextBox.Text = ContactMatch.GetSummary(item);
}
finally
{
if (item != null)
{
System.Runtime.InteropServices.Marshal.ReleaseComObject(item);
item = null;
}
}
}
if (match.GoogleContact != null)
_form.GoogleItemTextBox.Text = ContactMatch.GetSummary(match.GoogleContact);
return Resolve();
}
public ConflictResolution ResolveDuplicate(OutlookContactInfo outlookContact, List<Contact> googleContacts, out Contact googleContact)
{
string name = ContactMatch.GetName(outlookContact);
_form.messageLabel.Text =
"There are multiple Google Contacts (" + googleContacts.Count + ") matching unique properties for Outlook Contact \"" + name +
"\". Please choose from the combobox below the Google Contact you would like to match with Outlook and if you want to keep the Google or Outlook properties of the selected contact.";
_form.OutlookItemTextBox.Text = string.Empty;
_form.GoogleItemTextBox.Text = string.Empty;
Microsoft.Office.Interop.Outlook.ContactItem item = outlookContact.GetOriginalItemFromOutlook();
try
{
_form.OutlookItemTextBox.Text = ContactMatch.GetSummary(item);
}
finally
{
if (item != null)
{
System.Runtime.InteropServices.Marshal.ReleaseComObject(item);
item = null;
}
}
_form.GoogleComboBox.DataSource = googleContacts;
_form.GoogleComboBox.Visible = true;
_form.AllCheckBox.Visible = false;
_form.skip.Text = "Keep both";
ConflictResolution res = Resolve();
googleContact = _form.GoogleComboBox.SelectedItem as Contact;
return res;
}
public DeleteResolution ResolveDelete(OutlookContactInfo outlookContact)
{
string name = ContactMatch.GetName(outlookContact);
_form.Text = "Google Contact deleted";
_form.messageLabel.Text =
"Google Contact \"" + name +
"\" doesn't exist anymore. Do you want to delete it also on Outlook side?";
_form.OutlookItemTextBox.Text = string.Empty;
_form.GoogleItemTextBox.Text = string.Empty;
Microsoft.Office.Interop.Outlook.ContactItem item = outlookContact.GetOriginalItemFromOutlook();
try
{
_form.OutlookItemTextBox.Text = ContactMatch.GetSummary(item);
}
finally
{
if (item != null)
{
System.Runtime.InteropServices.Marshal.ReleaseComObject(item);
item = null;
}
}
_form.keepOutlook.Text = "Keep Outlook";
_form.keepGoogle.Text = "Delete Outlook";
_form.skip.Enabled = false;
return ResolveDeletedGoogle();
}
public DeleteResolution ResolveDelete(Contact googleContact)
{
string name = ContactMatch.GetName(googleContact);
_form.Text = "Outlook Contact deleted";
_form.messageLabel.Text =
"Outlook Contact \"" + name +
"\" doesn't exist aynmore. Do you want to delete it also on Google side?";
_form.OutlookItemTextBox.Text = string.Empty;
_form.GoogleItemTextBox.Text = string.Empty;
_form.GoogleItemTextBox.Text = ContactMatch.GetSummary(googleContact);
_form.keepOutlook.Text = "Keep Google";
_form.keepGoogle.Text = "Delete Google";
_form.skip.Enabled = false;
return ResolveDeletedOutlook();
}
private ConflictResolution Resolve()
{
switch (SettingsForm.Instance.ShowConflictDialog(_form))
{
case System.Windows.Forms.DialogResult.Ignore:
// skip
return _form.AllCheckBox.Checked ? ConflictResolution.SkipAlways : ConflictResolution.Skip;
case System.Windows.Forms.DialogResult.No:
// google wins
return _form.AllCheckBox.Checked ? ConflictResolution.GoogleWinsAlways : ConflictResolution.GoogleWins;
case System.Windows.Forms.DialogResult.Yes:
// outlook wins
return _form.AllCheckBox.Checked ? ConflictResolution.OutlookWinsAlways : ConflictResolution.OutlookWins;
default:
return ConflictResolution.Cancel;
}
}
private DeleteResolution ResolveDeletedOutlook()
{
switch (SettingsForm.Instance.ShowConflictDialog(_form))
{
case System.Windows.Forms.DialogResult.No:
// google wins
return _form.AllCheckBox.Checked ? DeleteResolution.DeleteGoogleAlways : DeleteResolution.DeleteGoogle;
case System.Windows.Forms.DialogResult.Yes:
// outlook wins
return _form.AllCheckBox.Checked ? DeleteResolution.KeepGoogleAlways : DeleteResolution.KeepGoogle;
default:
return DeleteResolution.Cancel;
}
}
private DeleteResolution ResolveDeletedGoogle()
{
switch (SettingsForm.Instance.ShowConflictDialog(_form))
{
case System.Windows.Forms.DialogResult.No:
// google wins
return _form.AllCheckBox.Checked ? DeleteResolution.DeleteOutlookAlways : DeleteResolution.DeleteOutlook;
case System.Windows.Forms.DialogResult.Yes:
// outlook wins
return _form.AllCheckBox.Checked ? DeleteResolution.KeepOutlookAlways : DeleteResolution.KeepOutlook;
default:
return DeleteResolution.Cancel;
}
}
//private string GetPropertyInfos(object myObject)
//{
// // get all public static properties of OutlookItem
// PropertyInfo[] propertyInfos;
// propertyInfos = myObject.GetType().GetProperties();
// // sort properties by name
// Array.Sort(propertyInfos,
// delegate(PropertyInfo propertyInfo1, PropertyInfo propertyInfo2)
// { return propertyInfo1.Name.CompareTo(propertyInfo2.Name); });
// string ret = String.Empty;
// // write property names
// foreach (PropertyInfo propertyInfo in propertyInfos)
// {
// object value = propertyInfo.GetValue(myObject, null);
// if (value != null && !(value is string))
// ret += propertyInfo.Name + ": " + value + "\r\n";
// }
// return ret;
//}
public ConflictResolution Resolve(Microsoft.Office.Interop.Outlook.NoteItem outlookNote, Document googleNote, Syncronizer sync, bool isNewMatch)
{
string name = string.Empty;
_form.OutlookItemTextBox.Text = string.Empty;
_form.GoogleItemTextBox.Text = string.Empty;
if (outlookNote != null)
{
name = outlookNote.Subject;
_form.OutlookItemTextBox.Text = outlookNote.Body;
}
if (googleNote != null)
{
name = googleNote.Title;
_form.GoogleItemTextBox.Text = NotePropertiesUtils.GetBody(sync, googleNote);
}
if (isNewMatch)
{
_form.messageLabel.Text =
"This is the first time these Outlook and Google notes \"" + name +
"\" are synced. Choose which you would like to keep.";
_form.skip.Text = "Keep both";
}
else
{
_form.messageLabel.Text =
"Both the Outlook Note and the Google Note \"" + name +
"\" have been changed. Choose which you would like to keep.";
}
return Resolve();
}
public DeleteResolution ResolveDelete(Microsoft.Office.Interop.Outlook.NoteItem outlookNote)
{
_form.Text = "Google note deleted";
_form.messageLabel.Text =
"Google note \"" + outlookNote.Subject +
"\" doesn't exist aynmore. Do you want to delete it also on Outlook side?";
_form.OutlookItemTextBox.Text = outlookNote.Body;
_form.GoogleItemTextBox.Text = string.Empty;
_form.keepOutlook.Text = "Keep Outlook";
_form.keepGoogle.Text = "Delete Outlook";
_form.skip.Enabled = false;
return ResolveDeletedGoogle();
}
public DeleteResolution ResolveDelete(Document googleNote, Syncronizer sync)
{
_form.Text = "Outlook note deleted";
_form.messageLabel.Text =
"Outlook note \"" + googleNote.Title +
"\" doesn't exist aynmore. Do you want to delete it also on Google side?";
_form.OutlookItemTextBox.Text = string.Empty;
_form.GoogleItemTextBox.Text = NotePropertiesUtils.GetBody(sync, googleNote);
_form.keepOutlook.Text = "Keep Google";
_form.keepGoogle.Text = "Delete Google";
_form.skip.Enabled = false;
return ResolveDeletedOutlook();
}
public ConflictResolution Resolve(Microsoft.Office.Interop.Outlook.AppointmentItem outlookAppointment, EventEntry googleAppointment, Syncronizer sync, bool isNewMatch)
{
string name = string.Empty;
_form.OutlookItemTextBox.Text = string.Empty;
_form.GoogleItemTextBox.Text = string.Empty;
if (outlookAppointment != null)
{
name = outlookAppointment.Subject + " - " + outlookAppointment.Start;
_form.OutlookItemTextBox.Text += outlookAppointment.Body;
}
if (googleAppointment != null)
{
name = googleAppointment.Title.Text + " - " + Syncronizer.GetTime(googleAppointment);
_form.GoogleItemTextBox.Text += googleAppointment.Content.Content;
}
if (isNewMatch)
{
_form.messageLabel.Text =
"This is the first time these appointments \"" + name +
"\" are synced. Choose which you would like to keep.";
_form.skip.Text = "Keep both";
}
else
{
_form.messageLabel.Text =
"Both the Outlook and Google Appointment \"" + name +
"\" have been changed. Choose which you would like to keep.";
}
return Resolve();
}
public DeleteResolution ResolveDelete(Microsoft.Office.Interop.Outlook.AppointmentItem outlookAppointment)
{
_form.Text = "Google appointment deleted";
_form.messageLabel.Text =
"Google appointment \"" + outlookAppointment.Subject + " - " + outlookAppointment.Start +
"\" doesn't exist aynmore. Do you want to delete it also on Outlook side?";
_form.GoogleItemTextBox.Text = String.Empty;
_form.OutlookItemTextBox.Text += outlookAppointment.Body;
_form.keepOutlook.Text = "Keep Outlook";
_form.keepGoogle.Text = "Delete Outlook";
_form.skip.Enabled = false;
return ResolveDeletedGoogle();
}
public DeleteResolution ResolveDelete(EventEntry googleAppointment)
{
_form.Text = "Outlook appointment deleted";
_form.messageLabel.Text =
"Outlook appointment \"" + googleAppointment.Title.Text + " - " + Syncronizer.GetTime(googleAppointment) +
"\" doesn't exist aynmore. Do you want to delete it also on Google side?";
_form.OutlookItemTextBox.Text = String.Empty;
_form.GoogleItemTextBox.Text += googleAppointment.Content.Content;
_form.keepOutlook.Text = "Keep Google";
_form.keepGoogle.Text = "Delete Google";
_form.skip.Enabled = false;
return ResolveDeletedOutlook();
}
#endregion
}
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.