-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
checker.go
112 lines (93 loc) · 2.7 KB
/
checker.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
// This file is part of the guanguans/id-validator.
// (c) guanguans <ityaozm@gmail.com>
// This source file is subject to the MIT license that is bundled.
package idvalidator
import (
"errors"
"regexp"
"strings"
"time"
"github.com/spf13/cast"
)
// 生成数据
func generateCode(id string) (map[string]string, error) {
length := len(id)
if length == 15 {
return generateShortCode(id)
}
if length == 18 {
return generateLongCode(id)
}
return map[string]string{}, errors.New("invalid ID card number length")
}
// 生成短数据
func generateShortCode(id string) (map[string]string, error) {
if len(id) != 15 {
return map[string]string{}, errors.New("invalid ID card number length")
}
mustCompile := regexp.MustCompile("(.{6})(.{6})(.{3})")
subMatch := mustCompile.FindStringSubmatch(strings.ToLower(id))
if len(subMatch) < 4 {
return nil, errors.New("error extract submatch(shortCode)")
}
return map[string]string{
"body": subMatch[0],
"addressCode": subMatch[1],
"birthdayCode": "19" + subMatch[2],
"order": subMatch[3],
"checkBit": "",
"type": "15",
}, nil
}
// 生成长数据
func generateLongCode(id string) (map[string]string, error) {
if len(id) != 18 {
return map[string]string{}, errors.New("invalid ID card number length")
}
mustCompile := regexp.MustCompile("((.{6})(.{8})(.{3}))(.)")
subMatch := mustCompile.FindStringSubmatch(strings.ToLower(id))
if len(subMatch) < 6 {
return nil, errors.New("error extract submatch(longCode)")
}
return map[string]string{
"body": subMatch[1],
"addressCode": subMatch[2],
"birthdayCode": subMatch[3],
"order": subMatch[4],
"checkBit": subMatch[5],
"type": "18",
}, nil
}
// 检查地址码
func checkAddressCode(addressCode string, birthdayCode string, strict bool) bool {
addressInfo := getAddressInfo(addressCode, birthdayCode, strict)
// 用于判断是否是港澳台居民居住证(8字开头)
// 港澳台居民居住证无市级、县级信息
firstCharacter := substr(addressCode, 0, 1)
if firstCharacter == "8" && addressInfo["province"] != "" {
return true
}
// 这里不判断市级信息的原因:
// 1. 直辖市,无市级信息
// 2. 省直辖县或县级市,无市级信息
if addressInfo["province"] == "" || addressInfo["district"] == "" {
return false
}
return true
}
// 检查出生日期码
func checkBirthdayCode(birthdayCode string) bool {
year := cast.ToInt(substr(birthdayCode, 0, 4))
if year < 1800 {
return false
}
if year > time.Now().Year() {
return false
}
_, err := time.Parse("20060102", birthdayCode)
return err == nil
}
// 检查顺序码
func checkOrderCode(orderCode string) bool {
return len(orderCode) == 3
}