chengkun
2025-09-15 0cc7f61de2b106c9664033fc27d6426d072ea019
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
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
<?php
 
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2025 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
declare (strict_types = 1);
 
namespace think;
 
use BackedEnum;
use Closure;
use think\contract\Enumable;
use think\exception\ValidateException;
use think\helper\Arr;
use think\helper\Str;
use think\validate\ValidateRule;
use think\validate\ValidateRuleSet;
use UnitEnum;
 
/**
 * 数据验证类
 * @package think
 */
class Validate
{
    /**
     * 自定义验证类型
     * @var array
     */
    protected $type = [];
 
    /**
     * 验证类型别名
     * @var array
     */
    protected $map = [
        '>' => 'gt', '>=' => 'egt', '<' => 'lt', '<=' => 'elt', '=' => 'eq', 'same' => 'eq', '<>' => 'neq',
    ];
 
    /**
     * 当前验证规则
     * @var array
     */
    protected $rule = [];
 
    /**
     * 当前验证规则集
     * @var array
     */
    protected $ruleSet = [];
 
    /**
     * 当前验证规则组
     * @var array
     */
    protected $group = [];
 
    /**
     * 验证规则别名
     * @var array
     */
    protected $alias = [];
 
    /**
     * 验证提示信息
     * @var array
     */
    protected $message = [];
 
    /**
     * 验证字段描述
     * @var array
     */
    protected $field = [];
 
    /**
     * 默认规则提示
     * @var array
     */
    protected $typeMsg = [
        'require'     => ':attribute require',
        'must'        => ':attribute must',
        'number'      => ':attribute must be numeric',
        'integer'     => ':attribute must be integer',
        'float'       => ':attribute must be float',
        'string'      => ':attribute must be string',
        'boolean'     => ':attribute must be bool',
        'enum'        => ':attribute must be :rule enum',
        'email'       => ':attribute not a valid email address',
        'mobile'      => ':attribute not a valid mobile',
        'array'       => ':attribute must be a array',
        'accepted'    => ':attribute must be yes,on,true or 1',
        'acceptedIf'  => ':attribute must be yes,on,true or 1',
        'declined'    => ':attribute must be no,off,false or 0',
        'declinedIf'  => ':attribute must be no,off,false or 0',
        'date'        => ':attribute not a valid datetime',
        'file'        => ':attribute not a valid file',
        'image'       => ':attribute not a valid image',
        'alpha'       => ':attribute must be alpha',
        'alphaNum'    => ':attribute must be alpha-numeric',
        'alphaDash'   => ':attribute must be alpha-numeric, dash, underscore',
        'activeUrl'   => ':attribute not a valid domain or ip',
        'chs'         => ':attribute must be chinese',
        'chsAlpha'    => ':attribute must be chinese or alpha',
        'chsAlphaNum' => ':attribute must be chinese,alpha-numeric',
        'chsDash'     => ':attribute must be chinese,alpha-numeric,underscore, dash',
        'url'         => ':attribute not a valid url',
        'ip'          => ':attribute not a valid ip',
        'dateFormat'  => ':attribute must be dateFormat of :rule',
        'in'          => ':attribute must be in :rule',
        'notIn'       => ':attribute be notin :rule',
        'between'     => ':attribute must between :1 - :2',
        'notBetween'  => ':attribute not between :1 - :2',
        'length'      => 'size of :attribute must be :rule',
        'max'         => 'max size of :attribute must be :rule',
        'min'         => 'min size of :attribute must be :rule',
        'after'       => ':attribute cannot be less than :rule',
        'before'      => ':attribute cannot exceed :rule',
        'expire'      => ':attribute not within :rule',
        'allowIp'     => 'access IP is not allowed',
        'denyIp'      => 'access IP denied',
        'confirm'     => ':attribute out of accord with :2',
        'different'   => ':attribute cannot be same with :2',
        'egt'         => ':attribute must greater than or equal :rule',
        'gt'          => ':attribute must greater than :rule',
        'elt'         => ':attribute must less than or equal :rule',
        'lt'          => ':attribute must less than :rule',
        'eq'          => ':attribute must equal :rule',
        'neq'         => ':attribute must not be equal to :rule',
        'unique'      => ':attribute has exists',
        'regex'       => ':attribute not conform to the rules',
        'method'      => 'invalid Request method',
        'token'       => 'invalid token',
        'fileSize'    => 'filesize not match',
        'fileExt'     => 'extensions to upload is not allowed',
        'fileMime'    => 'mimetype to upload is not allowed',
        'startWith'   => ':attribute must start with :rule',
        'endWith'     => ':attribute must end with :rule',
        'contain'     => ':attribute must contain :rule',
        'multipleOf'  => ':attribute must multiple :rule',
    ];
 
    protected $typeMsgZh = [
        'require'     => ':attribute不能为空',
        'must'        => ':attribute必须',
        'number'      => ':attribute必须是数字',
        'integer'     => ':attribute必须是整数',
        'float'       => ':attribute必须是浮点数',
        'string'      => ':attribute必须是字符串',
        'enum'        => ':attribute必须是有效的 :rule 枚举',
        'startWith'   => ':attribute必须以 :rule 开头',
        'endWith'     => ':attribute必须以 :rule 结尾',
        'contain'     => ':attribute必须包含 :rule',
        'boolean'     => ':attribute必须是布尔值',
        'email'       => ':attribute格式不符',
        'mobile'      => ':attribute格式不符',
        'array'       => ':attribute必须是数组',
        'accepted'    => ':attribute必须是yes、on、true或者1',
        'acceptedIf'  => ':attribute必须是yes、on、true或者1',
        'declined'    => ':attribute必须是no、off、false或者0',
        'declinedIf'  => ':attribute必须是no、off、false或者0',
        'date'        => ':attribute不是一个有效的日期或时间格式',
        'file'        => ':attribute不是有效的上传文件',
        'image'       => ':attribute不是有效的图像文件',
        'alpha'       => ':attribute只能是字母',
        'alphaNum'    => ':attribute只能是字母和数字',
        'alphaDash'   => ':attribute只能是字母、数字和下划线_及破折号-',
        'activeUrl'   => ':attribute不是有效的域名或者IP',
        'chs'         => ':attribute只能是汉字',
        'chsAlpha'    => ':attribute只能是汉字、字母',
        'chsAlphaNum' => ':attribute只能是汉字、字母和数字',
        'chsDash'     => ':attribute只能是汉字、字母、数字和下划线_及破折号-',
        'url'         => ':attribute不是有效的URL地址',
        'ip'          => ':attribute不是有效的IP地址',
        'dateFormat'  => ':attribute必须使用日期格式 :rule',
        'in'          => ':attribute必须在 :rule 范围内',
        'notIn'       => ':attribute不能在 :rule 范围内',
        'between'     => ':attribute只能在 :1 - :2 之间',
        'notBetween'  => ':attribute不能在 :1 - :2 之间',
        'length'      => ':attribute长度不符合要求 :rule',
        'max'         => ':attribute长度不能超过 :rule',
        'min'         => ':attribute长度不能小于 :rule',
        'after'       => ':attribute日期不能小于 :rule',
        'before'      => ':attribute日期不能超过 :rule',
        'expire'      => '不在有效期内 :rule',
        'allowIp'     => '不允许的IP访问',
        'denyIp'      => '禁止的IP访问',
        'confirm'     => ':attribute和确认字段:2不一致',
        'different'   => ':attribute和比较字段:2不能相同',
        'egt'         => ':attribute必须大于等于 :rule',
        'gt'          => ':attribute必须大于 :rule',
        'elt'         => ':attribute必须小于等于 :rule',
        'lt'          => ':attribute必须小于 :rule',
        'eq'          => ':attribute必须等于 :rule',
        'neq'         => ':attribute不能等于 :rule',
        'unique'      => ':attribute已存在',
        'regex'       => ':attribute不符合指定规则',
        'multipleOf'  => ':attribute必须是 :rule 的倍数',
        'fileSize'    => '文件大小不符',
        'fileExt'     => '文件后缀不允许',
        'fileMime'    => '文件类型不允许',
        'method'      => '无效的请求类型',
        'token'       => '令牌数据无效',
    ];
 
