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

BaseAsync.php 3.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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 app\common\enum\IntegralOrderEnum;
  21. use app\common\enum\PayEnum;
  22. use app\common\logic\IntegralOrderRefundLogic;
  23. use app\common\logic\PayNotifyLogic;
  24. use app\common\model\integral\IntegralOrder;
  25. use app\common\model\order\Order;
  26. use app\common\model\order\OrderTrade;
  27. use app\common\model\RechargeOrder;
  28. use app\common\server\ConfigServer;
  29. use think\facade\Log;
  30. class BaseAsync
  31. {
  32. protected $async_result = [];
  33. protected $async_success = false;
  34. protected $async_message = '异步信息处理失败';
  35. protected $config;
  36. protected $params;
  37. function __construct(array $result, array $params = [])
  38. {
  39. $this->async_result = $result;
  40. $this->params = $params;
  41. $this->initAdminConfig();
  42. }
  43. private function initAdminConfig()
  44. {
  45. $adminConfig = ConfigServer::get('hfdg_dev_set');
  46. $this->config['rsa_huifu_public_key'] = $adminConfig['rsa_huifu_public_key'] ?? '';
  47. }
  48. function checkAsync()
  49. {
  50. $data = $this->async_result;
  51. try {
  52. if (! isset($data['resp_data']) || ! isset($data['sign'])) {
  53. return $this;
  54. }
  55. if (! BaseFunc::verifySign_sort($data['sign'], $data['resp_data'], $this->config['rsa_huifu_public_key'])) {
  56. Log::write('验签失败', 'hfdg_async_data');
  57. return $this;
  58. }
  59. Log::write($data, 'hfdg_async_data');
  60. $data['resp_data'] = (array) json_decode($this->async_result['resp_data'], true);
  61. // 00000000 受理成功 00000100 下单成功
  62. $this->async_success = in_array($data['resp_data']['resp_code'], [ '00000000', '00000100' ]);
  63. $this->async_message = $data['resp_data']['resp_desc'];
  64. } catch(\Throwable $e) {
  65. $this->async_message = $e->getMessage();
  66. Log::write($e->__toString(), 'hfdg_async_error');
  67. }
  68. return $this;
  69. }
  70. function getCheckSuccess()
  71. {
  72. return $this->async_success;
  73. }
  74. }