TransferType.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. // +---------------------------------------------------------------------+
  3. // | NiuCloud | [ WE CAN DO IT JUST NiuCloud ]  |
  4. // +---------------------------------------------------------------------+
  5. // | Copy right 2019-2029 www.niucloud.com  |
  6. // +---------------------------------------------------------------------+
  7. // | Author | NiuCloud <niucloud@outlook.com>  |
  8. // +---------------------------------------------------------------------+
  9. // | Repository | https://github.com/niucloud/framework.git  |
  10. // +---------------------------------------------------------------------+
  11. declare (strict_types = 1);
  12. namespace addon\alipay\event;
  13. use addon\alipay\model\Config;
  14. class TransferType
  15. {
  16. public function handle(array $param)
  17. {
  18. $app_type = isset($param['app_type']) ? $param['app_type'] : '';
  19. if(!empty($app_type)){
  20. if (!in_array($app_type, [ "h5", "app", "pc", "aliapp" ])) {
  21. return '';
  22. }
  23. $config_model = new Config();
  24. $config_result = $config_model->getPayConfig();
  25. $config = $config_result["data"]["value"] ?? [];
  26. $transfer_status = $config["transfer_status"] ?? 0;
  27. if($transfer_status == 0){
  28. return '';
  29. }
  30. }
  31. $info = array(
  32. "type" => "alipay",
  33. "type_name" => "支付宝",
  34. );
  35. return $info;
  36. }
  37. }