    /**
     * 当前验证场景
     * @var string
     */
    protected $currentScene;
 
    /**
     * 内置正则验证规则
     * @var array
     */
    protected $defaultRegex = [
        'alpha'       => '/^[A-Za-z]+$/',
        'alphaNum'    => '/^[A-Za-z0-9]+$/',
        'alphaDash'   => '/^[A-Za-z0-9\-\_]+$/',
        'chs'         => '/^[\p{Han}]+$/u',
        'chsAlpha'    => '/^[\p{Han}a-zA-Z]+$/u',
        'chsAlphaNum' => '/^[\p{Han}a-zA-Z0-9]+$/u',
        'chsDash'     => '/^[\p{Han}a-zA-Z0-9\_\-]+$/u',
        'mobile'      => '/^1[3-9]\d{9}$/',
        'idCard'      => '/(^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$)|(^[1-9]\d{5}\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}$)/',
        'zip'         => '/\d{6}/',
    ];
 
    /**
     * Filter_var 规则
     * @var array
     */
    protected $filter = [
        'email'   => FILTER_VALIDATE_EMAIL,
        'ip'      => [FILTER_VALIDATE_IP, FILTER_FLAG_IPV4 | FILTER_FLAG_IPV6],
        'integer' => FILTER_VALIDATE_INT,
        'url'     => FILTER_VALIDATE_URL,
        'macAddr' => FILTER_VALIDATE_MAC,
        'float'   => FILTER_VALIDATE_FLOAT,
    ];
 
    /**
     * 验证场景定义
     * @var array
     */
    protected $scene = [];
 
    /**
     * 验证失败错误信息
     * @var string|array
     */
    protected $error = [];
 
    /**
     * 是否批量验证
     * @var bool
     */
    protected $batch = false;
 
    /**
     * 验证失败是否抛出异常
     * @var bool
     */
    protected $failException = false;
 
    /**
     * 必须验证的规则
     * @var array
     */
    protected $must = [];
 
    /**
     * 场景需要验证的规则
     * @var array
     */
    protected $only = [];
 
    /**
     * 场景需要移除的验证规则
     * @var array
     */
    protected $remove = [];
 
    /**
     * 场景需要追加的验证规则
     * @var array
     */
    protected $append = [];
 
    /**
     * 场景需要覆盖的验证规则
     * @var array
     */
    protected $replace = [];
 
    /**
     * 验证正则定义
     * @var array
     */
    protected $regex = [];
 
    /**
     * Db对象
     * @var Db
     */
    protected $db;
 
    /**
     * 语言对象
     * @var Lang
     */
    protected $lang;
 
    /**
     * 请求对象
     * @var Request
     */
    protected $request;
 
    /**
     * @var Closure[]
     */
    protected static $maker = [];
 
    /**
     * 构造方法
     */
    public function __construct()
    {
        if (!empty(static::$maker)) {
            foreach (static::$maker as $maker) {
                call_user_func($maker, $this);
            }
        }
    }
 
    /**
     * 设置服务注入
     * @param Closure $maker
     * @return void
     */
    public static function maker(Closure $maker)
    {
        static::$maker[] = $maker;
    }
 
    /**
     * 设置Lang对象
     * @param Lang $lang Lang对象
     * @return void
     */
    public function setLang($lang)
    {
        $this->lang = $lang;
    }
 
    /**
     * 使用中文提示
     * @return $this
     */
    public function useZh()
    {
        $this->typeMsg = array_merge($this->typeMsg, $this->typeMsgZh);
        return $this;
    }
 
    /**
     * 设置Db对象
     * @param Db $db Db对象
     * @return void
     */
    public function setDb($db)
    {
        $this->db = $db;
    }
 
    /**
     * 设置Request对象
     * @param Request $request Request对象
     * @return void
     */
    public function setRequest($request)
    {
        $this->request = $request;
    }
 
    /**
     * 添加字段验证规则
     * @param string|array $name 字段名称或者规则数组
     * @param mixed        $rule 验证规则或者字段描述信息
     * @param string|array $msg  错误信息
     * @return $this
     */
    public function rule(string | array $name, $rule = '', string | array $msg = [])
    {
        if (is_array($name)) {
            $this->rule = $name + $this->rule;
            if (is_array($rule)) {
                $this->field = array_merge($this->field, $rule);
            }
            if (!empty($msg) && is_array($msg)) {
                $this->message($msg);
            }
        } else {
            $this->rule[$name] = $rule;
            if (!empty($msg)) {
                $this->message[$name] = $msg;
            }
        }
 
        return $this;
    }
 
    /**
     * 获取所有验证规则
     * @return array
     */
    public function getRule(): array
    {
        return $this->rule;
    }
 
    /**
     * 添加验证规则别名
     * @param string|array $name 验证规则别名或者别名数组
     * @param mixed        $rule 验证规则
     * @return $this
     */
    public function alias(string | array $name, $rule = '')
    {
        if (is_array($name)) {
            $this->alias = $name + $this->alias;
            if (is_array($rule)) {
                $this->field = array_merge($this->field, $rule);
            }
        } else {
            $this->alias[$name] = $rule;
        }
 
        return $this;
    }
 
    /**
     * 添加验证规则组 支持闭包或数组 每个分组的验证彼此独立
     * group('group',function($validate) {
     *      return $validate->rule('name','rule...');
     * })
     * @param string        $name  分组名
     * @param array|Closure $rules 验证规则
     * @return $this
     */
    public function group(string $name, array | Closure $rules)
    {
        $this->group[$name] = $rules;
 
        return $this;
    }
 
    /**
     * 添加验证规则集 支持闭包或数组
     * @param string        $name  分组名
     * @param array|Closure $rules 验证规则
     * @param array         $msg   错误信息
     * @return ValidateRuleSet
     */
    public function ruleSet(string $name, array | Closure $rules, array $msg = [])
    {
        $this->rule[$name . '.*'] = ValidateRuleSet::rules($rules, $msg);
 
        return $this;
    }
 
