forked from andyedinborough/aenetmail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Utilities.cs
452 lines (395 loc) · 13.9 KB
/
Utilities.cs
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Net.Mail;
using System.Text;
using System.Text.RegularExpressions;
namespace AE.Net.Mail {
internal static class Utilities {
internal static void TryDispose<T>(ref T obj) where T : class, IDisposable {
try {
if (obj != null)
obj.Dispose();
} catch (Exception) { }
obj = null;
}
internal static string NotEmpty(this string input, params string[] others) {
if (!string.IsNullOrEmpty(input))
return input;
foreach (var item in others) {
if (!string.IsNullOrEmpty(item)) {
return item;
}
}
return string.Empty;
}
internal static int ToInt(this string input) {
int result;
if (int.TryParse(input, out result)) {
return result;
} else {
return 0;
}
}
internal static DateTime? ToNullDate(this string input) {
DateTime result;
input = NormalizeDate(input);
if (DateTime.TryParse(input, out result)) {
return result;
} else {
return null;
}
}
private static Regex rxTimeZoneName = new Regex(@"\s+\([a-z]+\)$", RegexOptions.Compiled | RegexOptions.IgnoreCase); //Mon, 28 Feb 2005 19:26:34 -0500 (EST)
private static Regex rxTimeZoneColon = new Regex(@"\s+(\+|\-)(\d{1,2})\D(\d{2})$", RegexOptions.Compiled | RegexOptions.IgnoreCase); //Mon, 28 Feb 2005 19:26:34 -0500 (EST)
private static Regex rxTimeZoneMinutes = new Regex(@"([\+\-]?\d{1,2})(\d{2})$", RegexOptions.Compiled); //search can be strict because the format has already been normalized
private static Regex rxNegativeHours = new Regex(@"(?<=\s)\-(?=\d{1,2}\:)", RegexOptions.Compiled);
internal static string NormalizeDate(string value) {
value = rxTimeZoneName.Replace(value, string.Empty);
value = rxTimeZoneColon.Replace(value, match => " " + match.Groups[1].Value + match.Groups[2].Value.PadLeft(2, '0') + match.Groups[3].Value);
value = rxNegativeHours.Replace(value, string.Empty);
var minutes = rxTimeZoneMinutes.Match(value);
if (minutes.Groups[2].Value.ToInt() > 60) { //even if there's no match, the value = 0
value = value.Substring(0, minutes.Index) + minutes.Groups[1].Value + "00";
}
return value;
}
internal static string GetRFC2060Date(this DateTime date) {
CultureInfo enUsCulture = CultureInfo.GetCultureInfo("en-US");
return date.ToString("dd-MMM-yyyy hh:mm:ss zz", enUsCulture);
}
internal static string QuoteString(this string value) {
return "\"" + value
.Replace("\\", "\\\\")
.Replace("\r", "\\r")
.Replace("\n", "\\n")
.Replace("\"", "\\\"") + "\"";
}
internal static bool StartsWithWhiteSpace(this string line) {
if (string.IsNullOrEmpty(line))
return false;
var chr = line[0];
return chr == ' ' || chr == '\t' || chr == '\n' || chr == '\r';
}
private static Regex rxNewLines = new Regex(@"\=[\r\n]+", RegexOptions.Singleline | RegexOptions.Compiled);
private static Regex rxEscaped = new Regex(@"(\=[0-9A-F]{2}){1,2}", RegexOptions.Compiled);
internal static string DecodeQuotedPrintable(string value, Encoding encoding = null) {
if (encoding == null) {
encoding = System.Text.Encoding.UTF8;
}
if (value.IndexOf('_') > -1 && value.IndexOf(' ') == -1)
value = value.Replace('_', ' ');
value = rxNewLines.Replace(value, string.Empty);
var matches = rxEscaped.Matches(value);
foreach (var match in matches.Cast<Match>().Reverse()) {
int ascii;
try {
ascii = int.Parse(match.Value.Replace("=", string.Empty), System.Globalization.NumberStyles.HexNumber);
} catch (Exception ex) {
throw new Exception("Failed parsing \"" + match.Value + "\" as an integer", ex);
}
//http://stackoverflow.com/questions/1318933/c-sharp-int-to-byte
var result = BitConverter.GetBytes(ascii);
if (BitConverter.IsLittleEndian)
Array.Reverse(result);
value = value.Substring(0, match.Index)
+ encoding.GetString(result).Trim('\0')
+ value.Substring(match.Index + match.Length);
}
return value;
}
internal static string DecodeBase64(string data, Encoding encoding = null) {
if (!IsValidBase64String(data)) {
return data;
}
var bytes = Convert.FromBase64String(data);
return (encoding ?? System.Text.Encoding.UTF8).GetString(bytes);
}
#region OpenPOP.NET
internal static string DecodeWords(string encodedWords) {
if (string.IsNullOrEmpty(encodedWords))
return string.Empty;
string decodedWords = encodedWords;
// Notice that RFC2231 redefines the BNF to
// encoded-word := "=?" charset ["*" language] "?" encoded-text "?="
// but no usage of this BNF have been spotted yet. It is here to
// ease debugging if such a case is discovered.
// This is the regex that should fit the BNF
// RFC Says that NO WHITESPACE is allowed in this encoding, but there are examples
// where whitespace is there, and therefore this regex allows for such.
const string strRegEx = @"\=\?(?<Charset>\S+?)\?(?<Encoding>\w)\?(?<Content>.+?)\?\=";
// \w Matches any word character including underscore. Equivalent to "[A-Za-z0-9_]".
// \S Matches any nonwhite space character. Equivalent to "[^ \f\n\r\t\v]".
// +? non-gready equivalent to +
// (?<NAME>REGEX) is a named group with name NAME and regular expression REGEX
var matches = Regex.Matches(encodedWords, strRegEx);
foreach (Match match in matches) {
// If this match was not a success, we should not use it
if (!match.Success)
continue;
string fullMatchValue = match.Value;
string encodedText = match.Groups["Content"].Value;
string encoding = match.Groups["Encoding"].Value;
string charset = match.Groups["Charset"].Value;
// Get the encoding which corrosponds to the character set
Encoding charsetEncoding = ParseCharsetToEncoding(charset);
// Store decoded text here when done
string decodedText;
// Encoding may also be written in lowercase
switch (encoding.ToUpperInvariant()) {
// RFC:
// The "B" encoding is identical to the "BASE64"
// encoding defined by RFC 2045.
// http://tools.ietf.org/html/rfc2045#section-6.8
case "B":
decodedText = DecodeBase64(encodedText, charsetEncoding);
break;
// RFC:
// The "Q" encoding is similar to the "Quoted-Printable" content-
// transfer-encoding defined in RFC 2045.
// There are more details to this. Please check
// http://tools.ietf.org/html/rfc2047#section-4.2
//
case "Q":
decodedText = DecodeQuotedPrintable(encodedText, charsetEncoding);
break;
default:
throw new ArgumentException("The encoding " + encoding + " was not recognized");
}
// Repalce our encoded value with our decoded value
decodedWords = decodedWords.Replace(fullMatchValue, decodedText);
}
return decodedWords;
}
//http://www.opensourcejavaphp.net/csharp/openpopdotnet/HeaderFieldParser.cs.html
/// Parse a character set into an encoding.
/// </summary>
/// <param name="characterSet">The character set to parse</param>
/// <returns>An encoding which corresponds to the character set</returns>
/// <exception cref="ArgumentNullException">If <paramref name="characterSet"/> is <see langword="null"/></exception>
public static Encoding ParseCharsetToEncoding(string characterSet) {
if (string.IsNullOrEmpty(characterSet))
return null;
string charSetUpper = characterSet.ToUpperInvariant();
if (charSetUpper.Contains("WINDOWS") || charSetUpper.Contains("CP")) {
// It seems the character set contains an codepage value, which we should use to parse the encoding
charSetUpper = charSetUpper.Replace("CP", ""); // Remove cp
charSetUpper = charSetUpper.Replace("WINDOWS", ""); // Remove windows
charSetUpper = charSetUpper.Replace("-", ""); // Remove - which could be used as cp-1554
// Now we hope the only thing left in the characterSet is numbers.
int codepageNumber = int.Parse(charSetUpper, System.Globalization.CultureInfo.InvariantCulture);
return Encoding.GetEncoding(codepageNumber);
}
// It seems there is no codepage value in the characterSet. It must be a named encoding
return Encoding.GetEncoding(characterSet);
}
#endregion
#region IsValidBase64
//stolen from http://stackoverflow.com/questions/3355407/validate-string-is-base64-format-using-regex
private const char Base64Padding = '=';
private static readonly HashSet<char> Base64Characters = new HashSet<char>() {
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',
'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'
};
internal static bool IsValidBase64String(string param) {
if (param == null) {
// null string is not Base64
return false;
}
// replace optional CR and LF characters
param = param.Replace("\r", String.Empty).Replace("\n", String.Empty);
int lengthWPadding = param.Length;
if (lengthWPadding == 0 || (lengthWPadding % 4) != 0) {
// Base64 string should not be empty
// Base64 string length should be multiple of 4
return false;
}
// replace pad chacters
int lengthWOPadding;
param = param.TrimEnd(Base64Padding);
lengthWOPadding = param.Length;
if ((lengthWPadding - lengthWOPadding) > 2) {
// there should be no more than 2 pad characters
return false;
}
foreach (char c in param) {
if (!Base64Characters.Contains(c)) {
// string contains non-Base64 character
return false;
}
}
// nothing invalid found
return true;
}
#endregion
internal static VT Get<KT, VT>(this IDictionary<KT, VT> dictionary, KT key, VT defaultValue = default(VT)) {
if (dictionary == null)
return defaultValue;
VT value;
if (dictionary.TryGetValue(key, out value))
return value;
return defaultValue;
}
internal static void Set<KT, VT>(this IDictionary<KT, VT> dictionary, KT key, VT value) {
if (!dictionary.ContainsKey(key))
lock (dictionary)
if (!dictionary.ContainsKey(key)) {
dictionary.Add(key, value);
return;
}
dictionary[key] = value;
}
internal static void Fire<T>(this EventHandler<T> events, object sender, T args) where T : EventArgs {
if (events == null)
return;
events(sender, args);
}
internal static MailAddress ToEmailAddress(this string input) {
try {
return new MailAddress(input);
} catch (Exception) {
return null;
}
}
internal static bool Is(this string input, string other) {
return string.Equals(input, other, StringComparison.OrdinalIgnoreCase);
}
/*
private static Dictionary<string, string> _TimeZoneAbbreviations = @"
ACDT +10:30
ACST +09:30
ACT +08
ADT -03
AEDT +11
AEST +10
AFT +04:30
AKDT -08
AKST -09
AMST +05
AMT +04
ART -03
AWDT +09
AWST +08
AZOST -01
AZT +04
BDT +08
BIOT +06
BIT -12
BOT -04
BRT -03
BTT +06
CAT +02
CCT +06:30
CDT -05
CEDT +02
CEST +02
CET +01
CHADT +13:45
CHAST +12:45
CIST -08
CKT -10
CLST -03
CLT -04
COST -04
COT -05
CST -06
CT +08
CVT -01
CXT +07
CHST +10
DFT +01
EAST -06
EAT +03
EDT -04
EEDT +03
EEST +03
EET +02
EST -05
FJT +12
FKST -03
FKT -04
GALT -06
GET +04
GFT -03
GILT +12
GIT -09
GMT
GYT -04
HADT -09
HAST -10
HKT +08
HMT +05
HST -10
ICT +07
IDT +03
IRKT +08
IRST +03:30
JST +09
KRAT +07
KST +09
LHST +10:30
LINT +14
MAGT +11
MDT -06
MIT -09:30
MSD +04
MSK +03
MST -07
MUT +04
MYT +08
NDT -02:30
NFT +11:30
NPT +05:45
NST -03:30
NT -03:30
NZDT +13
NZST +12
OMST +06
PDT -07
PETT +12
PHOT +13
PKT +05
PST -08
RET +04
SAMT +04
SAST +02
SBT +11
SCT +04
SGT +08
SLT +05:30
TAHT -10
THA +07
UYST -02
UYT -03
VET -04:30
VLAT +10
WAT +01
WEDT +01
WEST +01
WET
WST +08
YAKT +09
YEKT +05"
.Trim().Split('\n').Select(line => line.Trim().Split(' ').Select(col => col.Trim()).Take(2).ToArray())
.Where(x => x.Length == 2).ToDictionary(x => x[0], x => x[1]);
internal static System.DateTime? ToNullDate(this string input, string format = null, DateTimeKind kind = DateTimeKind.Unspecified) {
if (string.IsNullOrEmpty(input)) return null;
if (input.Contains("T")) {
foreach (var x in _TimeZoneAbbreviations) {
input = input.Replace(x.Key, x.Value);
}
}
System.DateTime num;
if ((format != null && DateTime.TryParseExact(input, format, null, System.Globalization.DateTimeStyles.None, out num))
|| (System.DateTime.TryParse(input, out num))) {
return DateTime.SpecifyKind(num, kind == DateTimeKind.Unspecified && input.Contains('Z') ? DateTimeKind.Utc : kind);
} else {
return null;
}
}
*/
}
}