Shande.php 4.1 KB

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