    /**
     * 注册验证(类型)规则
     * @param string   $type     验证规则类型
     * @param callable $callback callback方法(或闭包)
     * @param string   $message  验证失败提示信息
     * @return $this
     */
    public function extend(string $type, callable $callback, ?string $message = null)
    {
        $this->type[$type] = $callback;
 
        if ($message) {
            $this->typeMsg[$type] = $message;
        }
 
        return $this;
    }
 
    /**
     * 设置验证规则的默认提示信息
     * @param string|array $type 验证规则类型名称或者数组
     * @param string       $msg  验证提示信息
     * @return void
     */
    public function setTypeMsg(string | array $type, ?string $msg = null): void
    {
        if (is_array($type)) {
            $this->typeMsg = array_merge($this->typeMsg, $type);
        } else {
            $this->typeMsg[$type] = $msg;
        }
    }
 
    /**
     * 设置提示信息
     * @param array $message 错误信息
     * @return $this
     */
    public function message(array $message)
    {
        $this->message = array_merge($this->message, $message);
 
        return $this;
    }
 
    /**
     * 获取提示信息
     * @return array
     */
    public function getMessage(): array
    {
        return $this->message;
    }
 
    /**
     * 设置验证场景或直接指定需要验证的字段
     * @param string|array $name 场景名
     * @return $this
     */
    public function scene(string | array $name)
    {
        if (is_array($name)) {
            $this->only = $name;
        } else {
            // 设置当前场景
            $this->currentScene = $name;
        }
 
        return $this;
    }
 
    /**
     * 判断是否存在某个验证场景
     * @param string $name 场景名
     * @return bool
     */
    public function hasScene(string $name): bool
    {
        return isset($this->scene[$name]) || method_exists($this, 'scene' . Str::studly($name));
    }
 
    /**
     * 设置批量验证
     * @param bool $batch 是否批量验证
     * @return $this
     */
    public function batch(bool $batch = true)
    {
        $this->batch = $batch;
 
        return $this;
    }
 
    /**
     * 设置验证失败后是否抛出异常
     * @param bool $fail 是否抛出异常
     * @return $this
     */
    public function failException(bool $fail = true)
    {
        $this->failException = $fail;
 
        return $this;
    }
 
    /**
     * 指定需要验证的字段列表
     * @param array $fields 字段名
     * @return $this
     */
    public function only(array $fields)
    {
        $this->only = $fields;
 
        return $this;
    }
 
    /**
     * 指定需要覆盖的字段验证规则
     * @param string $field 字段名
     * @param mixed  $rules 验证规则
     * @return $this
     */
    public function replace(string $field, $rules)
    {
        $this->replace[$field] = $rules;
 
        return $this;
    }
 
    /**
     * 移除某个字段的验证规则
     * @param string|array $field 字段名
     * @param mixed        $rule  验证规则 true 移除所有规则
     * @return $this
     */
    public function remove(string | array $field, $rule = null)
    {
        if (is_array($field)) {
            foreach ($field as $key => $rule) {
                if (is_int($key)) {
                    $this->remove($rule);
                } else {
                    $this->remove($key, $rule);
                }
            }
        } else {
            if (is_string($rule)) {
                $rule = explode('|', $rule);
            }
 
            $this->remove[$field] = $rule;
        }
 
        return $this;
    }
 
    /**
     * 追加某个字段的验证规则
     * @param string|array $field 字段名
     * @param mixed        $rule  验证规则
     * @return $this
     */
    public function append(string | array $field, $rule = null)
    {
        if (is_array($field)) {
            foreach ($field as $key => $rule) {
                $this->append($key, $rule);
            }
        } else {
            if (is_string($rule)) {
                $rule = explode('|', $rule);
            }
 
            $this->append[$field] = $rule;
        }
 
        return $this;
    }
 
    /**
     * 返回定义的验证规则
     * @return mixed
     */
    protected function rules()
    {
        return $this->rule;
    }
 
    /**
     * 获取当前的验证规则
     * @return array
     */
    public function getRules(): array
    {
        return $this->rule;
    }
 
    /**
     * 数据自动验证
     * @param array $data  数据
     * @param array|string $rules 验证规则
     * @return bool
     */
    public function check(array $data, array | string $rules = []): bool
    {
        $this->error = [];
 
        if (empty($rules)) {
            // 读取验证规则
            $rules = $this->rules();
        } elseif (is_string($rules)) {
            $rules = $this->getGroupRules($rules);
            // 分组独立检测
            if ($rules instanceof Closure) {
                return $rules(new self())
                    ->alias($this->alias)
                    ->batch($this->batch)
                    ->failException($this->failException)
                    ->check($data);
            }
        }
 
        if ($rules instanceof Validate) {
            $rules = $rules->getRules();
        }
 
        if ($this->currentScene) {
            $this->getScene($this->currentScene);
        }
 
        foreach ($this->append as $key => $rule) {
            if (!isset($rules[$key])) {
                $rules[$key] = $rule;
                unset($this->append[$key]);
            }
        }
 
        foreach ($rules as $key => $rule) {
            if (str_contains($key, '|')) {
                // 字段|描述 用于指定属性名称
                [$key, $title] = explode('|', $key);
            } else {
                $title = $this->field[$key] ?? $key;
            }
 
            // 场景检测
            if (!empty($this->only) && (!in_array($key, $this->only) && !array_key_exists($key, $this->only))) {
                continue;
            }
 
            // 数据验证
            $result = $this->checkItems($key, $rule, $data, $title);
            if (false === $result) {
                return false;
            }
        }
 
        if (!empty($this->error)) {
            if ($this->failException) {
                throw new ValidateException($this->error);
            }
            return false;
        }
 
        return true;
    }
 
    /**
     * 返回经过验证的数据,只包含验证规则中的数据
     * @param array $data
     * @param array|string $rules
     * @return array
     */
    public function checked(array $data, array | string $rules = []): array
    {
        $checkRes = $this->check($data, $rules);
 
        if (!$checkRes) {
            throw new ValidateException($this->error);
        }
 
        $results      = [];
        $missingValue = Str::random(10);
 
        foreach (array_keys($this->getRules()) as $key) {
            if (str_contains($key, '|')) {
                [$key] = explode('|', $key);
            }
            $value = data_get($data, $key, $missingValue);
 
            if ($value !== $missingValue) {
                Arr::set($results, $key, $value);
            }
        }
 
        return $results;
    }
 
