H5FastPay.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?php
  2. namespace app\common\library\shande;
  3. use app\common\model\Config;
  4. class H5FastPay extends Common
  5. {
  6. public $productId = '00000008';
  7. // 参数映射
  8. public function apiMap()
  9. {
  10. return array(
  11. 'orderPay' => array(
  12. 'method' => 'sandpay.trade.pay',
  13. 'url' => '/gateway/api/order/pay',
  14. ),
  15. 'orderQuery' => array(
  16. 'method' => 'sandpay.trade.query',
  17. 'url' => '/gateway/api/order/query',
  18. ),
  19. 'orderRefund' => array(
  20. 'method' => 'sandpay.trade.refund',
  21. 'url' => '/gateway/api/order/refund',
  22. ),
  23. 'orderMcAutoNotice' => array(
  24. 'method' => 'sandpay.trade.notify',
  25. 'url' => '/gateway/api/order/mcAutoNotice',
  26. ),
  27. 'clearfileDownload' => array(
  28. 'method' => 'sandpay.trade.download',
  29. 'url' => '/gateway/api/clearfile/download',
  30. ),
  31. );
  32. }
  33. public static function payToCard($cardNo,$cardUserName,$amount,$orderNo,$remark=''){
  34. $class=new self;
  35. require __DIR__.'/func.php';
  36. $info=array(
  37. 'transCode' => 'RTPM', // 实时代付
  38. 'merId' => $class->sellerMid, // 此处更换商户号
  39. 'url' => '/agentpay',
  40. 'pt' => array(
  41. 'version' => '01',
  42. 'productId' => '00000004',
  43. 'orderCode' => $orderNo,
  44. 'tranTime' => date('YmdHis'),
  45. 'tranAmt' => str_pad($amount*100,12,'0',STR_PAD_LEFT),
  46. 'currencyCode' => '156',
  47. 'accAttr' => '0',
  48. 'accNo' => $cardNo,
  49. 'accType' => '4',
  50. 'accName' => $cardUserName,
  51. //'bankName' => 'cbc',
  52. 'remark' => $remark, // 这个字段不要出现“代付”的字样
  53. 'payMode' => '1',
  54. 'channelType' => '07'
  55. )
  56. );
  57. try {
  58. //--------------------------------------------1、基础参数配置------------------------------------------------
  59. $api = 'https://caspay.sandpay.com.cn/agent-main/openapi/';
  60. $publicKeyPath = ROOT_PATH.'/cert/sand.cer'; //!!! 公钥文件,这个不要改动
  61. $priKeyPath = $class->privateKeyPath;
  62. //const PUB_KEY_PATH = 'cert/SAND_PUBLIC_KEY.cer'; //公钥文件
  63. //const PRI_KEY_PATH_2 = 'cert/MID_RSA_PRIVATE_KEY.pfx'; //私钥文件
  64. $priPwd=$class->privateKeyPwd;
  65. // 获取公私钥匙
  66. $priKey = loadPk12Cert($priKeyPath, $priPwd);
  67. //$priKey_2 = loadPk12Cert(PRI_KEY_PATH_2, CERT_PWD);
  68. $pubKey = loadX509Cert($publicKeyPath);
  69. // step1: 拼接报文及配置
  70. $transCode = $info['transCode']; // 交易码
  71. $accessType = '0'; // 接入类型 0-商户接入,默认;1-平台接入
  72. $merId = $info['merId']; // 此处更换商户号
  73. $path = $info['url']; // 服务地址
  74. $pt = $info['pt']; // 报文
  75. // step2: 生成AESKey并使用公钥加密
  76. $AESKey = aes_generate(16);
  77. $encryptKey = RSAEncryptByPub($AESKey, $pubKey);
  78. // step3: 使用AESKey加密报文
  79. $encryptData = AESEncrypt($pt, $AESKey);
  80. // step4: 使用私钥签名报文
  81. $sign = sign($pt, $priKey);
  82. // step5: 拼接post数据
  83. $post = array(
  84. 'transCode' => $transCode,
  85. 'accessType' => $accessType,
  86. 'merId' => $merId,
  87. 'encryptKey' => $encryptKey,
  88. 'encryptData' => $encryptData,
  89. 'sign' => $sign
  90. );
  91. // step6: post请求
  92. $result = http_post_json($api . $path, $post);
  93. parse_str($result, $arr);
  94. // step7: 使用私钥解密AESKey
  95. $decryptAESKey = RSADecryptByPri($arr['encryptKey'], $priKey);
  96. // step8: 使用解密后的AESKey解密报文
  97. $decryptPlainText = AESDecrypt($arr['encryptData'], $decryptAESKey);
  98. // step9: 使用公钥验签报文
  99. verify($decryptPlainText, $arr['sign'], $pubKey);
  100. } catch (\Exception $e) {
  101. throw $e;
  102. }
  103. }
  104. }