-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDomainValidator.pas
More file actions
406 lines (378 loc) · 10.5 KB
/
DomainValidator.pas
File metadata and controls
406 lines (378 loc) · 10.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
399
400
401
402
403
404
405
406
(*
Copyright 2013 - Leonardo Herrera (leonardo.herrera@gmail.com)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*)
unit DomainValidator;
interface
uses RegularExpressions, Generics.Collections;
// Regular expression strings for hostnames (derived from RFC2396 and RFC 1123)
const
DOMAIN_LABEL_REGEX = '[[:alnum:]](?>[[:alnum:]-]*[[:alnum:]])*';
TOP_LABEL_REGEX = '[[:alnum:]]{2,}';
DOMAIN_NAME_REGEX = '^(?:' + DOMAIN_LABEL_REGEX + '\.)+' + '(' +
TOP_LABEL_REGEX + ')$';
type
TDomainValidator = class
private
allowLocal: boolean;
domainRegex, hostnameRegex: TRegEx;
function chompLeadingDot(str: String): String;
public
function isValid(domain: String): boolean;
function isValidTld(tld: String): boolean;
function isValidInfrastructureTld(iTld: String): boolean;
function isValidLocalTld(iTld: String): boolean;
function isValidGenericTld(gTld: String): boolean;
function isValidCountryCodeTld(ccTld: String): boolean;
constructor Create(allowLocal: boolean = false);
end;
var
INFRASTRUCTURE_TLD_LIST, GENERIC_TLD_LIST, COUNTRY_CODE_TLD_LIST,
LOCAL_TLD_LIST: TList<String>;
implementation
uses SysUtils, StrUtils;
{ TDomainValidator }
function TDomainValidator.chompLeadingDot(str: String): String;
begin
if AnsiStartsStr('.', str) then
Result := Copy(str, 1, Length(str) - 1)
else
Result := str;
end;
constructor TDomainValidator.Create(allowLocal: boolean);
begin
Self.allowLocal := allowLocal;
domainRegex := TRegEx.Create(DOMAIN_NAME_REGEX, [roCompiled]);
hostnameRegex := TRegEx.Create(DOMAIN_LABEL_REGEX, [roCompiled]);
end;
function TDomainValidator.isValid(domain: String): boolean;
var
Match: TMatch;
begin
Result := false;
Match := domainRegex.Match(domain);
if Match.Success and (Match.Groups.Count > 0) then
Result := isValidTld(Match.Groups[1].Value)
else
begin
if allowLocal then
Result := hostnameRegex.IsMatch(domain);
end;
end;
function TDomainValidator.isValidCountryCodeTld(ccTld: String): boolean;
begin
Result := COUNTRY_CODE_TLD_LIST.contains
(chompLeadingDot(AnsiLowerCase(ccTld)));
end;
function TDomainValidator.isValidGenericTld(gTld: String): boolean;
begin
Result := GENERIC_TLD_LIST.contains(chompLeadingDot(AnsiLowerCase(gTld)));
end;
function TDomainValidator.isValidInfrastructureTld(iTld: String): boolean;
begin
Result := INFRASTRUCTURE_TLD_LIST.contains
(chompLeadingDot(AnsiLowerCase(iTld)));
end;
function TDomainValidator.isValidLocalTld(iTld: String): boolean;
begin
Result := LOCAL_TLD_LIST.contains(chompLeadingDot(AnsiLowerCase(iTld)));
end;
function TDomainValidator.isValidTld(tld: String): boolean;
begin
if allowLocal and isValidLocalTld(tld) then
Result := True
else
Result := isValidInfrastructureTld(tld) or isValidGenericTld(tld) or
isValidCountryCodeTld(tld);
end;
initialization
INFRASTRUCTURE_TLD_LIST := TList<String>.Create;
INFRASTRUCTURE_TLD_LIST.AddRange(['arpa', // internet infrastructure
'root' // diagnostic marker for non-truncated root zone
]);
GENERIC_TLD_LIST := TList<String>.Create;
GENERIC_TLD_LIST.AddRange(['aero', // air transport industry
'asia', // Pan-Asia/Asia Pacific
'biz', // businesses
'cat', // Catalan linguistic/cultural community
'com', // commercial enterprises
'coop', // cooperative associations
'info', // informational sites
'jobs', // Human Resource managers
'mobi', // mobile products and services
'museum', // museums, surprisingly enough
'name', // individuals' sites
'net', // internet support infrastructure/business
'org', // noncommercial organizations
'pro', // credentialed professionals and entities
'tel', // contact data for businesses and individuals
'travel', // entities in the travel industry
'gov', // United States Government
'edu', // accredited postsecondary US education entities
'mil', // United States Military
'int' // organizations established by international treaty
]);
COUNTRY_CODE_TLD_LIST := TList<String>.Create;
COUNTRY_CODE_TLD_LIST.AddRange(['ac', // Ascension Island
'ad', // Andorra
'ae', // United Arab Emirates
'af', // Afghanistan
'ag', // Antigua and Barbuda
'ai', // Anguilla
'al', // Albania
'am', // Armenia
'an', // Netherlands Antilles
'ao', // Angola
'aq', // Antarctica
'ar', // Argentina
'as', // American Samoa
'at', // Austria
'au', // Australia (includes Ashmore and Cartier Islands and Coral Sea Islands)
'aw', // Aruba
'ax', // Ã?land
'az', // Azerbaijan
'ba', // Bosnia and Herzegovina
'bb', // Barbados
'bd', // Bangladesh
'be', // Belgium
'bf', // Burkina Faso
'bg', // Bulgaria
'bh', // Bahrain
'bi', // Burundi
'bj', // Benin
'bm', // Bermuda
'bn', // Brunei Darussalam
'bo', // Bolivia
'br', // Brazil
'bs', // Bahamas
'bt', // Bhutan
'bv', // Bouvet Island
'bw', // Botswana
'by', // Belarus
'bz', // Belize
'ca', // Canada
'cc', // Cocos (Keeling) Islands
'cd', // Democratic Republic of the Congo (formerly Zaire)
'cf', // Central African Republic
'cg', // Republic of the Congo
'ch', // Switzerland
'ci', // Côte d'Ivoire
'ck', // Cook Islands
'cl', // Chile
'cm', // Cameroon
'cn', // China, mainland
'co', // Colombia
'cr', // Costa Rica
'cu', // Cuba
'cv', // Cape Verde
'cx', // Christmas Island
'cy', // Cyprus
'cz', // Czech Republic
'de', // Germany
'dj', // Djibouti
'dk', // Denmark
'dm', // Dominica
'do', // Dominican Republic
'dz', // Algeria
'ec', // Ecuador
'ee', // Estonia
'eg', // Egypt
'er', // Eritrea
'es', // Spain
'et', // Ethiopia
'eu', // European Union
'fi', // Finland
'fj', // Fiji
'fk', // Falkland Islands
'fm', // Federated States of Micronesia
'fo', // Faroe Islands
'fr', // France
'ga', // Gabon
'gb', // Great Britain (United Kingdom)
'gd', // Grenada
'ge', // Georgia
'gf', // French Guiana
'gg', // Guernsey
'gh', // Ghana
'gi', // Gibraltar
'gl', // Greenland
'gm', // The Gambia
'gn', // Guinea
'gp', // Guadeloupe
'gq', // Equatorial Guinea
'gr', // Greece
'gs', // South Georgia and the South Sandwich Islands
'gt', // Guatemala
'gu', // Guam
'gw', // Guinea-Bissau
'gy', // Guyana
'hk', // Hong Kong
'hm', // Heard Island and McDonald Islands
'hn', // Honduras
'hr', // Croatia (Hrvatska)
'ht', // Haiti
'hu', // Hungary
'id', // Indonesia
'ie', // Ireland (Ã?ire)
'il', // Israel
'im', // Isle of Man
'in', // India
'io', // British Indian Ocean Territory
'iq', // Iraq
'ir', // Iran
'is', // Iceland
'it', // Italy
'je', // Jersey
'jm', // Jamaica
'jo', // Jordan
'jp', // Japan
'ke', // Kenya
'kg', // Kyrgyzstan
'kh', // Cambodia (Khmer)
'ki', // Kiribati
'km', // Comoros
'kn', // Saint Kitts and Nevis
'kp', // North Korea
'kr', // South Korea
'kw', // Kuwait
'ky', // Cayman Islands
'kz', // Kazakhstan
'la', // Laos (currently being marketed as the official domain for Los Angeles)
'lb', // Lebanon
'lc', // Saint Lucia
'li', // Liechtenstein
'lk', // Sri Lanka
'lr', // Liberia
'ls', // Lesotho
'lt', // Lithuania
'lu', // Luxembourg
'lv', // Latvia
'ly', // Libya
'ma', // Morocco
'mc', // Monaco
'md', // Moldova
'me', // Montenegro
'mg', // Madagascar
'mh', // Marshall Islands
'mk', // Republic of Macedonia
'ml', // Mali
'mm', // Myanmar
'mn', // Mongolia
'mo', // Macau
'mp', // Northern Mariana Islands
'mq', // Martinique
'mr', // Mauritania
'ms', // Montserrat
'mt', // Malta
'mu', // Mauritius
'mv', // Maldives
'mw', // Malawi
'mx', // Mexico
'my', // Malaysia
'mz', // Mozambique
'na', // Namibia
'nc', // New Caledonia
'ne', // Niger
'nf', // Norfolk Island
'ng', // Nigeria
'ni', // Nicaragua
'nl', // Netherlands
'no', // Norway
'np', // Nepal
'nr', // Nauru
'nu', // Niue
'nz', // New Zealand
'om', // Oman
'pa', // Panama
'pe', // Peru
'pf', // French Polynesia With Clipperton Island
'pg', // Papua New Guinea
'ph', // Philippines
'pk', // Pakistan
'pl', // Poland
'pm', // Saint-Pierre and Miquelon
'pn', // Pitcairn Islands
'pr', // Puerto Rico
'ps', // Palestinian territories (PA-controlled West Bank and Gaza Strip)
'pt', // Portugal
'pw', // Palau
'py', // Paraguay
'qa', // Qatar
're', // Réunion
'ro', // Romania
'rs', // Serbia
'ru', // Russia
'rw', // Rwanda
'sa', // Saudi Arabia
'sb', // Solomon Islands
'sc', // Seychelles
'sd', // Sudan
'se', // Sweden
'sg', // Singapore
'sh', // Saint Helena
'si', // Slovenia
'sj', // Svalbard and Jan Mayen Islands Not in use (Norwegian dependencies; see .no)
'sk', // Slovakia
'sl', // Sierra Leone
'sm', // San Marino
'sn', // Senegal
'so', // Somalia
'sr', // Suriname
'st', // São Tomé and PrÃncipe
'su', // Soviet Union (deprecated)
'sv', // El Salvador
'sy', // Syria
'sz', // Swaziland
'tc', // Turks and Caicos Islands
'td', // Chad
'tf', // French Southern and Antarctic Lands
'tg', // Togo
'th', // Thailand
'tj', // Tajikistan
'tk', // Tokelau
'tl', // East Timor (deprecated old code)
'tm', // Turkmenistan
'tn', // Tunisia
'to', // Tonga
'tp', // East Timor
'tr', // Turkey
'tt', // Trinidad and Tobago
'tv', // Tuvalu
'tw', // Taiwan, Republic of China
'tz', // Tanzania
'ua', // Ukraine
'ug', // Uganda
'uk', // United Kingdom
'um', // United States Minor Outlying Islands
'us', // United States of America
'uy', // Uruguay
'uz', // Uzbekistan
'va', // Vatican City State
'vc', // Saint Vincent and the Grenadines
've', // Venezuela
'vg', // British Virgin Islands
'vi', // U.S. Virgin Islands
'vn', // Vietnam
'vu', // Vanuatu
'wf', // Wallis and Futuna
'ws', // Samoa (formerly Western Samoa)
'ye', // Yemen
'yt', // Mayotte
'yu', // Serbia and Montenegro (originally Yugoslavia)
'za', // South Africa
'zm', // Zambia
'zw' // Zimbabwe
]);
LOCAL_TLD_LIST := TList<String>.Create;
LOCAL_TLD_LIST.AddRange(['localhost', // RFC2606 defined
'localdomain' // Also widely used as localhost.localdomain
]);
end.