    /**
     * 验证字段规则
     * @param string $key   字段名
     * @param mixed  $rule  验证规则
     * @param array  $data  数据
     * @param string $title 字段描述
     * @return bool
     */
    protected function checkItems($key, $rule, $data, $title): bool
    {
        if ($rule instanceof ValidateRuleSet) {
            // 验证集
            $values = $this->getDataSet($data, $key);
            if (empty($values)) {
                return true;
            }
            $items = $rule->getRules();
            if ($items instanceof Closure) {
                // 获取验证集的规则
                $items = $items(new self())->getRule();
            }
            // 验证集的错误信息
            foreach ($rule->getMessage() as $name => $message) {
                $this->message[$key . '.' . $name] = $message;
            }
        } else {
            $items = [$rule];
        }
 
        foreach ($items as $k => $item) {
            $name = is_string($k) ? $key . '.' . $k : $key;
            if (str_contains($name, '|')) {
                // 字段|描述 用于指定属性名称
                [$name, $title] = explode('|', $name);
            }
 
            $values = $this->getDataSet($data, $name);
            if (empty($values)) {
                $values[$name] = null;
            }
 
            foreach ($values as $value) {
                $result = $this->checkItem($name, $value, $item, $data, $title);
                if (true !== $result) {
                    // 验证失败 记录错误信息
                    if (false === $result) {
                        $result = $this->getRuleMsg($name, $title, '', $item);
                    }
 
                    $this->error[$name] = $result;
                    if ($this->batch) {
                        // 批量验证
                    } elseif ($this->failException) {
                        throw new ValidateException($result, $name);
                    } else {
                        return false;
                    }
                }
            }
        }
        return true;
    }
 
    /**
     * 根据验证规则验证数据
     * @param mixed $value 字段值
     * @param mixed $rules 验证规则
     * @return bool
     */
    public function checkRule($value, $rules): bool
    {
        if ($rules instanceof Closure) {
            $result = call_user_func_array($rules, [$value]);
            return is_bool($result) ? $result : false;
        }
 
        if ($rules instanceof ValidateRule) {
            $rules = $rules->getRule();
        } elseif (is_string($rules)) {
            $rules = explode('|', $rules);
        }
 
        foreach ($rules as $key => $rule) {
            if ($rule instanceof Closure) {
                $result = call_user_func_array($rule, [$value]);
            } elseif (is_subclass_of($rule, UnitEnum::class) || is_subclass_of($rule, Enumable::class)) {
                $result = $this->enum($value, $rule);
            } else {
                // 判断验证类型
                [$type, $rule, $callback] = $this->getValidateType($key, $rule);
 
                $result = call_user_func_array($callback, [$value, $rule]);
            }
 
            if (true !== $result) {
                return false;
            }
        }
 
        return true;
    }
 
    /**
     * 验证单个字段规则
     * @param string $field 字段名
     * @param mixed  $value 字段值
     * @param mixed  $rules 验证规则
     * @param array  $data  数据
     * @param string $title 字段描述
     * @param array  $msg   提示信息
     * @return mixed
     */
    protected function checkItem(string $field, $value, $rules, $data, string $title = '', array $msg = []): mixed
    {
        if ($rules instanceof ValidateRuleSet) {
            return $this->checkItems($field, $rules, $data, $title);
        }
 
        if ($rules instanceof Closure) {
            return call_user_func_array($rules, [$value, $data]);
        }
 
        if ($rules instanceof ValidateRule) {
            $title = $rules->getTitle() ?: $title;
            $msg   = $rules->getMsg();
            $rules = $rules->getRule();
        } elseif (is_string($rules)) {
            // 检查验证规则别名
            // 'alias' => require|in:a,b,c|... 或者 ['require','in'=>'a,b,c',...]
            $rules = $this->alias[$rules] ?? $rules;
        }
 
        if (isset($this->remove[$field]) && true === $this->remove[$field] && empty($this->append[$field])) {
            // 字段已经移除 无需验证
            return true;
        }
 
        if (isset($this->replace[$field])) {
            $rules = $this->replace[$field];
        } elseif (isset($this->only[$field])) {
            $rules = $this->only[$field];
        }
 
        // 统一解析为数组规则验证 require|in:a,b,c|... 或者 ['require','in'=>'a,b,c',...]
        if (is_string($rules)) {
            $rules = explode('|', $rules);
        }
 
        if (isset($this->append[$field])) {
            // 追加额外的验证规则
            $rules = array_unique(array_merge($rules, $this->append[$field]), SORT_REGULAR);
            unset($this->append[$field]);
        }
 
        if (empty($rules)) {
            return true;
        }
 
        $i = 0;
        foreach ($rules as $key => $rule) {
            if ($rule instanceof Closure) {
                $result = call_user_func_array($rule, [$value, $data]);
                $type   = is_numeric($key) ? '' : $key;
            } elseif (is_subclass_of($rule, UnitEnum::class) || is_subclass_of($rule, Enumable::class)) {
                $result = $this->enum($value, $rule);
                $type   = is_numeric($key) ? '' : $key;
            } else {
                // 判断验证类型
                [$type, $rule, $callback] = $this->getValidateType($key, $rule);
 
                if (isset($this->append[$field]) && in_array($type, $this->append[$field])) {
                } elseif (isset($this->remove[$field]) && in_array($type, $this->remove[$field])) {
                    // 规则已经移除
                    $i++;
                    continue;
                }
 
                if ('must' == $type || str_starts_with($type, 'require') || in_array($field, $this->must) || (!is_null($value) && '' !== $value)) {
                    $result = call_user_func_array($callback, [$value, $rule, $data, $field, $title]);
                } else {
                    $result = true;
                }
            }
 
            if (false === $result) {
                // 验证失败 返回错误信息
                if (!empty($msg[$i])) {
                    $message = $msg[$i];
                    if (is_string($message) && str_starts_with($message, '{%')) {
                        $message = $this->lang->get(substr($message, 2, -1));
                    }
                } else {
                    $message = $this->getRuleMsg($field, $title, $type, $rule);
                }
 
                return $message;
            } elseif (true !== $result) {
                // 返回自定义错误信息
                return $this->parseUserErrorMessage($result, $title, $rule);
            }
            $i++;
        }
 
        return $result ?? true;
    }
 
    protected function parseUserErrorMessage($message, $title, $rule)
    {
        if (is_string($message) && str_contains($message, ':')) {
            $message = str_replace(':attribute', $title, $message);
 
            if (str_contains($message, ':rule') && is_scalar($rule)) {
                $message = str_replace(':rule', (string) $rule, $message);
            }
        }
 
        return $message;
    }
 
    /**
     * 获取当前验证类型及规则
     * @param mixed $key
     * @param mixed $rule
     * @return array
     */
    protected function getValidateType($key, $rule): array
    {
        // 判断验证类型
        $hasParam = true;
        if (!is_numeric($key)) {
            $type = $key;
        } elseif (str_contains($rule, ':')) {
            [$type, $rule] = explode(':', $rule, 2);
        } else {
            $type     = $rule;
            $hasParam = false;
        }
 
        // 验证类型别名
        $type = $this->map[$type] ?? $type;
 
        if (isset($this->type[$type])) {
            // 自定义验证
            $call = $this->type[$type];
        } else {
            $method = Str::camel($type);
            if (method_exists($this, $method)) {
                $call = [$this, $method];
                $rule = $hasParam ? $rule : '';
            } else {
                $call = [$this, 'is'];
            }
        }
 
        return [$type, $rule, $call];
    }
 
