Menu

[r1537]: / trunk / GoogleContactsSync / OutlookPropertiesUtils.cs  Maximize  Restore  History

Download this file

400 lines (337 with data), 14.5 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
391
392
393
394
395
396
397
398
using Serilog;
using System;
using System.Runtime.InteropServices;
using Outlook = Microsoft.Office.Interop.Outlook;
namespace GoContactSyncMod
{
class OutlookPropertiesUtils
{
public static string GetKey()
{
return "gos:oid:" + Synchronizer.SyncProfile;
}
internal static bool IsSameEmail(string e1, string e2)
{
var p1 = e1.ToLowerInvariant().Trim().Replace("@googlemail.", "@gmail.");
var p2 = e2.ToLowerInvariant().Trim().Replace("@googlemail.", "@gmail.");
if (p1.Equals(p2))
{
return true;
}
if (!p1.EndsWith("@gmail.com"))
{
return false;
}
if (!p2.EndsWith("@gmail.com"))
{
return false;
}
p1 = p1.Substring(0, p1.Length - 10).Replace(".", "");
p2 = p2.Substring(0, p2.Length - 10).Replace(".", "");
if (p1.Equals(p2))
{
return true;
}
var i1 = p1.IndexOf('+');
var i2 = p2.IndexOf('+');
if ((i1 < 0) && (i2 < 0))
{
return false;
}
if (i1 > 0)
{
p1 = p1.Substring(0, i1);
}
if (i2 > 0)
{
p2 = p2.Substring(0, i2);
}
if (p1.Equals(p2))
{
return true;
}
return false;
}
public static Outlook.UserProperty FindAndUnifySimilarProperty(Outlook.UserProperties up, string name, object fmt)
{
Outlook.UserProperty ret = null;
var found = false;
var t = Outlook.OlUserPropertyType.olText;
dynamic v = null;
var prefix_length = Synchronizer.OutlookUserPropertyPrefixTemplate.Length;
var name_email = name.Substring(prefix_length, name.Length - prefix_length - 3);
var n1 = name.Substring(name.Length - 3);
var n2 = name.Substring(0, prefix_length);
//TODO (obelix30) remove count use
//[5/14/2020 9:53:17 AM | Debug] Exception: The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)
//[5/14/2020 9:53:17 AM | Debug] Source: GOContactSync
//[5 / 14 / 2020 9:53:17 AM | Debug] Stack Trace: at Microsoft.Office.Interop.Outlook.UserProperties.get_Count()
//at GoContactSyncMod.OutlookPropertiesUtils.FindAndUnifySimilarProperty(UserProperties up, String name) in .\OutlookPropertiesUtils.cs:line 74
for (var i = up.Count; i > 0; i--)
{
Outlook.UserProperty p = null;
try
{
p = up[i];
if (p != null && p.Name != null && p.Name.Length - prefix_length - 3 > 0)
{
if (
string.Equals(p.Name.Substring(p.Name.Length - 3), n1, StringComparison.OrdinalIgnoreCase) &&
string.Equals(p.Name.Substring(0, prefix_length), n2, StringComparison.OrdinalIgnoreCase) &&
IsSameEmail(p.Name.Substring(prefix_length, p.Name.Length - prefix_length - 3), name_email))
{
if (p.Name.Substring(prefix_length, p.Name.Length - prefix_length - 3) != name_email)
{
if (!found)
{
found = true;
t = p.Type;
v = p.Value;
}
up.Remove(i);
}
}
}
}
finally
{
if (p != null)
{
Marshal.ReleaseComObject(p);
}
}
}
if (found)
{
ret = up.Add(name, t, false, fmt);
ret.Value = v;
return ret;
}
return ret;
}
internal static void RemoveOutlookPropertyIgnoreCase(Outlook.UserProperties up, string name)
{
var prefix_length = Synchronizer.OutlookUserPropertyPrefixTemplate.Length;
var name_email = name.Substring(prefix_length, name.Length - prefix_length - 3);
var n1 = name.Substring(name.Length - 3);
var n2 = name.Substring(0, prefix_length);
for (var i = up.Count; i > 0; i--)
{
Outlook.UserProperty p = null;
try
{
p = up[i];
if (p != null && p.Name != null && p.Name.Length - prefix_length - 3 > 0)
{
if (
string.Equals(p.Name.Substring(p.Name.Length - 3), n1, StringComparison.OrdinalIgnoreCase) &&
string.Equals(p.Name.Substring(0, prefix_length), n2, StringComparison.OrdinalIgnoreCase) &&
IsSameEmail(p.Name.Substring(prefix_length, p.Name.Length - prefix_length - 3), name_email)
)
{
up.Remove(i);
}
}
}
finally
{
if (p != null)
{
Marshal.ReleaseComObject(p);
}
}
}
}
public static bool SetOutlookGoogleId(Outlook.UserProperties userProps, string gid, string etag)
{
var changed = false;
Outlook.UserProperty p1 = null;
Outlook.UserProperty p2 = null;
Outlook.UserProperty p3 = null;
try
{
p1 = userProps[Synchronizer.OutlookPropertyNameId];
//check if outlook entry already has google id property.
if (p1 == null)
{
//accessing user properties by using [] is case sensitive, but later calling up.Add fails to add new property
//as it is case insensitive. As workaround first remove all properties that are equal if we ignore the case
RemoveOutlookPropertyIgnoreCase(userProps, Synchronizer.OutlookPropertyNameId);
p1 = userProps.Add(Synchronizer.OutlookPropertyNameId, Outlook.OlUserPropertyType.olText, false, Outlook.OlFormatText.olFormatTextText);
changed = true;
}
if (p1.Value != gid)
{
p1.Value = gid;
changed = true;
}
p2 = userProps[Synchronizer.OutlookPropertyNameSynced];
if (p2 == null)
{
//accessing user properties by using [] is case sensitive, but later calling up.Add fails to add new propery
//as it is case insensitive. As workaround first remove all properties that are equal if we ignore the case
RemoveOutlookPropertyIgnoreCase(userProps, Synchronizer.OutlookPropertyNameSynced);
p2 = userProps.Add(Synchronizer.OutlookPropertyNameSynced, Outlook.OlUserPropertyType.olDateTime, false, Outlook.OlFormatDateTime.olFormatDateTimeBestFit);
changed = true;
}
p2.Value = DateTime.Now;
p3 = userProps[Synchronizer.OutlookPropertyNameEtag];
//check if outlook entry already has google id property.
if (p3 == null)
{
//accessing user properties by using [] is case sensitive, but later calling up.Add fails to add new property
//as it is case insensitive. As workaround first remove all properties that are equal if we ignore the case
RemoveOutlookPropertyIgnoreCase(userProps, Synchronizer.OutlookPropertyNameEtag);
p3 = userProps.Add(Synchronizer.OutlookPropertyNameEtag, Outlook.OlUserPropertyType.olText, false, Outlook.OlFormatText.olFormatTextText);
changed = true;
}
if (p3.Value != etag)
{
p3.Value = etag;
changed = true;
}
}
catch (Exception ex)
{
Log.Debug(ex, "Exception");
Log.Debug("Name: " + Synchronizer.OutlookPropertyNameId);
Log.Debug("Value: " + gid);
Log.Debug("Name: " + Synchronizer.OutlookPropertyNameSynced);
Log.Debug("Value: " + DateTime.Now);
Log.Debug("Name: " + Synchronizer.OutlookPropertyNameEtag);
Log.Debug("Value: " + etag);
throw;
}
finally
{
if (p1 != null)
{
Marshal.ReleaseComObject(p1);
}
if (p2 != null)
{
Marshal.ReleaseComObject(p2);
}
if (p3 != null)
{
Marshal.ReleaseComObject(p3);
}
}
return changed;
}
public static DateTime? GetOutlookLastSync(Outlook.UserProperties userProps)
{
Outlook.UserProperty p = null;
try
{
p = userProps[Synchronizer.OutlookPropertyNameSynced];
if (p == null)
{
//accessing user properties by using [] is case sensitive, but later calling up.Add fails to add new property
//as it is case insensitive. As workaround first remove all properties that are equal if we ignore the case
p = FindAndUnifySimilarProperty(userProps, Synchronizer.OutlookPropertyNameSynced, Outlook.OlFormatDateTime.olFormatDateTimeBestFit);
}
if (p != null)
{
var s = Convert.ToString(p.Value);
if (!string.IsNullOrWhiteSpace(s))
{
if (DateTime.TryParse(s, out DateTime lastSync))
{
if (lastSync == null)
lastSync = DateTime.MinValue;
if (lastSync.Kind == DateTimeKind.Utc)
lastSync = TimeZoneInfo.ConvertTimeFromUtc(lastSync, TimeZoneInfo.Local);
return lastSync;
}
}
}
}
finally
{
if (p != null)
{
Marshal.ReleaseComObject(p);
}
}
return (DateTime?)null;
}
public static string GetOutlookLastEtag(Outlook.UserProperties userProps)
{
Outlook.UserProperty p = null;
try
{
p = userProps[Synchronizer.OutlookPropertyNameEtag];
if (p == null)
{
//accessing user properties by using [] is case sensitive, but later calling up.Add fails to add new property
//as it is case insensitive. As workaround first remove all properties that are equal if we ignore the case
p = FindAndUnifySimilarProperty(userProps, Synchronizer.OutlookPropertyNameEtag, Outlook.OlFormatText.olFormatTextText);
}
if (p != null)
{
var s = Convert.ToString(p.Value);
return s;
}
}
finally
{
if (p != null)
{
Marshal.ReleaseComObject(p);
}
}
return string.Empty;
}
public static T GetOutlookPropertyValue<T>(string key, Outlook.UserProperties up, object fmt)
{
T val = default;
Outlook.UserProperty p = null;
try
{
p = up[key];
if (p == null)
{
//accessing user properties by using [] is case sensitive, but later calling up.Add fails to add new property
//as it is case insensitive. As workaround first remove all properties that are equal if we ignore the case
p = FindAndUnifySimilarProperty(up, key, fmt);
}
if (p != null)
{
val = (T)p.Value;
}
}
finally
{
if (p != null)
{
Marshal.ReleaseComObject(p);
}
}
return val;
}
public static void ResetOutlookGoogleId(Outlook.UserProperties up)
{
for (var i = up.Count; i > 0; i--)
{
Outlook.UserProperty p = null;
try
{
p = up[i];
if (p.Name == Synchronizer.OutlookPropertyNameId || p.Name == Synchronizer.OutlookPropertyNameSynced || p.Name == Synchronizer.OutlookPropertyNameEtag)
{
up.Remove(i);
}
}
finally
{
if (p != null)
{
Marshal.ReleaseComObject(p);
}
}
}
}
}
}
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.