-
Notifications
You must be signed in to change notification settings - Fork 9
/
is.go
645 lines (558 loc) · 14.2 KB
/
is.go
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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
package is
import (
"encoding/base64"
"encoding/json"
"math"
"net"
"net/url"
"os"
"regexp"
"strconv"
"strings"
"unicode"
"unicode/utf8"
)
// InRange returns true if value lies between left and right border
func InRange(value, left, right float64) bool {
if left > right {
left, right = right, left
}
return value >= left && value <= right
}
// Email is a constraint to do a simple validation for email addresses, it only check if the string contains "@"
// and that it is not in the first or last character of the string
// https://en.wikipedia.org/wiki/Email_address#Valid_email_addresses
func Email(s string) bool {
if !strings.Contains(s, "@") || s[0] == '@' || s[len(s)-1] == '@' {
return false
}
return true
}
// URL check if the string is an URL.
func URL(str string) bool {
if str == "" || len(str) >= 2083 || len(str) <= 3 || strings.HasPrefix(str, ".") {
return false
}
u, err := url.Parse(str)
if err != nil {
return false
}
if strings.HasPrefix(u.Host, ".") {
return false
}
if u.Host == "" && (u.Path != "" && !strings.Contains(u.Path, ".")) {
return false
}
return rxURL.MatchString(str)
}
// RequestURL check if the string rawurl, assuming
// it was received in an HTTP request, is a valid
// URL confirm to RFC 3986
func RequestURL(rawurl string) bool {
url, err := url.ParseRequestURI(rawurl)
if err != nil {
return false //Couldn't even parse the rawurl
}
if len(url.Scheme) == 0 {
return false //No Scheme found
}
return true
}
// RequestURI check if the string rawurl, assuming
// it was received in an HTTP request, is an
// absolute URI or an absolute path.
func RequestURI(rawurl string) bool {
_, err := url.ParseRequestURI(rawurl)
return err == nil
}
// Alpha check if the string contains only letters (a-zA-Z). Empty string is valid.
func Alpha(s string) bool {
for _, v := range s {
if ('Z' < v || v < 'A') && ('z' < v || v < 'a') {
return false
}
}
return true
}
//UTFLetter check if the string contains only unicode letter characters.
//Similar to IsAlpha but for all languages. Empty string is valid.
func UTFLetter(str string) bool {
for _, v := range str {
if !unicode.IsLetter(v) {
return false
}
}
return true
}
// Alphanumeric check if the string contains only letters and numbers. Empty string is valid.
func Alphanumeric(s string) bool {
for _, v := range s {
if ('Z' < v || v < 'A') && ('z' < v || v < 'a') && ('9' < v || v < '0') {
return false
}
}
return true
}
// UTFLetterNumeric check if the string contains only unicode letters and numbers. Empty string is valid.
func UTFLetterNumeric(s string) bool {
for _, v := range s {
if !unicode.IsLetter(v) && !unicode.IsNumber(v) { //letters && numbers are ok
return false
}
}
return true
}
// Numeric check if the string contains only numbers. Empty string is valid.
func Numeric(s string) bool {
for _, v := range s {
if '9' < v || v < '0' {
return false
}
}
return true
}
// UTFNumeric check if the string contains only unicode numbers of any kind.
// Numbers can be 0-9 but also Fractions ¾,Roman Ⅸ and Hangzhou 〩. Empty string is valid.
func UTFNumeric(s string) bool {
for _, v := range s {
if unicode.IsNumber(v) == false {
return false
}
}
return true
}
// Whole returns true if value is whole number
func Whole(value float64) bool {
return math.Abs(math.Remainder(value, 1)) == 0
}
// Natural returns true if value is natural number (positive and whole)
func Natural(value float64) bool {
return Whole(value) && value > 0
}
// UTFDigit check if the string contains only unicode radix-10 decimal digits. Empty string is valid.
func UTFDigit(s string) bool {
for _, v := range s {
if !unicode.IsDigit(v) {
return false
}
}
return true
}
// Hexadecimal check if the string is a hexadecimal number.
func Hexadecimal(str string) bool {
_, err := strconv.ParseInt(str, 16, 0)
return err == nil
}
// Hexcolor check if the string is a hexadecimal color.
func Hexcolor(str string) bool {
if str == "" {
return false
}
if str[0] == '#' {
str = str[1:]
}
if len(str) != 3 && len(str) != 6 {
return false
}
for _, c := range str {
if ('F' < c || c < 'A') && ('f' < c || c < 'a') && ('9' < c || c < '0') {
return false
}
}
return true
}
// RGBcolor check if the string is a valid RGB color in form rgb(RRR, GGG, BBB).
func RGBcolor(str string) bool {
if str == "" || len(str) < 10 {
return false
}
if str[0:4] != "rgb(" || str[len(str)-1] != ')' {
return false
}
str = str[4 : len(str)-1]
str = strings.TrimSpace(str)
for _, p := range strings.Split(str, ",") {
if len(p) > 1 && p[0] == '0' {
return false
}
p = strings.TrimSpace(p)
if i, e := strconv.Atoi(p); (255 < i || i < 0) || e != nil {
return false
}
}
return true
}
// LowerCase check if the string is lowercase. Empty string is valid.
func LowerCase(str string) bool {
if len(str) == 0 {
return true
}
return str == strings.ToLower(str)
}
// UpperCase check if the string is uppercase. Empty string is valid.
func UpperCase(str string) bool {
if len(str) == 0 {
return true
}
return str == strings.ToUpper(str)
}
// Int check if the string is an integer. Empty string is valid.
func Int(str string) bool {
if len(str) == 0 {
return true
}
_, err := strconv.Atoi(str)
return err == nil
}
// Float check if the string is a float.
func Float(str string) bool {
_, err := strconv.ParseFloat(str, 0)
return err == nil
}
// ByteLength check if the string's length (in bytes) falls in a range.
func ByteLength(str string, min, max int) bool {
return len(str) >= min && len(str) <= max
}
// UUIDv3 check if the string is a UUID version 3.
func UUIDv3(str string) bool {
return UUID(str) && str[14] == '3'
}
// UUIDv4 check if the string is a UUID version 4.
func UUIDv4(str string) bool {
return UUID(str) &&
str[14] == '4' &&
(str[19] == '8' || str[19] == '9' || str[19] == 'a' || str[19] == 'b')
}
// UUIDv5 check if the string is a UUID version 5.
func UUIDv5(str string) bool {
return UUID(str) &&
str[14] == '5' &&
(str[19] == '8' || str[19] == '9' || str[19] == 'a' || str[19] == 'b')
}
// UUID check if the string is a UUID (version 3, 4 or 5).
func UUID(str string) bool {
if len(str) != 36 {
return false
}
for i, c := range str {
if i == 8 || i == 13 || i == 18 || i == 23 {
if c != '-' {
return false
}
continue
}
if ('f' < c || c < 'a') && ('9' < c || c < '0') {
return false
}
}
return true
}
// CreditCard check if the string is a credit card.
func CreditCard(str string) bool {
r, _ := regexp.Compile("[^0-9]+")
sanitized := r.ReplaceAll([]byte(str), []byte(""))
if !rxCreditCard.MatchString(string(sanitized)) {
return false
}
var sum int64
var digit string
var tmpNum int64
var shouldDouble bool
for i := len(sanitized) - 1; i >= 0; i-- {
digit = string(sanitized[i:(i + 1)])
tmpNum, _ = toInt(digit)
if shouldDouble {
tmpNum *= 2
if tmpNum >= 10 {
sum += ((tmpNum % 10) + 1)
} else {
sum += tmpNum
}
} else {
sum += tmpNum
}
shouldDouble = !shouldDouble
}
if sum%10 == 0 {
return true
}
return false
}
// ISBN10 check if the string is an ISBN version 10.
func ISBN10(str string) bool {
return ISBN(str, 10)
}
// ISBN13 check if the string is an ISBN version 13.
func ISBN13(str string) bool {
return ISBN(str, 13)
}
// ISBN check if the string is an ISBN (version 10 or 13).
// If version value is not equal to 10 or 13, it will be check both variants.
func ISBN(str string, version int) bool {
r, _ := regexp.Compile("[\\s-]+")
sanitized := r.ReplaceAll([]byte(str), []byte(""))
var checksum int32
var i int32
if version == 10 {
if !rxISBN10.MatchString(string(sanitized)) {
return false
}
for i = 0; i < 9; i++ {
checksum += (i + 1) * int32(sanitized[i]-'0')
}
if sanitized[9] == 'X' {
checksum += 10 * 10
} else {
checksum += 10 * int32(sanitized[9]-'0')
}
if checksum%11 == 0 {
return true
}
return false
} else if version == 13 {
if !rxISBN13.MatchString(string(sanitized)) {
return false
}
factor := []int32{1, 3}
for i = 0; i < 12; i++ {
checksum += factor[i%2] * int32(sanitized[i]-'0')
}
if (int32(sanitized[12]-'0'))-((10-(checksum%10))%10) == 0 {
return true
}
return false
}
return ISBN(str, 10) || ISBN(str, 13)
}
// JSON check if the string is valid JSON (note: uses json.Unmarshal).
func JSON(str string) bool {
var js json.RawMessage
return json.Unmarshal([]byte(str), &js) == nil
}
// Multibyte check if the string contains one or more multibyte chars. Empty string is valid.
func Multibyte(s string) bool {
for _, v := range s {
if v >= utf8.RuneSelf {
return true
}
}
return len(s) == 0
}
// ASCII check if the string contains ASCII chars only. Empty string is valid.
func ASCII(s string) bool {
for _, v := range s {
if v >= utf8.RuneSelf {
return false
}
}
return true
}
// PrintableASCII check if the string contains printable ASCII chars only. Empty string is valid.
func PrintableASCII(s string) bool {
for _, v := range s {
if v < ' ' || v > '~' {
return false
}
}
return true
}
// FullWidth check if the string contains any full-width chars. Empty string is valid.
func FullWidth(str string) bool {
if len(str) == 0 {
return true
}
return rxFullWidth.MatchString(str)
}
// HalfWidth check if the string contains any half-width chars. Empty string is valid.
func HalfWidth(str string) bool {
if len(str) == 0 {
return true
}
return rxHalfWidth.MatchString(str)
}
// VariableWidth check if the string contains a mixture of full and half-width chars. Empty string is valid.
func VariableWidth(str string) bool {
if len(str) == 0 {
return true
}
return rxHalfWidth.MatchString(str) && rxFullWidth.MatchString(str)
}
// Base64 check if a string is base64 encoded.
func Base64(s string) bool {
if len(s) == 0 {
return false
}
_, err := base64.StdEncoding.DecodeString(s)
return err == nil
}
// FilePath check is a string is Win or Unix file path and returns it's type.
func FilePath(str string) (bool, int) {
if rxWinPath.MatchString(str) {
// check windows path limit see:
// http://msdn.microsoft.com/en-us/library/aa365247(VS.85).aspx#maxpath
if len(str[3:]) > 32767 {
return false, Win
}
return true, Win
} else if rxUnixPath.MatchString(str) {
return true, Unix
}
return false, Unknown
}
// DataURI checks if a string is base64 encoded data URI such as an image
func DataURI(str string) bool {
dataURI := strings.Split(str, ",")
if !rxDataURI.MatchString(dataURI[0]) {
return false
}
return Base64(dataURI[1])
}
// ISO3166Alpha2 checks if a string is valid two-letter country code
func ISO3166Alpha2(str string) bool {
for _, entry := range ISO3166List {
if str == entry.Alpha2Code {
return true
}
}
return false
}
// ISO3166Alpha3 checks if a string is valid three-letter country code
func ISO3166Alpha3(str string) bool {
for _, entry := range ISO3166List {
if str == entry.Alpha3Code {
return true
}
}
return false
}
// DNSName will validate the given string as a DNS name
func DNSName(str string) bool {
if str == "" || len(strings.Replace(str, ".", "", -1)) > 255 {
// constraints already violated
return false
}
return rxDNSName.MatchString(str)
}
// DialString validates the given string for usage with the various Dial() functions
func DialString(str string) bool {
if h, p, err := net.SplitHostPort(str); err == nil && h != "" && p != "" && (DNSName(h) || IP(h)) && Port(p) {
return true
}
return false
}
// IP checks if a string is either IP version 4 or 6.
func IP(str string) bool {
return net.ParseIP(str) != nil
}
// Port checks if a string represents a valid port
func Port(str string) bool {
if i, err := strconv.Atoi(str); err == nil && i > 0 && i < 65536 {
return true
}
return false
}
// IPv4 check if the string is an IP version 4.
func IPv4(str string) bool {
ip := net.ParseIP(str)
return ip != nil && strings.Contains(str, ".")
}
// IPv6 check if the string is an IP version 6.
func IPv6(str string) bool {
ip := net.ParseIP(str)
return ip != nil && strings.Contains(str, ":")
}
// MAC check if a string is valid MAC address.
// Possible MAC formats:
// 01:23:45:67:89:ab
// 01:23:45:67:89:ab:cd:ef
// 01-23-45-67-89-ab
// 01-23-45-67-89-ab-cd-ef
// 0123.4567.89ab
// 0123.4567.89ab.cdef
func MAC(str string) bool {
_, err := net.ParseMAC(str)
return err == nil
}
// MongoID check if the string is a valid hex-encoded representation of a MongoDB ObjectId.
func MongoID(str string) bool {
if str == "" || len(str) != 24 {
return false
}
for _, c := range str {
if ('F' < c || c < 'A') && ('f' < c || c < 'a') && ('9' < c || c < '0') {
return false
}
}
return true
}
// Latitude check if a string is valid latitude.
func Latitude(str string) bool {
if str == "" {
return false
}
f, err := strconv.ParseFloat(str, 64)
if err != nil {
return false
}
if 90.0 < f || f < -90.0 {
return false
}
return true
}
// Longitude check if a string is valid longitude.
func Longitude(str string) bool {
if str == "" {
return false
}
f, err := strconv.ParseFloat(str, 64)
if err != nil {
return false
}
if 180.0 < f || f < -180.0 {
return false
}
return true
}
// SSN will validate the given string as a U.S. Social Security Number
func SSN(str string) bool {
if str == "" || len(str) != 11 {
return false
}
return rxSSN.MatchString(str)
}
// Semver check if string is valid semantic version
func Semver(str string) bool {
return rxSemver.MatchString(str)
}
// StringLength check string's length (including multi byte strings)
func StringLength(str string, min int, max int) bool {
slen := utf8.RuneCountInString(str)
return slen >= min && slen <= max
}
//Exists returns whether the given file or directory exists or not
func Exists(path string) (bool, error) {
_, err := os.Stat(path)
if err == nil {
return true, nil
}
if os.IsNotExist(err) {
return false, nil
}
return true, err
}
// toFloat convert the input string to a float, or 0.0 if the input is not a float.
func toFloat(str string) (float64, error) {
res, err := strconv.ParseFloat(str, 64)
if err != nil {
res = 0.0
}
return res, err
}
// toInt convert the input string to an integer, or 0 if the input is not an integer.
func toInt(str string) (int64, error) {
res, err := strconv.ParseInt(str, 0, 64)
if err != nil {
res = 0
}
return res, err
}