    /**
     * 验证是否和某个字段的值一致
     * @param mixed  $value 字段值
     * @param mixed  $rule  验证规则
     * @param array  $data  数据
     * @param string $field 字段名
     * @return bool
     */
    public function confirm($value, $rule, array $data = [], string $field = ''): bool
    {
        if ('' == $rule) {
            if (str_contains($field, '_confirm')) {
                $rule = strstr($field, '_confirm', true);
            } else {
                $rule = $field . '_confirm';
            }
        }
 
        return $this->getDataValue($data, $rule) === $value;
    }
 
    /**
     * 验证是否和某个字段的值是否不同
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @param array $data  数据
     * @return bool
     */
    public function different($value, $rule, array $data = []): bool
    {
        return $this->getDataValue($data, $rule) != $value;
    }
 
    /**
     * 验证是否大于等于某个值
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @param array $data  数据
     * @return bool
     */
    public function egt($value, $rule, array $data = []): bool
    {
        return $value >= $this->getDataValue($data, $rule);
    }
 
    /**
     * 验证是否大于某个值
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @param array $data  数据
     * @return bool
     */
    public function gt($value, $rule, array $data = []): bool
    {
        return $value > $this->getDataValue($data, $rule);
    }
 
    /**
     * 验证是否小于等于某个值
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @param array $data  数据
     * @return bool
     */
    public function elt($value, $rule, array $data = []): bool
    {
        return $value <= $this->getDataValue($data, $rule);
    }
 
    /**
     * 验证是否小于某个值
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @param array $data  数据
     * @return bool
     */
    public function lt($value, $rule, array $data = []): bool
    {
        return $value < $this->getDataValue($data, $rule);
    }
 
    /**
     * 验证是否等于某个值
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @return bool
     */
    public function eq($value, $rule): bool
    {
        return $value == $rule;
    }
 
    /**
     * 验证是否不等于某个值
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @return bool
     */
    public function neq($value, $rule): bool
    {
        return $value != $rule;
    }
 
    /**
     * 必须验证
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @return bool
     */
    public function must($value, $rule = null): bool
    {
        return !empty($value) || '0' == $value;
    }
 
    /**
     * 验证字段值是否为有效格式
     * @param mixed  $value 字段值
     * @param string $rule  验证规则
     * @param array  $data  数据
     * @return bool
     */
    public function is($value, string $rule, array $data = []): bool
    {
        $call = function ($value, $rule) {
            if (function_exists('ctype_' . $rule)) {
                // ctype验证规则
                $ctypeFun = 'ctype_' . $rule;
                $result   = $ctypeFun((string) $value);
            } elseif (isset($this->filter[$rule])) {
                // Filter_var验证规则
                $result = $this->filter($value, $this->filter[$rule]);
            } else {
                // 正则验证
                $result = $this->regex($value, $rule);
            }
            return $result;
        };
 
        return match (Str::camel($rule)) {
            'require'         => !empty($value) || '0' == $value,
            'accepted'        => in_array($value, ['1', 'on', 'yes', 'true', 1, true], true),
            'declined'        => in_array($value, ['0', 'off', 'no', 'false', 0, false], true),
            'boolean', 'bool' => in_array($value, [true, false, 'true', 'false', 0, 1, '0', '1'], true),
            'date'            => false !== strtotime($value),
            'activeUrl'       => checkdnsrr($value),
            'number'          => ctype_digit((string) $value),
            'alphaNum'        => ctype_alnum($value),
            'array'           => is_array($value),
            'string'          => is_string($value),
            'file'            => $value instanceof File,
            'image'           => $value instanceof File && in_array($this->getImageType($value->getRealPath()), [1, 2, 3, 6]),
            'token'           => $this->token($value, '__token__', $data),
            default           => $call($value, $rule),
        };
    }
 
    // 判断图像类型
    protected function getImageType($image)
    {
        if (function_exists('exif_imagetype')) {
            return exif_imagetype($image);
        }
 
        try {
            $info = getimagesize($image);
            return $info ? $info[2] : false;
        } catch (\Exception $e) {
            return false;
        }
    }
 
    /**
     * 验证表单令牌
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @param array $data  数据
     * @return bool
     */
    public function token($value, string $rule, array $data): bool
    {
        if ($this->request) {
            $rule = !empty($rule) ? $rule : '__token__';
            return $this->request->checkToken($rule, $data);
        }
        return true;
    }
 
    /**
     * 验证是否为合格的域名或者IP 支持A,MX,NS,SOA,PTR,CNAME,AAAA,A6, SRV,NAPTR,TXT 或者 ANY类型
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @return bool
     */
    public function activeUrl(string $value, string $rule = 'MX'): bool
    {
        if (!in_array($rule, ['A', 'MX', 'NS', 'SOA', 'PTR', 'CNAME', 'AAAA', 'A6', 'SRV', 'NAPTR', 'TXT', 'ANY'])) {
            $rule = 'MX';
        }
 
        return checkdnsrr($value, $rule);
    }
 
    /**
     * 验证是否有效IP
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则 ipv4 ipv6
     * @return bool
     */
    public function ip($value, string $rule = 'ipv4'): bool
    {
        if (!in_array($rule, ['ipv4', 'ipv6'])) {
            $rule = 'ipv4';
        }
 
        return $this->filter($value, [FILTER_VALIDATE_IP, 'ipv6' == $rule ? FILTER_FLAG_IPV6 : FILTER_FLAG_IPV4]);
    }
 
    /**
     * 检测是否以某个字符串开头
     * @param mixed $value 字段值
     * @param string $rule  验证规则
     * @return bool
     */
    public function startWith($value, string $rule): bool
    {
        return is_string($value) && str_starts_with($value, $rule);
    }
 
    /**
     * 检测是否以某个字符串结尾
     * @param mixed $value 字段值
     * @param string $rule  验证规则
     * @return bool
     */
    public function endWith($value, string $rule): bool
    {
        return is_string($value) && str_ends_with($value, $rule);
    }
 
    /**
     * 检测是否以包含某个字符串
     * @param mixed $value 字段值
     * @param string $rule  验证规则
     * @return bool
     */
    public function contain($value, string $rule): bool
    {
        return is_string($value) && str_contains($value, $rule);
    }
 
    /**
     * 检测上传文件后缀
     * @param File         $file
     * @param array|string $ext 允许后缀
     * @return bool
     */
    protected function checkExt(File $file, $ext): bool
    {
        if (is_string($ext)) {
            $ext = explode(',', $ext);
        }
 
        return in_array(strtolower($file->extension()), $ext);
    }
 
    /**
     * 检测上传文件大小
     * @param File    $file
     * @param integer $size 最大大小
     * @return bool
     */
    protected function checkSize(File $file, $size): bool
    {
        return $file->getSize() <= (int) $size;
    }
 
