截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ShopDataSetValidate.php 6.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop100%开源免费商用商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 开源版本可自由商用,可去除界面版权logo
  7. // | 商业版本务必购买商业授权,以免引起法律纠纷
  8. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  9. // | gitee下载:https://gitee.com/likeshop_gitee
  10. // | github下载:https://github.com/likeshop-github
  11. // | 访问官网:https://www.likeshop.cn
  12. // | 访问社区:https://home.likeshop.cn
  13. // | 访问手册:http://doc.likeshop.cn
  14. // | 微信公众号:likeshop技术社区
  15. // | likeshop团队 版权所有 拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshopTeam
  18. // +----------------------------------------------------------------------
  19. // +----------------------------------------------------------------------
  20. // | likeshop100%开源免费商用商城系统
  21. // +----------------------------------------------------------------------
  22. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  23. // | 开源版本可自由商用,可去除界面版权logo
  24. // | 商业版本务必购买商业授权,以免引起法律纠纷
  25. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  26. // | gitee下载:https://gitee.com/likeshop_gitee
  27. // | github下载:https://github.com/likeshop-github
  28. // | 访问官网:https://www.likeshop.cn
  29. // | 访问社区:https://home.likeshop.cn
  30. // | 访问手册:http://doc.likeshop.cn
  31. // | 微信公众号:likeshop技术社区
  32. // | likeshop团队 版权所有 拥有最终解释权
  33. // +----------------------------------------------------------------------
  34. // | author: likeshopTeam
  35. // +----------------------------------------------------------------------
  36. namespace app\shopapi\validate;
  37. use app\common\basics\Validate;
  38. use app\common\enum\ShopEnum;
  39. /**
  40. * 商家信息验证
  41. * Class ShopInfoValidate
  42. * @package app\shopapi\validate
  43. */
  44. class ShopDataSetValidate extends Validate
  45. {
  46. protected $rule = [
  47. 'dataset' => 'require|checkData',
  48. ];
  49. protected $message = [
  50. 'dataset.require' => '请输入信息',
  51. ];
  52. protected $allow_fields = [
  53. 'nickname', //联系人
  54. 'mobile' => 'checkMobile', //联系电话
  55. 'intro', //简介
  56. 'is_run' => 'checkRund', //营业状态
  57. 'province_id', //省id
  58. 'city_id', //城市id
  59. 'district_id', //区id
  60. 'address', //详情地址
  61. 'refund_address' => 'checkRefund', //退款地址
  62. 'weekdays' => 'checkWeekDay', //营业时间
  63. 'run_start_time' => 'checkTime', //每天营业开始时间
  64. 'run_end_time' => 'checkTime', //每天营业结束时间
  65. 'open_invoice', //发票开关 0- 关闭 1-开启
  66. 'spec_invoice', //是否支持专票 0-不支持 1-支持
  67. ];
  68. protected function checkData($dataset,$rule,$data){
  69. foreach ($dataset as $field => $value){
  70. $allow_fields = array_keys($this->allow_fields);
  71. if(!in_array($field,$allow_fields)){
  72. return '该信息不允许修改';
  73. }
  74. $func = $this->allow_fields[$field] ?? '';
  75. if($func){
  76. $result = call_user_func([ShopDataSetValidate::class,$func],$data);
  77. if(true !== $result){
  78. return $result;
  79. }
  80. }
  81. }
  82. return true;
  83. }
  84. //验证手机号码是否正确
  85. protected function checkMobile($data){
  86. $mobile = $data['mobile'];
  87. $check = $this->checkRule($mobile, 'mobile');
  88. if(false === $check){
  89. return '手机号格式错误';
  90. }
  91. return true;
  92. }
  93. //验证营业状态是否正确
  94. protected function checkRund($data){
  95. if(!in_array($data['is_run'],[ShopEnum::SHOP_RUN_CLOSE,ShopEnum::SHOP_RUN_OPEN])){
  96. return '营业状态错误';
  97. }
  98. return true;
  99. }
  100. //验证营业天是否正确
  101. protected function checkWeekDay($data){
  102. foreach ($data['weekdays'] as $day){
  103. if(!in_array($day,[0,1,2,3,4,5,6])){
  104. return '工作日错误';
  105. }
  106. }
  107. return true;
  108. }
  109. //验证时间是否正确
  110. protected function checkTime($data){
  111. if(empty($data['run_start_time']) || empty($data['run_end_time'])){
  112. return '请选择营业时间';
  113. }
  114. if($data['run_start_time'] >= $data['run_end_time']){
  115. return '营业时间错误';
  116. }
  117. return true;
  118. }
  119. //验证退款信息
  120. protected function checkRefund($data){
  121. $refund_address = $data['refund_address'];
  122. if(empty($refund_address)){
  123. return '请输入退款地址';
  124. }
  125. foreach ($refund_address as $index => $value){
  126. switch ($index){
  127. case "nickname":
  128. if(empty($value)){
  129. return '请输入退款联系人';
  130. }
  131. break;
  132. case "mobile":
  133. $check = $this->checkRule($value, 'mobile');
  134. if(false === $check){
  135. return '手机号格式错误';
  136. }
  137. break;
  138. case "province_id":
  139. if(empty($value)){
  140. return '请选择省份';
  141. }
  142. break;
  143. case "city_id":
  144. if(empty($value)){
  145. return '请选择城市';
  146. }
  147. break;
  148. case "district_id":
  149. if(empty($value)){
  150. return '请选择地区';
  151. }
  152. break;
  153. case "address":
  154. if(empty($value)){
  155. return '请输入详情地址';
  156. }
  157. break;
  158. }
  159. }
  160. return true;
  161. }
  162. }