forked from andyedinborough/aenetmail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HeaderCollection.cs
174 lines (150 loc) · 6.11 KB
/
HeaderCollection.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Mail;
using System.Text.RegularExpressions;
namespace AE.Net.Mail {
public class SafeDictionary<KT, VT> : Dictionary<KT, VT> {
public SafeDictionary() { }
public SafeDictionary(IEqualityComparer<KT> comparer) : base(comparer) { }
public new VT this[KT key] {
get {
return this.Get(key);
}
set {
this.Set(key, value);
}
}
}
public struct HeaderValue {
private string _RawValue;
private SafeDictionary<string, string> _Values;
public HeaderValue(string value)
: this() {
_Values = new SafeDictionary<string, string>(StringComparer.OrdinalIgnoreCase);
_RawValue = (value ?? (value = string.Empty));
_Values[string.Empty] = RawValue;
var semicolon = value.IndexOf(';');
if (semicolon > 0) {
_Values[string.Empty] = value.Substring(0, semicolon).Trim();
value = value.Substring(semicolon).Trim();
ParseValues(_Values, value);
}
}
public string Value { get { return this[string.Empty] ?? string.Empty; } }
public string RawValue { get { return _RawValue ?? string.Empty; } }
public string this[string name] {
get { return _Values.Get(name, string.Empty); }
}
public static void ParseValues(IDictionary<string, string> result, string header) {
while (header.Length > 0) {
var eq = header.IndexOf('=');
if (eq < 0) eq = header.Length;
var name = header.Substring(0, eq).Trim().Trim(new[] { ';', ',' }).Trim();
var value = header = header.Substring(Math.Min(header.Length, eq + 1)).Trim();
if (value.StartsWith("\"")) {
ProcessValue(1, ref header, ref value, '"');
} else if (value.StartsWith("'")) {
ProcessValue(1, ref header, ref value, '\'');
} else {
ProcessValue(0, ref header, ref value, ' ', ',', ';');
}
result.Set(name, value);
}
}
private static void ProcessValue(int skip, ref string header, ref string value, params char[] lookFor) {
var quote = value.IndexOfAny(lookFor, skip);
if (quote < 0) quote = value.Length;
header = header.Substring(Math.Min(quote + 1, header.Length));
value = value.Substring(skip, quote - skip);
}
public override string ToString() {
var props = _Values.Where(x => !string.IsNullOrEmpty(x.Key)).Select(x => x.Key + "=" + x.Value);
return Value + (props.Any() ? ("; " + string.Join(", ", props)) : null);
}
}
public class HeaderCollection : SafeDictionary<string, HeaderValue> {
public HeaderCollection() : base(StringComparer.OrdinalIgnoreCase) { }
public string GetBoundary() {
return this["Content-Type"]["boundary"];
}
private static Regex[] rxDates = new[]{
@"\d{1,2}\s+[a-z]{3}\s+\d{2,4}\s+\d{1,2}\:\d{2}\:\d{1,2}\s+[\+\-\d\:]*",
@"\d{4}\-\d{1,2}-\d{1,2}\s+\d{1,2}\:\d{2}(?:\:\d{2})?(?:\s+[\+\-\d:]+)?",
}.Select(x => new Regex(x, RegexOptions.Compiled | RegexOptions.IgnoreCase)).ToArray();
public DateTime GetDate() {
var value = this["Date"].RawValue.ToNullDate();
if (value == null) {
foreach (var rx in rxDates) {
var match = rx.Matches(this["Received"].RawValue ?? string.Empty)
.Cast<Match>().LastOrDefault();
if (match != null) {
value = match.Value.ToNullDate();
if (value != null) {
break;
}
}
}
}
//written this way so a break can be set on the null condition
if (value == null) return DateTime.MinValue;
return value.Value;
}
public T GetEnum<T>(string name) where T : struct, IConvertible {
var value = this[name].RawValue;
if (string.IsNullOrEmpty(value)) return default(T);
var values = System.Enum.GetValues(typeof(T)).Cast<T>().ToArray();
return values.FirstOrDefault(x => x.ToString().Equals(value, StringComparison.OrdinalIgnoreCase));
}
public MailAddress[] GetAddresses(string header) {
string values = this[header].RawValue.Trim();
List<MailAddress> addrs = new List<MailAddress>();
while (true) {
int semicolon = values.IndexOf(';');
int comma = values.IndexOf(',');
if (comma < semicolon || semicolon == -1) semicolon = comma;
int bracket = values.IndexOf('>');
string temp = null;
if (semicolon == -1 && bracket == -1) {
if (values.Length > 0) addrs.Add(values.ToEmailAddress());
return addrs.Where(x => x != null).ToArray();
} else {
if (bracket > -1 && (semicolon == -1 || bracket < semicolon)) {
temp = values.Substring(0, bracket + 1);
values = values.Substring(temp.Length);
} else if (semicolon > -1 && (bracket == -1 || semicolon < bracket)) {
temp = values.Substring(0, semicolon);
values = values.Substring(semicolon + 1);
}
if (temp.Length > 0)
addrs.Add(temp.Trim().ToEmailAddress());
values = values.Trim();
}
}
}
public static HeaderCollection Parse(string headers) {
headers = Utilities.DecodeWords(headers);
var temp = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
var lines = headers.Split(new char[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries);
int i;
string key = null, value;
foreach (var line in lines) {
if (key != null && (line[0] == '\t' || line[0] == ' ')) {
temp[key] += line.Trim();
} else {
i = line.IndexOf(':');
if (i > -1) {
key = line.Substring(0, i).Trim();
value = line.Substring(i + 1).Trim();
temp.Set(key, value);
}
}
}
var result = new HeaderCollection();
foreach (var item in temp) {
result.Add(item.Key, new HeaderValue(item.Value));
}
return result;
}
}
}