    /**
     * 检测上传文件类型
     * @param File         $file
     * @param array|string $mime 允许类型
     * @return bool
     */
    protected function checkMime(File $file, $mime): bool
    {
        if (is_string($mime)) {
            $mime = explode(',', $mime);
        }
 
        return in_array(strtolower($file->getMime()), $mime);
    }
 
    /**
     * 验证上传文件后缀
     * @param mixed $file 上传文件
     * @param mixed $rule 验证规则
     * @return bool
     */
    public function fileExt($file, $rule): bool
    {
        if (is_array($file)) {
            foreach ($file as $item) {
                if (!($item instanceof File) || !$this->checkExt($item, $rule)) {
                    return false;
                }
            }
            return true;
        } elseif ($file instanceof File) {
            return $this->checkExt($file, $rule);
        }
 
        return false;
    }
 
    /**
     * 验证上传文件类型
     * @param mixed $file 上传文件
     * @param mixed $rule 验证规则
     * @return bool
     */
    public function fileMime($file, $rule): bool
    {
        if (is_array($file)) {
            foreach ($file as $item) {
                if (!($item instanceof File) || !$this->checkMime($item, $rule)) {
                    return false;
                }
            }
            return true;
        } elseif ($file instanceof File) {
            return $this->checkMime($file, $rule);
        }
 
        return false;
    }
 
    /**
     * 验证上传文件大小
     * @param mixed $file 上传文件
     * @param mixed $rule 验证规则
     * @return bool
     */
    public function fileSize($file, $rule): bool
    {
        if (is_array($file)) {
            foreach ($file as $item) {
                if (!($item instanceof File) || !$this->checkSize($item, $rule)) {
                    return false;
                }
            }
            return true;
        } elseif ($file instanceof File) {
            return $this->checkSize($file, $rule);
        }
 
        return false;
    }
 
    /**
     * 验证图片的宽高及类型
     * @param mixed $file 上传文件
     * @param mixed $rule 验证规则
     * @return bool
     */
    public function image($file, $rule): bool
    {
        if (!($file instanceof File)) {
            return false;
        }
 
        if ($rule) {
            $rule = explode(',', $rule);
 
            [$width, $height, $type] = getimagesize($file->getRealPath());
 
            if (isset($rule[2])) {
                $imageType = strtolower($rule[2]);
 
                if ('jpg' == $imageType) {
                    $imageType = 'jpeg';
                }
 
                if (image_type_to_extension($type, false) != $imageType) {
                    return false;
                }
            }
 
            [$w, $h] = $rule;
 
            return $w == $width && $h == $height;
        }
 
        return in_array($this->getImageType($file->getRealPath()), [1, 2, 3, 6]);
    }
 
    /**
     * 验证时间和日期是否符合指定格式
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @return bool
     */
    public function dateFormat($value, $rule): bool
    {
        $info = date_parse_from_format($rule, $value);
        if (strlen((string) $info['year']) != 4 && strpos($rule, 'Y') !== false) {
            return false;
        }
        return 0 == $info['warning_count'] && 0 == $info['error_count'];
    }
 
    /**
     * 验证是否唯一
     * @param mixed  $value 字段值
     * @param mixed  $rule  验证规则 格式:数据表,字段名,排除ID,主键名
     * @param array  $data  数据
     * @param string $field 验证字段名
     * @return bool
     */
    public function unique($value, $rule, array $data = [], string $field = ''): bool
    {
        if (!$this->db) {
            return true;
        }
 
        if (is_string($rule)) {
            $rule = explode(',', $rule);
        }
 
        if (str_contains($rule[0], '\\')) {
            // 指定模型类
            $db = new $rule[0]();
        } else {
            $db = $this->db->name($rule[0]);
        }
 
        $key = $rule[1] ?? $field;
        $map = [];
 
        if (str_contains($key, '^')) {
            // 支持多个字段验证
            $fields = explode('^', $key);
            foreach ($fields as $key) {
                if (isset($data[$key])) {
                    $map[] = [$key, '=', $data[$key]];
                }
            }
        } elseif (strpos($key, '=')) {
            // 支持复杂验证
            parse_str($key, $array);
            foreach ($array as $k => $val) {
                $map[] = [$k, '=', $data[$k] ?? $val];
            }
        } elseif (isset($data[$field])) {
            $map[] = [$key, '=', $data[$field]];
        }
 
        $pk = !empty($rule[3]) ? $rule[3] : $db->getPk();
 
        if (is_string($pk)) {
            if (isset($rule[2])) {
                $map[] = [$pk, '<>', $rule[2]];
            } elseif (isset($data[$pk])) {
                $map[] = [$pk, '<>', $data[$pk]];
            }
        }
 
        if ($db->where($map)->field($pk)->find()) {
            return false;
        }
 
        return true;
    }
 
    /**
     * 使用filter_var方式验证
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @return bool
     */
    public function filter($value, $rule): bool
    {
        if (is_string($rule) && str_contains($rule, ',')) {
            [$rule, $param] = explode(',', $rule);
        } elseif (is_array($rule)) {
            $param = $rule[1] ?? 0;
            $rule  = $rule[0];
        } else {
            $param = 0;
        }
 
        return false !== filter_var($value, is_int($rule) ? $rule : filter_id($rule), $param);
    }
 
    /**
     * 验证某个字段等于某个值的时候必须
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @param array $data  数据
     * @return bool
     */
    public function requireIf($value, $rule, array $data = []): bool
    {
        [$field, $val] = is_string($rule) ? explode(',', $rule) : $rule;
 
        if ($this->getDataValue($data, $field) == $val) {
            return !empty($value) || '0' == $value;
        }
 
        return true;
    }
 
    /**
     * 通过回调方法验证某个字段是否必须
     * @param mixed        $value 字段值
     * @param string|array $rule  验证规则
     * @param array        $data  数据
     * @return bool
     */
    public function requireCallback($value, string | array $rule, array $data = []): bool
    {
        $callback = is_array($rule) ? $rule : [$this, $rule];
        $result   = call_user_func_array($callback, [$value, $data]);
 
        if ($result) {
            return !empty($value) || '0' == $value;
        }
 
        return true;
    }
 
    /**
     * 验证某个字段有值的情况下必须
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @param array $data  数据
     * @return bool
     */
    public function requireWith($value, $rule, array $data = []): bool
    {
        $val = $this->getDataValue($data, $rule);
 
        if (!empty($val)) {
            return !empty($value) || '0' == $value;
        }
 
        return true;
    }
 
    /**
     * 验证某个字段没有值的情况下必须
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @param array $data  数据
     * @return bool
     */
    public function requireWithout($value, $rule, array $data = []): bool
    {
        $val = $this->getDataValue($data, $rule);
 
        if (empty($val)) {
            return !empty($value) || '0' == $value;
        }
 
        return true;
    }
 
    /**
     * 验证是否为数组,支持检查键名
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @return bool
     */
    public function array($value, $rule): bool
    {
        if (!is_array($value)) {
            return false;
        }
        if ($rule) {
            $keys = is_string($rule) ? explode(',', $rule) : $rule;
            return empty(array_diff($keys, array_keys($value)));
        } else {
            return true;
        }
    }
 
