calc_plate_type.go 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. // Copyright 2019 getensh.com. All rights reserved.
  2. // Use of this source code is governed by getensh.com.
  3. package utils
  4. import (
  5. "fmt"
  6. "strings"
  7. "unicode"
  8. "unicode/utf8"
  9. )
  10. const (
  11. VINLEN = 17
  12. PLATELEN = 6
  13. PLATENEWLEN = 7
  14. SF = "京津冀晋蒙辽吉黑沪苏浙皖闽赣鲁豫鄂湘粤桂琼渝川贵云藏陕甘青宁新"
  15. )
  16. func isUnknowPlateType(plateType string) bool {
  17. switch plateType {
  18. case "02":
  19. return false
  20. case "03":
  21. return false
  22. case "04":
  23. return false
  24. case "15":
  25. return false
  26. case "16":
  27. return false
  28. case "23":
  29. return false
  30. case "24":
  31. return false
  32. case "26":
  33. return false
  34. case "27":
  35. return false
  36. default:
  37. return true
  38. }
  39. }
  40. func getPlateType(plateNo string) string {
  41. switch {
  42. case strings.HasPrefix(plateNo, "使"):
  43. return "03"
  44. case strings.HasSuffix(plateNo, "使"):
  45. return "03"
  46. // 领馆汽车
  47. case strings.HasSuffix(plateNo, "领"):
  48. return "04"
  49. case strings.HasSuffix(plateNo, "挂"):
  50. return "15"
  51. case strings.HasSuffix(plateNo, "学"):
  52. return "16"
  53. case strings.HasSuffix(plateNo, "警"):
  54. return "23"
  55. case strings.HasSuffix(plateNo, "港"):
  56. return "26"
  57. case strings.HasSuffix(plateNo, "澳"):
  58. return "27"
  59. default:
  60. return ""
  61. }
  62. }
  63. func isSupportPlateType(plateType string) bool {
  64. switch plateType {
  65. case "01":
  66. return true
  67. case "02":
  68. return true
  69. case "03":
  70. return true
  71. case "04":
  72. return true
  73. case "05":
  74. return true
  75. case "06":
  76. return true
  77. case "07":
  78. return true
  79. case "08":
  80. return true
  81. case "09":
  82. return true
  83. case "10":
  84. return true
  85. case "11":
  86. return true
  87. case "12":
  88. return true
  89. case "13":
  90. return true
  91. case "14":
  92. return true
  93. case "15":
  94. return true
  95. case "16":
  96. return true
  97. case "17":
  98. return true
  99. case "20":
  100. return true
  101. case "21":
  102. return true
  103. case "22":
  104. return true
  105. case "23":
  106. return true
  107. case "24":
  108. return true
  109. case "25":
  110. return true
  111. case "26":
  112. return true
  113. case "27":
  114. return true
  115. case "51":
  116. return true
  117. case "52":
  118. return true
  119. case "99":
  120. return true
  121. default:
  122. return false
  123. }
  124. return false
  125. }
  126. func isContainSpecialCharactor(plateNumber []byte) bool {
  127. if strings.Contains(string(plateNumber), "I") || strings.Contains(string(plateNumber), "O") {
  128. return true
  129. }
  130. if getPlateType(string(plateNumber)) != "02" {
  131. return false
  132. }
  133. for _, v := range plateNumber {
  134. if (v >= 48 && v <= 57) || (v >= 65 && v <= 90) || (v >= 97 && v <= 122) {
  135. continue
  136. }
  137. return true
  138. }
  139. return false
  140. }
  141. func ParsePlate(plate string) (string, string) {
  142. var index int
  143. for i, r := range plate {
  144. if !unicode.Is(unicode.Scripts["Han"], r) {
  145. index = i
  146. break
  147. }
  148. }
  149. sf := plate[0:index]
  150. hphm := plate[index:]
  151. return sf, hphm
  152. }
  153. func CheckPlateNoFormat(plateNo *string, plateType string) (string, error) {
  154. *plateNo = strings.TrimSpace(*plateNo)
  155. *plateNo = strings.ToUpper(*plateNo)
  156. if plateType != "" {
  157. if !isSupportPlateType(plateType) {
  158. return "", fmt.Errorf( "参数错误,不支持的车牌类型")
  159. }
  160. }
  161. // 判断车牌号码合法性
  162. sf, plateNumber := ParsePlate(*plateNo)
  163. if len(sf) == 0 {
  164. if strings.HasSuffix(*plateNo, "使") {
  165. return "03", nil
  166. }
  167. return plateType, fmt.Errorf( "请求参数格式不对,车牌号码格式不正确")
  168. } else if sf != "使" {
  169. if !strings.Contains(SF, sf) {
  170. return plateType, fmt.Errorf("请求参数格式不对,不支持的省份")
  171. }
  172. }
  173. // 检查车牌是否包含特殊字符
  174. if isContainSpecialCharactor([]byte(plateNumber)) {
  175. return plateType, fmt.Errorf( "请求参数格式不对,车牌号码包含特殊字符")
  176. }
  177. plateLen := utf8.RuneCountInString(plateNumber)
  178. if plateType == "" && plateLen == PLATENEWLEN {
  179. if plateNumber[1] > 64 && plateNumber[1] < 91 {
  180. plateType = "52"
  181. } else if plateNumber[PLATENEWLEN-1] > 64 && plateNumber[PLATENEWLEN-1] < 91 {
  182. plateType = "51"
  183. } else {
  184. return plateType, fmt.Errorf( "请求参数格式不对,新能源汽车车牌格式不正确")
  185. }
  186. }
  187. count := 0
  188. for _, v := range plateNumber {
  189. if 64 < v && v < 91 {
  190. count++
  191. }
  192. }
  193. if strings.HasPrefix(*plateNo, "使") || strings.HasSuffix(*plateNo, "使") {
  194. if plateType == "" {
  195. return "03", nil
  196. } else {
  197. if plateType != "03" {
  198. return "", fmt.Errorf( "请求参数格式不对,车牌和车牌类型不匹配")
  199. }
  200. return plateType, nil
  201. }
  202. } else if strings.HasSuffix(*plateNo, "领") {
  203. if plateType == "" {
  204. return "04", nil
  205. } else {
  206. if plateType != "04" {
  207. return "", fmt.Errorf( "请求参数格式不对,车牌和车牌类型不匹配")
  208. }
  209. return plateType, nil
  210. }
  211. } else if plateType == "51" || plateType == "52" {
  212. if count > 3 {
  213. return plateType, fmt.Errorf( "请求参数格式不对,新能源车牌号码超过3个字母")
  214. } else if plateLen != PLATENEWLEN {
  215. return plateType, fmt.Errorf( "请求参数格式不对,新能源车牌号码长度不正确")
  216. } else {
  217. if plateNumber[1] > 64 && plateNumber[1] < 91 {
  218. if plateType != "52" {
  219. return plateType, fmt.Errorf( "请求参数格式不对,新能源车牌号码和车牌类型不匹配")
  220. }
  221. } else if plateNumber[PLATENEWLEN-1] > 64 && plateNumber[PLATENEWLEN-1] < 91 {
  222. if plateType != "51" {
  223. return plateType, fmt.Errorf( "请求参数格式不对,新能源车牌号码和车牌类型不匹配")
  224. }
  225. } else {
  226. return plateType, fmt.Errorf( "请求参数格式不对,新能源汽车车牌格式不正确")
  227. }
  228. }
  229. } else {
  230. if count > 3 {
  231. return plateType, fmt.Errorf( "请求参数格式不对,车牌号码超过3个字母")
  232. } else if plateLen != PLATELEN {
  233. return plateType, fmt.Errorf("请求参数格式不对,车牌号码长度不正确")
  234. }
  235. }
  236. if strings.Contains("0123456789", plateNumber[0:1]) {
  237. return plateType, fmt.Errorf( "请求参数格式不对,号牌号码第一位不能为数字")
  238. }
  239. if plateType == "51" || plateType == "52" {
  240. return plateType, nil
  241. }
  242. if plateType != "" && isUnknowPlateType(plateType) {
  243. return plateType, nil
  244. }
  245. plateTypeNew := getPlateType(*plateNo)
  246. if plateType != "" && plateTypeNew != plateType {
  247. return plateType, fmt.Errorf( "请求参数格式不对,车牌号码和车牌类型不匹配")
  248. }
  249. return plateTypeNew, nil
  250. }
  251. func VehicleDefaultPlateType(plateNo *string) (plateType string, err error) {
  252. *plateNo = strings.TrimSpace(*plateNo)
  253. *plateNo = strings.ToUpper(*plateNo)
  254. sf, plateNumber := ParsePlate(*plateNo)
  255. if len(sf) == 0 {
  256. if strings.HasSuffix(*plateNo, "使") {
  257. return "03", nil
  258. }else{
  259. return "",nil
  260. }
  261. }
  262. plateLen := utf8.RuneCountInString(plateNumber)
  263. if plateLen == PLATENEWLEN {
  264. if plateNumber[1] > 64 && plateNumber[1] < 91 {
  265. plateType = "52"
  266. return plateType, nil
  267. } else if plateNumber[PLATENEWLEN-1] > 64 && plateNumber[PLATENEWLEN-1] < 91 {
  268. plateType = "51"
  269. return plateType, nil
  270. } else {
  271. return plateType, fmt.Errorf( "参数格式不对,新能源汽车车牌格式不正确")
  272. }
  273. } else if plateLen == PLATELEN {
  274. plateType = getPlateType(*plateNo)
  275. return plateType, nil
  276. } else {
  277. return plateType, fmt.Errorf("参数格式不对,车牌长度不正确")
  278. }
  279. return plateType, nil
  280. }