截流自动化的商城平台
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.

BaseRequest.php 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\server\DouGong;
  20. use Alipay\EasySDK\Kernel\Base;
  21. use app\common\enum\PayEnum;
  22. use app\common\model\Pay;
  23. use app\common\model\user\User;
  24. use app\common\model\user\UserAuth;
  25. use app\common\server\ConfigServer;
  26. use app\common\server\WeChatServer;
  27. use Requests;
  28. use think\facade\Log;
  29. /**
  30. * @notes 请求
  31. * 文档 https://paas.huifu.com/partners/api/#/
  32. * author lbzy
  33. * @datetime 2023-09-28 09:27:16
  34. * @class Request
  35. * @package app\common\server\DouGong
  36. */
  37. abstract class BaseRequest
  38. {
  39. protected $params;
  40. protected $userInfo;
  41. protected $userAuth;
  42. protected $config;
  43. protected $request_host = 'https://api.huifu.com';
  44. protected $request_uri;
  45. protected $request_data = [
  46. 'sys_id' => '',
  47. 'product_id' => '',
  48. 'data' => [],
  49. // 'sign' => '',
  50. ];
  51. protected $request_result = [];
  52. protected $request_success = false;
  53. protected $request_message = '';
  54. /**
  55. * @param array $params 参数
  56. * $params['pay_way'] 支付方式
  57. * $params['client'] 用户client
  58. * $params['form'] 订单类型 trade:商城总订单 order:商城订单 recharge:充值订单 integral:积分订单
  59. * $params['order_id'] 订单id
  60. * $params['user_id'] 用户id
  61. */
  62. function __construct(array $params)
  63. {
  64. $this->params = $params;
  65. $this->initAdminConfig();
  66. $this->initBaseParams();
  67. $this->initialize();
  68. }
  69. protected function initialize(){}
  70. protected function initBaseParams()
  71. {
  72. $this->request_data['sys_id'] = $this->config['sys_id'];
  73. $this->request_data['product_id'] = $this->config['product_id'];
  74. // $this->request_data['huifu_id'] = $this->config['huifu_id'];
  75. }
  76. function initAdminConfig()
  77. {
  78. $adminConfig = ConfigServer::get('hfdg_dev_set');
  79. $this->config['sys_id'] = $adminConfig['sys_id'] ?? '';
  80. $this->config['product_id'] = $adminConfig['product_id'] ?? '';
  81. $this->config['huifu_id'] = $adminConfig['huifu_id'] ?? '';
  82. $this->config['rsa_merch_private_key'] = $adminConfig['rsa_merch_private_key'] ?? '';
  83. $this->config['rsa_merch_public_key'] = $adminConfig['rsa_merch_public_key'] ?? '';
  84. $this->config['rsa_huifu_public_key'] = $adminConfig['rsa_huifu_public_key'] ?? '';
  85. }
  86. protected function beforeRequestCheck() : bool
  87. {
  88. return true;
  89. }
  90. function request(): BaseRequest
  91. {
  92. try {
  93. if (! $this->beforeRequestCheck()) {
  94. throw new \Exception($this->request_message);
  95. }
  96. $data = $this->request_data;
  97. $data['data'] = BaseFunc::get_data_json($data['data']);
  98. $data['sign'] = BaseFunc::sha_with_rsa_sign($data['data'], $this->config['rsa_merch_private_key']);
  99. $result = Requests::post($this->request_host . $this->request_uri, [
  100. 'Content-Type' => 'application/json',
  101. 'charset' => 'UTF-8',
  102. ], BaseFunc::json($data));
  103. $this->request_result = (array) json_decode($result->body, true);
  104. if (app()->isDebug()) {
  105. Log::write($this->request_result, 'hfdg_request_result');
  106. Log::write($result->body, 'hfdg_request_result_body');
  107. Log::write($this->params, 'hfdg_request_params');
  108. }
  109. } catch(\Throwable $e) {
  110. $this->request_message = $e->getMessage();
  111. Log::write($e->__toString(), 'hfdg_request_error');
  112. }
  113. $this->checkRequestResult();
  114. return $this;
  115. }
  116. private function checkRequestResult()
  117. {
  118. if (! isset($this->request_result['data']['resp_code'])) {
  119. $this->request_success = false;
  120. $this->request_message = $this->request_message ? : '请求失败';
  121. } else {
  122. // 00000000 受理成功 00000100 下单成功
  123. $this->request_success = in_array($this->request_result['data']['resp_code'], [ '00000000', '00000100' ]);
  124. $this->request_message = $this->request_result['data']['resp_desc'];
  125. if (! $this->request_success) {
  126. Log::write($this->request_result, 'hfdg_request_result');
  127. }
  128. }
  129. }
  130. function getRequestResult()
  131. {
  132. return $this->request_result;
  133. }
  134. }