    /**
     * 验证是否在范围内
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @return bool
     */
    public function in($value, $rule): bool
    {
        return in_array($value, is_array($rule) ? $rule : explode(',', $rule));
    }
 
    /**
     * 验证是否为枚举
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @return bool
     */
    public function enum($value, $rule): bool
    {
        if (is_subclass_of($rule, BackedEnum::class)) {
            $values = array_map(fn($case) => $case->value, $rule::cases());
        } elseif (is_subclass_of($rule, UnitEnum::class)) {
            $values = array_map(fn($case) => $case->name, $rule::cases());
        } elseif (is_subclass_of($rule, Enumable::class)) {
            $values = $rule::values();
        } else {
            $reflect = new \ReflectionClass($rule);
            $values  = $reflect->getConstants();
        }
 
        return in_array($value, $values ?? []);
    }
 
    /**
     * 验证是否不在某个范围
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @return bool
     */
    public function notIn($value, $rule): bool
    {
        return !in_array($value, is_array($rule) ? $rule : explode(',', $rule));
    }
 
    /**
     * between验证数据
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @return bool
     */
    public function between($value, $rule): bool
    {
        [$min, $max] = is_string($rule) ? explode(',', $rule) : $rule;
 
        return $value >= $min && $value <= $max;
    }
 
    /**
     * 使用notbetween验证数据
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @return bool
     */
    public function notBetween($value, $rule): bool
    {
        [$min, $max] = is_string($rule) ? explode(',', $rule) : $rule;
 
        return $value < $min || $value > $max;
    }
 
    /**
     * 验证数据长度
     * @param mixed                  $value 字段值
     * @param string|array|int|float $rule  验证规则
     * @return bool
     */
    public function length($value, $rule): bool
    {
        if (is_array($value)) {
            $length = count($value);
        } elseif ($value instanceof File) {
            $length = $value->getSize();
        } else {
            $length = mb_strlen((string) $value);
        }
 
        if (is_array($rule)) {
            // 长度区间
            return $length >= $rule[0] && $length <= $rule[1];
        } elseif (is_string($rule) && str_contains($rule, ',')) {
            // 长度区间
            [$min, $max] = explode(',', $rule);
            return $length >= $min && $length <= $max;
        }
 
        // 指定长度
        return $length == $rule;
    }
 
    /**
     * 验证数据最大长度
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @return bool
     */
    public function max($value, $rule): bool
    {
        if (is_array($value)) {
            $length = count($value);
        } elseif ($value instanceof File) {
            $length = $value->getSize();
        } else {
            $length = mb_strlen((string) $value);
        }
 
        return $length <= $rule;
    }
 
    /**
     * 验证数据最小长度
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @return bool
     */
    public function min($value, $rule): bool
    {
        if (is_array($value)) {
            $length = count($value);
        } elseif ($value instanceof File) {
            $length = $value->getSize();
        } else {
            $length = mb_strlen((string) $value);
        }
 
        return $length >= $rule;
    }
 
    /**
     * 验证日期
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @param array $data  数据
     * @return bool
     */
    public function after($value, $rule, array $data = []): bool
    {
        return strtotime($value) >= strtotime($rule);
    }
 
    /**
     * 验证日期
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @param array $data  数据
     * @return bool
     */
    public function before($value, $rule, array $data = []): bool
    {
        return strtotime($value) <= strtotime($rule);
    }
 
    /**
     * 验证日期
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @param array $data  数据
     * @return bool
     */
    public function afterWith($value, $rule, array $data = []): bool
    {
        $rule = $this->getDataValue($data, $rule);
        return !is_null($rule) && strtotime($value) >= strtotime($rule);
    }
 
    /**
     * 验证日期
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @param array $data  数据
     * @return bool
     */
    public function beforeWith($value, $rule, array $data = []): bool
    {
        $rule = $this->getDataValue($data, $rule);
        return !is_null($rule) && strtotime($value) <= strtotime($rule);
    }
 
    /**
     * 验证有效期
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @return bool
     */
    public function expire($value, $rule): bool
    {
        [$start, $end] = is_string($rule) ? explode(',', $rule) : $rule;
 
        if (!is_numeric($start)) {
            $start = strtotime($start);
        }
 
        if (!is_numeric($end)) {
            $end = strtotime($end);
        }
 
        return time() >= $start && time() <= $end;
    }
 
    /**
     * 验证IP许可
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @return bool
     */
    public function allowIp($value, $rule): bool
    {
        return in_array($value, is_array($rule) ? $rule : explode(',', $rule));
    }
 
    /**
     * 验证IP禁用
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则
     * @return bool
     */
    public function denyIp($value, $rule): bool
    {
        return !in_array($value, is_array($rule) ? $rule : explode(',', $rule));
    }
 
    /**
     * 验证某个字段等于指定的值,则验证中的字段必须为 yes、on、1 或 true
     * @param mixed $value 字段值
     * @param mixed $rule 验证规则
     * @param array $data 数据
     * @return bool
     */
    public function acceptedIf($value, $rule, array $data = []): bool
    {
        [$field, $val] = is_string($rule) ? explode(',', $rule) : $rule;
 
        if ($this->getDataValue($data, $field) == $val) {
            return in_array($value, ['1', 'on', 'yes', 'true', 1, true], true);
        }
 
        return true;
    }
 
    /**
     * 验证某个字段等于指定的值,则验证中的字段必须为 no、off、0 或 false
     * @param mixed $value 字段值
     * @param mixed $rule 验证规则
     * @param array $data 数据
     * @return bool
     */
    public function declinedIf($value, $rule, array $data = []): bool
    {
        [$field, $val] = is_string($rule) ? explode(',', $rule) : $rule;
 
        if ($this->getDataValue($data, $field) == $val) {
            return in_array($value, ['0', 'off', 'no', 'false', 0, false], true);
        }
 
        return true;
    }
 
    /**
     * 验证某个字段必须是指定值的倍数
     * @param mixed $value 字段值
     * * @param mixed $rule 验证规则
     * @return bool
     */
    public function multipleOf($value, $rule): bool
    {
        if ('0' == $rule || $value < $rule) {
            return false;
        }
 
        return $value % $rule === 0;
    }
 
    /**
     * 使用正则验证数据
     * @param mixed $value 字段值
     * @param mixed $rule  验证规则 正则规则或者预定义正则名
     * @return bool
     */
    public function regex($value, $rule): bool
    {
        $rule = $this->regex[$rule] ?? $this->getDefaultRegexRule($rule);
 
        if (is_string($rule) && !str_starts_with($rule, '/') && !preg_match('/\/[imsU]{0,4}$/', $rule)) {
            // 不是正则表达式则两端补上/
            $rule = '/^' . $rule . '$/';
        }
 
        return is_scalar($value) && 1 === preg_match($rule, (string) $value);
    }
 
    /**
     * 获取内置正则验证规则
     * @param string $rule  验证规则 正则规则或者预定义正则名
     * @return string
     */
    protected function getDefaultRegexRule(string $rule): string
    {
        $name = Str::camel($rule);
        if (isset($this->defaultRegex[$name])) {
            $rule = $this->defaultRegex[$name];
        }
        return $rule;
    }
 
    /**
     * 获取错误信息
     * @param bool  $withKey 是否包含字段信息
     * @return array|string
     */
    public function getError(bool $withKey = false)
    {
        if ($withKey || count($this->error) > 1) {
            // 批量验证
            return $this->error;
        }
        return empty($this->error) ? '' : array_values($this->error)[0];
    }
 
    /**
     * 获取数据集合
     * @param array  $data 数据
     * @param string $key  数据标识 支持二维
     * @return array
     */
    protected function getDataSet(array $data, $key): array
    {
        if (is_string($key) && str_contains($key, '*')) {
            if (substr_count($key, '*') > 1) {
                [$key1, $key2] = explode('.*.', $key, 2);
 
                $array = $this->getDataValue($data, $key1);
                $data  = is_array($array) ? $this->getDataSet($data, $key1 . '.*')[0] : [];
 
                return $this->getDataSet($data, $key2);
            }
 
            if (str_ends_with($key, '*')) {
                // user.id.*
                [$key] = explode('.*', $key);
                $value = $this->getRecursiveData($data, $key) ?: [];
                return is_array($value) ? $value : [$value];
            }
            // user.*.id
            [$key, $column] = explode('.*.', $key);
 
            $value = $this->getRecursiveData($data, $key);
            if (!is_array($value)) {
                $value = [];
            }
 
            return array_map(function ($item) use ($column) {
                return $item[$column] ?? null;
            }, $value);
        }
 
        $value = $this->getDataValue($data, $key);
        return is_null($value) ? [] : [$value];
    }
 
    /**
     * 获取数据值
     * @param array  $data 数据
     * @param string $key  数据标识 支持二维
     * @return mixed
     */
    protected function getDataValue(array $data, $key)
    {
        if (is_numeric($key)) {
            $value = $key;
        } elseif (is_string($key) && str_contains($key, '.')) {
            // 支持多维数组验证
            $value = $this->getRecursiveData($data, $key);
        } else {
            $value = $data[$key] ?? null;
        }
 
        return $value;
    }
 
    /**
     * 获取数据值
     * @param array  $data 数据
     * @param string $key  数据标识 支持二维
     * @return mixed
     */
    protected function getRecursiveData(array $data, string $key)
    {
        $keys = explode('.', $key);
        foreach ($keys as $key) {
            if (!isset($data[$key])) {
                $value = null;
                break;
            }
            $value = $data = $data[$key];
        }
        return $value;
    }
 
    /**
     * 获取验证规则的错误提示信息
     * @param string $attribute 字段英文名
     * @param string $title     字段描述名
     * @param string $type      验证规则名称
     * @param mixed  $rule      验证规则数据
     * @return string|array
     */
    protected function getRuleMsg(string $attribute, string $title, string $type, $rule)
    {
        if (isset($this->message[$attribute . '.' . $type])) {
            $msg = $this->message[$attribute . '.' . $type];
        } elseif (isset($this->message[$attribute][$type])) {
            $msg = $this->message[$attribute][$type];
        } elseif (isset($this->message[$attribute])) {
            $msg = $this->message[$attribute];
        } elseif (isset($this->typeMsg[$type])) {
            $msg = $this->typeMsg[$type];
        } elseif (str_starts_with($type, 'require')) {
            $msg = $this->typeMsg['require'];
        } else {
            $msg = $title . ($this->lang ? $this->lang->get('not conform to the rules') : '规则不符');
        }
 
        if (is_array($msg)) {
            return $this->errorMsgIsArray($msg, $rule, $title);
        }
 
        return $this->parseErrorMsg($msg, $rule, $title);
    }
 
    /**
     * 获取验证规则的错误提示信息
     * @param string $msg   错误信息
     * @param mixed  $rule  验证规则数据
     * @param string $title 字段描述名
     * @return string|array
     */
    protected function parseErrorMsg(string $msg, $rule, string $title)
    {
        if ($this->lang) {
            if (str_starts_with($msg, '{%')) {
                $msg = $this->lang->get(substr($msg, 2, -1));
            } elseif ($this->lang->has($msg)) {
                $msg = $this->lang->get($msg);
            }
        }
 
        if (is_array($msg)) {
            return $this->errorMsgIsArray($msg, $rule, $title);
        }
 
        // rule若是数组则转为字符串
        if (is_array($rule)) {
            $rule = implode(',', $rule);
        }
 
        if (is_scalar($rule) && str_contains($msg, ':')) {
            // 变量替换
            if (is_string($rule) && str_contains($rule, ',')) {
                $array = array_pad(explode(',', $rule), 3, '');
            } else {
                $array = array_pad([], 3, '');
            }
 
            $msg = str_replace(
                [':attribute', ':1', ':2', ':3'],
                [$title, $array[0], $array[1], $array[2]],
                $msg,
            );
 
            if (str_contains($msg, ':rule')) {
                $msg = str_replace(':rule', (string) $rule, $msg);
            }
        }
 
        return $msg;
    }
 
    /**
     * 错误信息数组处理
     * @param array $msg   错误信息
     * @param mixed  $rule  验证规则数据
     * @param string $title 字段描述名
     * @return array
     */
    protected function errorMsgIsArray(array $msg, $rule, string $title)
    {
        foreach ($msg as $key => $val) {
            if (is_string($val)) {
                $msg[$key] = $this->parseErrorMsg($val, $rule, $title);
            }
        }
        return $msg;
    }
 
    /**
     * 获取数据验证的场景
     * @param string $scene 验证场景
     * @return void
     */
    protected function getScene(string $scene): void
    {
        $method = 'scene' . Str::studly($scene);
        if (method_exists($this, $method)) {
            call_user_func([$this, $method]);
        } elseif (isset($this->scene[$scene])) {
            // 如果设置了验证适用场景
            $this->only = $this->scene[$scene];
        }
    }
 
    /**
     * 获取验证分组
     * @param string $group 分组名
     * @return mixed
     */
    protected function getGroupRules(string $group)
    {
        $method = 'rules' . Str::studly($group);
        if (method_exists($this, $method)) {
            $validate = call_user_func_array([$this, $method], [new self()]);
            return $validate->alias($this->alias)
                ->batch($this->batch)
                ->failException($this->failException);
        }
        return $this->group[$group] ?? [];
    }
 
    /**
     * 动态方法 直接调用is方法进行验证
     * @param string $method 方法名
     * @param array  $args   调用参数
     * @return bool
     */
    public function __call($method, $args)
    {
        if ('is' == strtolower(substr($method, 0, 2))) {
            $method = substr($method, 2);
        }
 
        array_push($args, lcfirst($method));
 
        return call_user_func_array([$this, 'is'], $args);
    }
}