AopCertClient.php 48 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237
  1. <?php
  2. require_once 'AopEncrypt.php';
  3. require_once 'AopCertification.php';
  4. require_once 'EncryptParseItem.php';
  5. require_once 'EncryptResponseData.php';
  6. require_once 'SignData.php';
  7. class AopCertClient
  8. {
  9. //应用证书地址
  10. public $appCertSN;
  11. //支付宝公钥证书地址
  12. public $alipayCertSN;
  13. //支付宝根证书地址
  14. public $alipayRootCertSN;
  15. //支付宝根证书地址
  16. public $alipayRootCertContent;
  17. //是否校验支付宝公钥证书
  18. public $isCheckAlipayPublicCert;
  19. //应用ID
  20. public $appId;
  21. //私钥文件路径
  22. public $rsaPrivateKeyFilePath;
  23. //私钥值
  24. public $rsaPrivateKey;
  25. //网关
  26. public $gatewayUrl = "https://openapi.alipay.com/gateway.do";
  27. //返回数据格式
  28. public $format = "json";
  29. //api版本
  30. public $apiVersion = "1.0";
  31. // 表单提交字符集编码
  32. public $postCharset = "UTF-8";
  33. //使用文件读取文件格式,请只传递该值
  34. public $alipayPublicKey = null;
  35. //使用读取字符串格式,请只传递该值
  36. public $alipayrsaPublicKey;
  37. public $debugInfo = false;
  38. //签名类型
  39. public $signType = "RSA";
  40. //加密密钥和类型
  41. public $encryptKey;
  42. public $encryptType = "AES";
  43. protected $alipaySdkVersion = "alipay-sdk-php-2020-04-15";
  44. private $fileCharset = "UTF-8";
  45. private $RESPONSE_SUFFIX = "_response";
  46. private $ERROR_RESPONSE = "error_response";
  47. private $SIGN_NODE_NAME = "sign";
  48. private $ALIPAY_CERT_SN = "alipay_cert_sn";
  49. //加密XML节点名称
  50. private $ENCRYPT_XML_NODE_NAME = "response_encrypted";
  51. private $needEncrypt = false;
  52. private $targetServiceUrl = "";
  53. /**
  54. * 从证书中提取序列号
  55. * @param $cert
  56. * @return string
  57. */
  58. public function getCertSN($certPath)
  59. {
  60. $cert = file_get_contents($certPath);
  61. $ssl = openssl_x509_parse($cert);
  62. $SN = md5(array2string(array_reverse($ssl['issuer'])) . $ssl['serialNumber']);
  63. return $SN;
  64. }
  65. /**
  66. * 提取根证书序列号
  67. * @param $cert 根证书
  68. * @return string|null
  69. */
  70. public function getRootCertSN($certPath)
  71. {
  72. $cert = file_get_contents($certPath);
  73. $this->alipayRootCertContent = $cert;
  74. $array = explode("-----END CERTIFICATE-----", $cert);
  75. $SN = null;
  76. for ($i = 0; $i < count($array) - 1; $i++) {
  77. $ssl[$i] = openssl_x509_parse($array[$i] . "-----END CERTIFICATE-----");
  78. if(strpos($ssl[$i]['serialNumber'],'0x') === 0){
  79. $ssl[$i]['serialNumber'] = $this->hex2dec($ssl[$i]['serialNumber']);
  80. }
  81. if ($ssl[$i]['signatureTypeLN'] == "sha1WithRSAEncryption" || $ssl[$i]['signatureTypeLN'] == "sha256WithRSAEncryption") {
  82. if ($SN == null) {
  83. $SN = md5(array2string(array_reverse($ssl[$i]['issuer'])) . $ssl[$i]['serialNumber']);
  84. } else {
  85. $SN = $SN . "_" . md5(array2string(array_reverse($ssl[$i]['issuer'])) . $ssl[$i]['serialNumber']);
  86. }
  87. }
  88. }
  89. return $SN;
  90. }
  91. /**
  92. * 0x转高精度数字
  93. * @param $hex
  94. * @return int|string
  95. */
  96. function hex2dec($hex)
  97. {
  98. $dec = 0;
  99. $len = strlen($hex);
  100. for ($i = 1; $i <= $len; $i++) {
  101. $dec = bcadd($dec, bcmul(strval(hexdec($hex[$i - 1])), bcpow('16', strval($len - $i))));
  102. }
  103. return round($dec,0);
  104. }
  105. /**
  106. * 从证书中提取公钥
  107. * @param $cert
  108. * @return mixed
  109. */
  110. public function getPublicKey($certPath)
  111. {
  112. $cert = file_get_contents($certPath);
  113. $pkey = openssl_pkey_get_public($cert);
  114. $keyData = openssl_pkey_get_details($pkey);
  115. $public_key = str_replace('-----BEGIN PUBLIC KEY-----', '', $keyData['key']);
  116. $public_key = trim(str_replace('-----END PUBLIC KEY-----', '', $public_key));
  117. return $public_key;
  118. }
  119. /**
  120. * 验证签名
  121. * 在使用本方法前,必须初始化AopCertClient且传入公钥参数。
  122. * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
  123. *
  124. * @param $params
  125. * @param $rsaPublicKeyFilePath
  126. * @param string $signType
  127. * @return bool
  128. */
  129. public function rsaCheckV1($params, $rsaPublicKeyFilePath,$signType='RSA') {
  130. $sign = $params['sign'];
  131. unset($params['sign']);
  132. unset($params['sign_type']);
  133. return $this->verify($this->getCheckSignContent($params), $sign, $rsaPublicKeyFilePath,$signType);
  134. }
  135. /**
  136. * 验证签名
  137. * 在使用本方法前,必须初始化AopCertClient且传入公钥参数。
  138. * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
  139. *
  140. * @param $params
  141. * @param $rsaPublicKeyFilePath
  142. * @param string $signType
  143. * @return bool
  144. */
  145. public function rsaCheckV2($params, $rsaPublicKeyFilePath, $signType='RSA') {
  146. $sign = $params['sign'];
  147. unset($params['sign']);
  148. unset($params['sign_type']);
  149. return $this->verify($this->getCheckSignContent($params), $sign, $rsaPublicKeyFilePath, $signType);
  150. }
  151. function getCheckSignContent($params)
  152. {
  153. ksort($params);
  154. $stringToBeSigned = "";
  155. $i = 0;
  156. foreach ($params as $k => $v) {
  157. // 转换成目标字符集
  158. $v = $this->characet($v, $this->postCharset);
  159. if ($i == 0) {
  160. $stringToBeSigned .= "$k" . "=" . "$v";
  161. } else {
  162. $stringToBeSigned .= "&" . "$k" . "=" . "$v";
  163. }
  164. $i++;
  165. }
  166. unset ($k, $v);
  167. return $stringToBeSigned;
  168. }
  169. /**
  170. * 在使用本方法前,必须初始化AopCertClient且传入公私钥参数。
  171. * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
  172. **/
  173. public function checkSignAndDecrypt($params, $rsaPublicKeyPem, $rsaPrivateKeyPem, $isCheckSign, $isDecrypt, $signType='RSA') {
  174. $charset = $params['charset'];
  175. $bizContent = $params['biz_content'];
  176. if ($isCheckSign) {
  177. if (!$this->rsaCheckV2($params, $rsaPublicKeyPem, $signType)) {
  178. echo "<br/>checkSign failure<br/>";
  179. exit;
  180. }
  181. }
  182. if ($isDecrypt) {
  183. return $this->rsaDecrypt($bizContent, $rsaPrivateKeyPem, $charset);
  184. }
  185. return $bizContent;
  186. }
  187. /**
  188. * 在使用本方法前,必须初始化AopCertClient且传入公私钥参数。
  189. * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
  190. **/
  191. public function encryptAndSign($bizContent, $rsaPublicKeyPem, $rsaPrivateKeyPem, $charset, $isEncrypt, $isSign, $signType='RSA') {
  192. // 加密,并签名
  193. if ($isEncrypt && $isSign) {
  194. $encrypted = $this->rsaEncrypt($bizContent, $rsaPublicKeyPem, $charset);
  195. $sign = $this->sign($encrypted, $signType);
  196. $response = "<?xml version=\"1.0\" encoding=\"$charset\"?><alipay><response>$encrypted</response><encryption_type>RSA</encryption_type><sign>$sign</sign><sign_type>$signType</sign_type></alipay>";
  197. return $response;
  198. }
  199. // 加密,不签名
  200. if ($isEncrypt && (!$isSign)) {
  201. $encrypted = $this->rsaEncrypt($bizContent, $rsaPublicKeyPem, $charset);
  202. $response = "<?xml version=\"1.0\" encoding=\"$charset\"?><alipay><response>$encrypted</response><encryption_type>$signType</encryption_type></alipay>";
  203. return $response;
  204. }
  205. // 不加密,但签名
  206. if ((!$isEncrypt) && $isSign) {
  207. $sign = $this->sign($bizContent, $signType);
  208. $response = "<?xml version=\"1.0\" encoding=\"$charset\"?><alipay><response>$bizContent</response><sign>$sign</sign><sign_type>$signType</sign_type></alipay>";
  209. return $response;
  210. }
  211. // 不加密,不签名
  212. $response = "<?xml version=\"1.0\" encoding=\"$charset\"?>$bizContent";
  213. return $response;
  214. }
  215. /**
  216. * 在使用本方法前,必须初始化AopCertClient且传入公私钥参数。
  217. **/
  218. public function rsaEncrypt($data, $rsaPublicKeyFilePath, $charset) {
  219. if($this->checkEmpty($this->alipayPublicKey)){
  220. //读取字符串
  221. $pubKey= $this->alipayrsaPublicKey;
  222. $res = "-----BEGIN PUBLIC KEY-----\n" .
  223. wordwrap($pubKey, 64, "\n", true) .
  224. "\n-----END PUBLIC KEY-----";
  225. }else {
  226. //读取公钥文件
  227. $pubKey = file_get_contents($rsaPublicKeyFilePath);
  228. //转换为openssl格式密钥
  229. $res = openssl_get_publickey($pubKey);
  230. }
  231. ($res) or die('支付宝RSA公钥错误。请检查公钥文件格式是否正确');
  232. $blocks = $this->splitCN($data, 0, 30, $charset);
  233. $chrtext  = null;
  234. $encodes  = array();
  235. foreach ($blocks as $n => $block) {
  236. if (!openssl_public_encrypt($block, $chrtext , $res)) {
  237. echo "<br/>" . openssl_error_string() . "<br/>";
  238. }
  239. $encodes[] = $chrtext ;
  240. }
  241. $chrtext = implode(",", $encodes);
  242. return base64_encode($chrtext);
  243. }
  244. /**
  245. * 在使用本方法前,必须初始化AopCertClient且传入公私钥参数。
  246. * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
  247. **/
  248. public function rsaDecrypt($data, $rsaPrivateKeyPem, $charset) {
  249. if($this->checkEmpty($this->rsaPrivateKeyFilePath)){
  250. //读字符串
  251. $priKey=$this->rsaPrivateKey;
  252. $res = "-----BEGIN RSA PRIVATE KEY-----\n" .
  253. wordwrap($priKey, 64, "\n", true) .
  254. "\n-----END RSA PRIVATE KEY-----";
  255. }else {
  256. $priKey = file_get_contents($this->rsaPrivateKeyFilePath);
  257. $res = openssl_get_privatekey($priKey);
  258. }
  259. ($res) or die('您使用的私钥格式错误,请检查RSA私钥配置');
  260. //转换为openssl格式密钥
  261. $decodes = explode(',', $data);
  262. $strnull = "";
  263. $dcyCont = "";
  264. foreach ($decodes as $n => $decode) {
  265. if (!openssl_private_decrypt($decode, $dcyCont, $res)) {
  266. echo "<br/>" . openssl_error_string() . "<br/>";
  267. }
  268. $strnull .= $dcyCont;
  269. }
  270. return $strnull;
  271. }
  272. function splitCN($cont, $n = 0, $subnum, $charset) {
  273. //$len = strlen($cont) / 3;
  274. $arrr = array();
  275. for ($i = $n; $i < strlen($cont); $i += $subnum) {
  276. $res = $this->subCNchar($cont, $i, $subnum, $charset);
  277. if (!empty ($res)) {
  278. $arrr[] = $res;
  279. }
  280. }
  281. return $arrr;
  282. }
  283. function subCNchar($str, $start = 0, $length, $charset = "gbk") {
  284. if (strlen($str) <= $length) {
  285. return $str;
  286. }
  287. $re['utf-8'] = "/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xff][\x80-\xbf]{3}/";
  288. $re['gb2312'] = "/[\x01-\x7f]|[\xb0-\xf7][\xa0-\xfe]/";
  289. $re['gbk'] = "/[\x01-\x7f]|[\x81-\xfe][\x40-\xfe]/";
  290. $re['big5'] = "/[\x01-\x7f]|[\x81-\xfe]([\x40-\x7e]|\xa1-\xfe])/";
  291. preg_match_all($re[$charset], $str, $match);
  292. $slice = join("", array_slice($match[0], $start, $length));
  293. return $slice;
  294. }
  295. /**
  296. * 生成用于调用收银台SDK的字符串
  297. * @param $request SDK接口的请求参数对象
  298. * @param $appAuthToken 三方应用授权token
  299. * @return string
  300. */
  301. public function sdkExecute($request, $appAuthToken = null) {
  302. $this->setupCharsets($request);
  303. $params['app_id'] = $this->appId;
  304. $params['method'] = $request->getApiMethodName();
  305. $params['format'] = $this->format;
  306. $params['sign_type'] = $this->signType;
  307. $params['timestamp'] = date("Y-m-d H:i:s");
  308. $params['alipay_sdk'] = $this->alipaySdkVersion;
  309. $params['charset'] = $this->postCharset;
  310. $version = $request->getApiVersion();
  311. $params['version'] = $this->checkEmpty($version) ? $this->apiVersion : $version;
  312. $params["app_cert_sn"] = $this->appCertSN;
  313. $params["alipay_root_cert_sn"] = $this->alipayRootCertSN;
  314. if ($notify_url = $request->getNotifyUrl()) {
  315. $params['notify_url'] = $notify_url;
  316. }
  317. $params['app_auth_token'] = $appAuthToken;
  318. $dict = $request->getApiParas();
  319. $params['biz_content'] = $dict['biz_content'];
  320. ksort($params);
  321. $params['sign'] = $this->generateSign($params, $this->signType);
  322. foreach ($params as &$value) {
  323. $value = $this->characet($value, $params['charset']);
  324. }
  325. return http_build_query($params);
  326. }
  327. /**
  328. * 页面提交执行方法
  329. * @param $request 跳转类接口的request
  330. * @param string $httpmethod 提交方式,两个值可选:post、get;
  331. * @param null $appAuthToken 三方应用授权token
  332. * @return 构建好的、签名后的最终跳转URL(GET)或String形式的form(POST)
  333. * @throws Exception
  334. */
  335. public function pageExecute($request, $httpmethod = "POST", $appAuthToken = null) {
  336. $this->setupCharsets($request);
  337. if (strcasecmp($this->fileCharset, $this->postCharset)) {
  338. throw new Exception("文件编码:[" . $this->fileCharset . "] 与表单提交编码:[" . $this->postCharset . "]两者不一致!");
  339. }
  340. $iv=null;
  341. if(!$this->checkEmpty($request->getApiVersion())){
  342. $iv=$request->getApiVersion();
  343. }else{
  344. $iv=$this->apiVersion;
  345. }
  346. //组装系统参数
  347. $sysParams["app_id"] = $this->appId;
  348. $sysParams["version"] = $iv;
  349. $sysParams["format"] = $this->format;
  350. $sysParams["sign_type"] = $this->signType;
  351. $sysParams["method"] = $request->getApiMethodName();
  352. $sysParams["timestamp"] = date("Y-m-d H:i:s");
  353. $sysParams["alipay_sdk"] = $this->alipaySdkVersion;
  354. $sysParams["terminal_type"] = $request->getTerminalType();
  355. $sysParams["terminal_info"] = $request->getTerminalInfo();
  356. $sysParams["prod_code"] = $request->getProdCode();
  357. $sysParams["notify_url"] = $request->getNotifyUrl();
  358. $sysParams["return_url"] = $request->getReturnUrl();
  359. $sysParams["charset"] = $this->postCharset;
  360. $sysParams["app_auth_token"] = $appAuthToken;
  361. $sysParams["app_cert_sn"] = $this->appCertSN;
  362. $sysParams["alipay_root_cert_sn"] = $this->alipayRootCertSN;
  363. //获取业务参数
  364. $apiParams = $request->getApiParas();
  365. if (method_exists($request,"getNeedEncrypt") &&$request->getNeedEncrypt()){
  366. $sysParams["encrypt_type"] = $this->encryptType;
  367. if ($this->checkEmpty($apiParams['biz_content'])) {
  368. throw new Exception(" api request Fail! The reason : encrypt request is not supperted!");
  369. }
  370. if ($this->checkEmpty($this->encryptKey) || $this->checkEmpty($this->encryptType)) {
  371. throw new Exception(" encryptType and encryptKey must not null! ");
  372. }
  373. if ("AES" != $this->encryptType) {
  374. throw new Exception("加密类型只支持AES");
  375. }
  376. // 执行加密
  377. $enCryptContent = encrypt($apiParams['biz_content'], $this->encryptKey);
  378. $apiParams['biz_content'] = $enCryptContent;
  379. }
  380. $totalParams = array_merge($apiParams, $sysParams);
  381. //待签名字符串
  382. $preSignStr = $this->getSignContent($totalParams);
  383. //签名
  384. $totalParams["sign"] = $this->generateSign($totalParams, $this->signType);
  385. if ("GET" == strtoupper($httpmethod)) {
  386. //value做urlencode
  387. $preString=$this->getSignContentUrlencode($totalParams);
  388. //拼接GET请求串
  389. $requestUrl = $this->gatewayUrl."?".$preString;
  390. return $requestUrl;
  391. } else {
  392. //拼接表单字符串
  393. return $this->buildRequestForm($totalParams);
  394. }
  395. }
  396. //此方法对value做urlencode
  397. public function getSignContentUrlencode($params) {
  398. ksort($params);
  399. $stringToBeSigned = "";
  400. $i = 0;
  401. foreach ($params as $k => $v) {
  402. if (false === $this->checkEmpty($v) && "@" != substr($v, 0, 1)) {
  403. // 转换成目标字符集
  404. $v = $this->characet($v, $this->postCharset);
  405. if ($i == 0) {
  406. $stringToBeSigned .= "$k" . "=" . urlencode($v);
  407. } else {
  408. $stringToBeSigned .= "&" . "$k" . "=" . urlencode($v);
  409. }
  410. $i++;
  411. }
  412. }
  413. unset ($k, $v);
  414. return $stringToBeSigned;
  415. }
  416. /**
  417. * 建立请求,以表单HTML形式构造(默认)
  418. * @param $para_temp 请求参数数组
  419. * @return 提交表单HTML文本
  420. */
  421. protected function buildRequestForm($para_temp) {
  422. $sHtml = "<form id='alipaysubmit' name='alipaysubmit' action='".$this->gatewayUrl."?charset=".trim($this->postCharset)."' method='POST'>";
  423. while (list ($key, $val) = $this->fun_adm_each($para_temp)) {
  424. if (false === $this->checkEmpty($val)) {
  425. //$val = $this->characet($val, $this->postCharset);
  426. $val = str_replace("'","&apos;",$val);
  427. //$val = str_replace("\"","&quot;",$val);
  428. $sHtml.= "<input type='hidden' name='".$key."' value='".$val."'/>";
  429. }
  430. }
  431. //submit按钮控件请不要含有name属性
  432. $sHtml = $sHtml."<input type='submit' value='ok' style='display:none;''></form>";
  433. $sHtml = $sHtml."<script>document.forms['alipaysubmit'].submit();</script>";
  434. return $sHtml;
  435. }
  436. protected function fun_adm_each(&$array)
  437. {
  438. $res = array();
  439. $key = key($array);
  440. if ($key !== null) {
  441. next($array);
  442. $res[1] = $res['value'] = $array[$key];
  443. $res[0] = $res['key'] = $key;
  444. } else {
  445. $res = false;
  446. }
  447. return $res;
  448. }
  449. public function execute($request, $authToken = null, $appInfoAuthtoken = null,$targetAppId = null) {
  450. $this->setupCharsets($request);
  451. //如果两者编码不一致,会出现签名验签或者乱码
  452. if (strcasecmp($this->fileCharset, $this->postCharset)) {
  453. throw new Exception("文件编码:[" . $this->fileCharset . "] 与表单提交编码:[" . $this->postCharset . "]两者不一致!");
  454. }
  455. $iv = null;
  456. if (!$this->checkEmpty($request->getApiVersion())) {
  457. $iv = $request->getApiVersion();
  458. } else {
  459. $iv = $this->apiVersion;
  460. }
  461. //组装系统参数
  462. $sysParams["app_id"] = $this->appId;
  463. $sysParams["version"] = $iv;
  464. $sysParams["format"] = $this->format;
  465. $sysParams["sign_type"] = $this->signType;
  466. $sysParams["method"] = $request->getApiMethodName();
  467. $sysParams["timestamp"] = date("Y-m-d H:i:s");
  468. $sysParams["auth_token"] = $authToken;
  469. $sysParams["alipay_sdk"] = $this->alipaySdkVersion;
  470. $sysParams["terminal_type"] = $request->getTerminalType();
  471. $sysParams["terminal_info"] = $request->getTerminalInfo();
  472. $sysParams["prod_code"] = $request->getProdCode();
  473. $sysParams["notify_url"] = $request->getNotifyUrl();
  474. $sysParams["charset"] = $this->postCharset;
  475. $sysParams["app_auth_token"] = $appInfoAuthtoken;
  476. $sysParams["app_cert_sn"] = $this->appCertSN;
  477. $sysParams["alipay_root_cert_sn"] = $this->alipayRootCertSN;
  478. $sysParams["target_app_id"] = $targetAppId;
  479. if(!$this->checkEmpty($this->targetServiceUrl)){
  480. $sysParams["ws_service_url"] = $this->targetServiceUrl;
  481. }
  482. //获取业务参数
  483. $apiParams = $request->getApiParas();
  484. if (method_exists($request,"getNeedEncrypt") && $request->getNeedEncrypt()){
  485. $sysParams["encrypt_type"] = $this->encryptType;
  486. if ($this->checkEmpty($apiParams['biz_content'])) {
  487. throw new Exception(" api request Fail! The reason : encrypt request is not supperted!");
  488. }
  489. if ($this->checkEmpty($this->encryptKey) || $this->checkEmpty($this->encryptType)) {
  490. throw new Exception(" encryptType and encryptKey must not null! ");
  491. }
  492. if ("AES" != $this->encryptType) {
  493. throw new Exception("加密类型只支持AES");
  494. }
  495. // 执行加密
  496. $enCryptContent = encrypt($apiParams['biz_content'], $this->encryptKey);
  497. $apiParams['biz_content'] = $enCryptContent;
  498. }
  499. //签名
  500. $sysParams["sign"] = $this->generateSign(array_merge($apiParams, $sysParams), $this->signType);
  501. //系统参数放入GET请求串
  502. $requestUrl = $this->gatewayUrl . "?";
  503. foreach ($sysParams as $sysParamKey => $sysParamValue) {
  504. $requestUrl .= "$sysParamKey=" . urlencode($this->characet($sysParamValue, $this->postCharset)) . "&";
  505. }
  506. $requestUrl = substr($requestUrl, 0, -1);
  507. //发起HTTP请求
  508. try {
  509. $resp = $this->curl($requestUrl, $apiParams);
  510. } catch (Exception $e) {
  511. $this->logCommunicationError($sysParams["method"], $requestUrl, "HTTP_ERROR_" . $e->getCode(), $e->getMessage());
  512. return false;
  513. }
  514. //解析AOP返回结果
  515. $respWellFormed = false;
  516. // 将返回结果转换本地文件编码
  517. $r = iconv($this->postCharset, $this->fileCharset . "//IGNORE", $resp);
  518. $signData = null;
  519. if ("json" == $this->format) {
  520. $respObject = json_decode($r);
  521. if (null !== $respObject) {
  522. $respWellFormed = true;
  523. $signData = $this->parserJSONSignData($request, $resp, $respObject);
  524. }
  525. } else if ("xml" == $this->format) {
  526. $disableLibxmlEntityLoader = libxml_disable_entity_loader(true);
  527. $respObject = @ simplexml_load_string($resp);
  528. if (false !== $respObject) {
  529. $respWellFormed = true;
  530. $signData = $this->parserXMLSignData($request, $resp);
  531. }
  532. libxml_disable_entity_loader($disableLibxmlEntityLoader);
  533. }
  534. //返回的HTTP文本不是标准JSON或者XML,记下错误日志
  535. if (false === $respWellFormed) {
  536. $this->logCommunicationError($sysParams["method"], $requestUrl, "HTTP_RESPONSE_NOT_WELL_FORMED", $resp);
  537. return false;
  538. }
  539. // 验签
  540. $this->checkResponseSign($request, $signData, $resp, $respObject);
  541. // 解密
  542. if (method_exists($request,"getNeedEncrypt") &&$request->getNeedEncrypt()){
  543. if ("json" == $this->format) {
  544. $resp = $this->encryptJSONSignSource($request, $resp);
  545. // 将返回结果转换本地文件编码
  546. $r = iconv($this->postCharset, $this->fileCharset . "//IGNORE", $resp);
  547. $respObject = json_decode($r);
  548. }else{
  549. $resp = $this->encryptXMLSignSource($request, $resp);
  550. $r = iconv($this->postCharset, $this->fileCharset . "//IGNORE", $resp);
  551. $disableLibxmlEntityLoader = libxml_disable_entity_loader(true);
  552. $respObject = @ simplexml_load_string($r);
  553. libxml_disable_entity_loader($disableLibxmlEntityLoader);
  554. }
  555. }
  556. return $respObject;
  557. }
  558. /**
  559. * 设置编码格式
  560. * @param $request
  561. */
  562. private function setupCharsets($request) {
  563. if ($this->checkEmpty($this->postCharset)) {
  564. $this->postCharset = 'UTF-8';
  565. }
  566. $str = preg_match('/[\x80-\xff]/', $this->appId) ? $this->appId : print_r($request, true);
  567. $this->fileCharset = mb_detect_encoding($str, "UTF-8, GBK") == 'UTF-8' ? 'UTF-8' : 'GBK';
  568. }
  569. /**
  570. * 校验$value是否非空
  571. * if not set ,return true;
  572. * if is null , return true;
  573. **/
  574. protected function checkEmpty($value) {
  575. if (!isset($value))
  576. return true;
  577. if ($value === null)
  578. return true;
  579. if (trim($value) === "")
  580. return true;
  581. return false;
  582. }
  583. /**
  584. * 加签
  585. * @param $params
  586. * @param string $signType
  587. * @return mixed
  588. */
  589. public function generateSign($params, $signType = "RSA") {
  590. return $this->sign($this->getSignContent($params), $signType);
  591. }
  592. public function rsaSign($params, $signType = "RSA") {
  593. return $this->sign($this->getSignContent($params), $signType);
  594. }
  595. protected function sign($data, $signType = "RSA") {
  596. if($this->checkEmpty($this->rsaPrivateKeyFilePath)){
  597. $priKey=$this->rsaPrivateKey;
  598. $res = "-----BEGIN RSA PRIVATE KEY-----\n" .
  599. wordwrap($priKey, 64, "\n", true) .
  600. "\n-----END RSA PRIVATE KEY-----";
  601. }else {
  602. $priKey = file_get_contents($this->rsaPrivateKeyFilePath);
  603. $res = openssl_get_privatekey($priKey);
  604. }
  605. ($res) or die('您使用的私钥格式错误,请检查RSA私钥配置');
  606. if ("RSA2" == $signType) {
  607. openssl_sign($data, $sign, $res, OPENSSL_ALGO_SHA256);
  608. } else {
  609. openssl_sign($data, $sign, $res);
  610. }
  611. if(!$this->checkEmpty($this->rsaPrivateKeyFilePath)){
  612. openssl_free_key($res);
  613. }
  614. $sign = base64_encode($sign);
  615. return $sign;
  616. }
  617. public function getSignContent($params) {
  618. ksort($params);
  619. $stringToBeSigned = "";
  620. $i = 0;
  621. foreach ($params as $k => $v) {
  622. if (false === $this->checkEmpty($v) && "@" != substr($v, 0, 1)) {
  623. // 转换成目标字符集
  624. $v = $this->characet($v, $this->postCharset);
  625. if ($i == 0) {
  626. $stringToBeSigned .= "$k" . "=" . "$v";
  627. } else {
  628. $stringToBeSigned .= "&" . "$k" . "=" . "$v";
  629. }
  630. $i++;
  631. }
  632. }
  633. unset ($k, $v);
  634. return $stringToBeSigned;
  635. }
  636. /**
  637. * RSA单独签名方法,未做字符串处理,字符串处理见getSignContent()
  638. * @param $data 待签名字符串
  639. * @param $privatekey 商户私钥,根据keyfromfile来判断是读取字符串还是读取文件,false:填写私钥字符串去回车和空格 true:填写私钥文件路径
  640. * @param $signType 签名方式,RSA:SHA1 RSA2:SHA256
  641. * @param $keyfromfile 私钥获取方式,读取字符串还是读文件
  642. * @return string
  643. */
  644. public function alonersaSign($data,$privatekey,$signType = "RSA",$keyfromfile=false) {
  645. if(!$keyfromfile){
  646. $priKey=$privatekey;
  647. $res = "-----BEGIN RSA PRIVATE KEY-----\n" .
  648. wordwrap($priKey, 64, "\n", true) .
  649. "\n-----END RSA PRIVATE KEY-----";
  650. }
  651. else{
  652. $priKey = file_get_contents($privatekey);
  653. $res = openssl_get_privatekey($priKey);
  654. }
  655. ($res) or die('您使用的私钥格式错误,请检查RSA私钥配置');
  656. if ("RSA2" == $signType) {
  657. openssl_sign($data, $sign, $res, OPENSSL_ALGO_SHA256);
  658. } else {
  659. openssl_sign($data, $sign, $res);
  660. }
  661. if($keyfromfile){
  662. openssl_free_key($res);
  663. }
  664. $sign = base64_encode($sign);
  665. return $sign;
  666. }
  667. /**
  668. * 转换字符集编码
  669. * @param $data
  670. * @param $targetCharset
  671. * @return string
  672. */
  673. function characet($data, $targetCharset) {
  674. if (!empty($data)) {
  675. $fileType = $this->fileCharset;
  676. if (strcasecmp($fileType, $targetCharset) != 0) {
  677. $data = mb_convert_encoding($data, $targetCharset, $fileType);
  678. }
  679. }
  680. return $data;
  681. }
  682. /**
  683. * 发送curl请求
  684. * @param $url
  685. * @param null $postFields
  686. * @return bool|string
  687. * @throws Exception
  688. */
  689. protected function curl($url, $postFields = null) {
  690. $ch = curl_init();
  691. curl_setopt($ch, CURLOPT_URL, $url);
  692. curl_setopt($ch, CURLOPT_FAILONERROR, false);
  693. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  694. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
  695. $postBodyString = "";
  696. $encodeArray = Array();
  697. $postMultipart = false;
  698. if (is_array($postFields) && 0 < count($postFields)) {
  699. foreach ($postFields as $k => $v) {
  700. if ("@" != substr($v, 0, 1)) //判断是不是文件上传
  701. {
  702. $postBodyString .= "$k=" . urlencode($this->characet($v, $this->postCharset)) . "&";
  703. $encodeArray[$k] = $this->characet($v, $this->postCharset);
  704. } else //文件上传用multipart/form-data,否则用www-form-urlencoded
  705. {
  706. $postMultipart = true;
  707. $encodeArray[$k] = new \CURLFile(substr($v, 1));
  708. }
  709. }
  710. unset ($k, $v);
  711. curl_setopt($ch, CURLOPT_POST, true);
  712. if ($postMultipart) {
  713. curl_setopt($ch, CURLOPT_POSTFIELDS, $encodeArray);
  714. } else {
  715. curl_setopt($ch, CURLOPT_POSTFIELDS, substr($postBodyString, 0, -1));
  716. }
  717. }
  718. if (!$postMultipart) {
  719. $headers = array('content-type: application/x-www-form-urlencoded;charset=' . $this->postCharset);
  720. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
  721. }
  722. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
  723. $reponse = curl_exec($ch);
  724. if (curl_errno($ch)) {
  725. throw new Exception(curl_error($ch), 0);
  726. } else {
  727. $httpStatusCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  728. if (200 !== $httpStatusCode) {
  729. throw new Exception($reponse, $httpStatusCode);
  730. }
  731. }
  732. curl_close($ch);
  733. return $reponse;
  734. }
  735. protected function getMillisecond() {
  736. list($s1, $s2) = explode(' ', microtime());
  737. return (float)sprintf('%.0f', (floatval($s1) + floatval($s2)) * 1000);
  738. }
  739. /**
  740. * 打印日志信息
  741. * @param $apiName
  742. * @param $requestUrl
  743. * @param $errorCode
  744. * @param $responseTxt
  745. */
  746. protected function logCommunicationError($apiName, $requestUrl, $errorCode, $responseTxt) {
  747. $logData = array(
  748. date("Y-m-d H:i:s"),
  749. $apiName,
  750. $this->appId,
  751. PHP_OS,
  752. $this->alipaySdkVersion,
  753. $requestUrl,
  754. $errorCode,
  755. str_replace("\n", "", $responseTxt)
  756. );
  757. echo json_encode($logData);
  758. }
  759. /**
  760. * Json格式签名内容
  761. * @param $request
  762. * @param $responseContent
  763. * @param $responseJSON
  764. * @return SignData
  765. */
  766. function parserJSONSignData($request, $responseContent, $responseJSON) {
  767. $signData = new SignData();
  768. $signData->sign = $this->parserJSONSign($responseJSON);
  769. $signData->signSourceData = $this->parserJSONSignSource($request, $responseContent);
  770. return $signData;
  771. }
  772. function parserJSONSign($responseJSon) {
  773. return $responseJSon->sign;
  774. }
  775. function parserJSONSignSource($request, $responseContent) {
  776. $apiName = $request->getApiMethodName();
  777. $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
  778. $rootIndex = strpos($responseContent, $rootNodeName);
  779. $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
  780. if ($rootIndex > 0) {
  781. return $this->parserJSONSource($responseContent, $rootNodeName, $rootIndex);
  782. } else if ($errorIndex > 0) {
  783. return $this->parserJSONSource($responseContent, $this->ERROR_RESPONSE, $errorIndex);
  784. } else {
  785. return null;
  786. }
  787. }
  788. function parserJSONSource($responseContent, $nodeName, $nodeIndex) {
  789. $signDataStartIndex = $nodeIndex + strlen($nodeName) + 2;
  790. if(strrpos($responseContent, $this->ALIPAY_CERT_SN)){
  791. $signIndex = strrpos($responseContent, "\"" . $this->ALIPAY_CERT_SN . "\"");
  792. }else{
  793. $signIndex = strrpos($responseContent, "\"" . $this->SIGN_NODE_NAME . "\"");
  794. }
  795. // 签名前-逗号
  796. $signDataEndIndex = $signIndex - 1;
  797. $indexLen = $signDataEndIndex - $signDataStartIndex;
  798. if ($indexLen < 0) {
  799. return null;
  800. }
  801. return substr($responseContent, $signDataStartIndex, $indexLen);
  802. }
  803. /**
  804. * XML格式签名内容
  805. * @param $request
  806. * @param $responseContent
  807. * @return SignData
  808. */
  809. function parserXMLSignData($request, $responseContent) {
  810. $signData = new SignData();
  811. $signData->sign = $this->parserXMLSign($responseContent);
  812. $signData->signSourceData = $this->parserXMLSignSource($request, $responseContent);
  813. return $signData;
  814. }
  815. function parserXMLSign($responseContent) {
  816. if(strrpos($responseContent, $this->ALIPAY_CERT_SN)){
  817. $signNodeName = "<" . $this->ALIPAY_CERT_SN . ">";
  818. $signEndNodeName = "</" . $this->ALIPAY_CERT_SN . ">";
  819. }else{
  820. $signNodeName = "<" . $this->SIGN_NODE_NAME . ">";
  821. $signEndNodeName = "</" . $this->SIGN_NODE_NAME . ">";
  822. }
  823. $indexOfSignNode = strpos($responseContent, $signNodeName);
  824. $indexOfSignEndNode = strpos($responseContent, $signEndNodeName);
  825. if ($indexOfSignNode < 0 || $indexOfSignEndNode < 0) {
  826. return null;
  827. }
  828. $nodeIndex = ($indexOfSignNode + strlen($signNodeName));
  829. $indexLen = $indexOfSignEndNode - $nodeIndex;
  830. if ($indexLen < 0) {
  831. return null;
  832. }
  833. // 签名
  834. return substr($responseContent, $nodeIndex, $indexLen);
  835. }
  836. function parserXMLSignSource($request, $responseContent) {
  837. $apiName = $request->getApiMethodName();
  838. $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
  839. $rootIndex = strpos($responseContent, $rootNodeName);
  840. $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
  841. if ($rootIndex > 0) {
  842. return $this->parserXMLSource($responseContent, $rootNodeName, $rootIndex);
  843. } else if ($errorIndex > 0) {
  844. return $this->parserXMLSource($responseContent, $this->ERROR_RESPONSE, $errorIndex);
  845. } else {
  846. return null;
  847. }
  848. }
  849. function parserXMLSource($responseContent, $nodeName, $nodeIndex) {
  850. $signDataStartIndex = $nodeIndex + strlen($nodeName) + 1;
  851. if(strrpos($responseContent, $this->ALIPAY_CERT_SN)){
  852. $signIndex = strrpos($responseContent, "<" . $this->ALIPAY_CERT_SN . ">");
  853. }else{
  854. $signIndex = strrpos($responseContent, "<" . $this->SIGN_NODE_NAME . ">");
  855. }
  856. // 签名前-逗号
  857. $signDataEndIndex = $signIndex - 1;
  858. $indexLen = $signDataEndIndex - $signDataStartIndex + 1;
  859. if ($indexLen < 0) {
  860. return null;
  861. }
  862. return substr($responseContent, $signDataStartIndex, $indexLen);
  863. }
  864. /**
  865. * 验签
  866. * @param $request
  867. * @param $signData
  868. * @param $resp
  869. * @param $respObject
  870. * @throws Exception
  871. */
  872. public function checkResponseSign($request, $signData, $resp, $respObject) {
  873. if (!$this->checkEmpty($this->alipayPublicKey) || !$this->checkEmpty($this->alipayrsaPublicKey)) {
  874. if ($signData == null || $this->checkEmpty($signData->sign) || $this->checkEmpty($signData->signSourceData)) {
  875. throw new Exception(" check sign Fail! The reason : signData is Empty");
  876. }
  877. // 获取结果sub_code
  878. $responseSubCode = $this->parserResponseSubCode($request, $resp, $respObject, $this->format);
  879. if (!$this->checkEmpty($responseSubCode) || ($this->checkEmpty($responseSubCode) && !$this->checkEmpty($signData->sign))) {
  880. $checkResult = $this->verify($signData->signSourceData, $signData->sign, $this->alipayPublicKey, $this->signType);
  881. if (!$checkResult) {
  882. //请求网关下载新的支付宝公钥证书
  883. if(!$respObject->alipay_cert_sn && ($request->getApiMethodName()=="alipay.open.app.alipaycert.download")){
  884. throw new Exception(" check sign Fail! The reason : alipay_cert_sn is Empty");
  885. }
  886. //组装系统参数
  887. $sysParams["app_id"] = $this->appId;
  888. $sysParams["format"] = $this->format;
  889. $sysParams["sign_type"] = $this->signType;
  890. $sysParams["method"] = "alipay.open.app.alipaycert.download";
  891. $sysParams["timestamp"] = date("Y-m-d H:i:s");
  892. $sysParams["alipay_sdk"] = $this->alipaySdkVersion;
  893. $sysParams["terminal_type"] = $request->getTerminalType();
  894. $sysParams["terminal_info"] = $request->getTerminalInfo();
  895. $sysParams["prod_code"] = $request->getProdCode();
  896. $sysParams["notify_url"] = $request->getNotifyUrl();
  897. $sysParams["charset"] = $this->postCharset;
  898. $sysParams["app_cert_sn"] = $this->appCertSN;
  899. $sysParams["alipay_root_cert_sn"] = $this->alipayRootCertSN;
  900. //获取业务参数
  901. $apiParas = array();
  902. $apiParas["biz_content"] = "{\"alipay_cert_sn\":\"".$respObject->alipay_cert_sn."\"}";
  903. $apiParams = $apiParas;
  904. //签名
  905. $sysParams["sign"] = $this->generateSign(array_merge($apiParams, $sysParams), $this->signType);
  906. //系统参数放入GET请求串
  907. $requestUrl = $this->gatewayUrl . "?";
  908. foreach ($sysParams as $sysParamKey => $sysParamValue) {
  909. $requestUrl .= "$sysParamKey=" . urlencode($this->characet($sysParamValue, $this->postCharset)) . "&";
  910. }
  911. $requestUrl = substr($requestUrl, 0, -1);
  912. //发起HTTP请求
  913. try {
  914. $resp = $this->curl($requestUrl, $apiParams);
  915. } catch (Exception $e) {
  916. $this->logCommunicationError($sysParams["method"], $requestUrl, "HTTP_ERROR_" . $e->getCode(), $e->getMessage());
  917. return false;
  918. }
  919. // 将返回结果转换本地文件编码
  920. $r = iconv($this->postCharset, $this->fileCharset . "//IGNORE", $resp);
  921. $respObject = json_decode($r);
  922. $resultCode = $respObject->alipay_open_app_alipaycert_download_response->code;
  923. $certContent = $respObject->alipay_open_app_alipaycert_download_response->alipay_cert_content;
  924. if (!empty($resultCode) && $resultCode == 10000 && !empty($certContent)) {
  925. $cert = base64_decode($certContent);
  926. $certCheck = true;
  927. if(!empty($this->alipayRootCertContent) && $this->isCheckAlipayPublicCert){
  928. $certCheck = isTrusted($cert,$this->alipayRootCertContent);
  929. }
  930. if($certCheck){
  931. $pkey = openssl_pkey_get_public($cert);
  932. $keyData = openssl_pkey_get_details($pkey);
  933. $public_key = str_replace('-----BEGIN PUBLIC KEY-----', '', $keyData['key']);
  934. $public_key = trim(str_replace('-----END PUBLIC KEY-----', '', $public_key));
  935. $this->alipayrsaPublicKey = $public_key;
  936. $checkResult = $this->verify($signData->signSourceData, $signData->sign, $this->alipayrsaPublicKey, $this->signType);
  937. }else{
  938. //如果下载下来的支付宝公钥证书使用根证书检查失败直接抛异常
  939. throw new Exception("check sign Fail! [sign=" . $signData->sign . ", signSourceData=" . $signData->signSourceData . "]");
  940. }
  941. }
  942. if(!$checkResult){
  943. if (strpos($signData->signSourceData, "\\/") > 0) {
  944. $signData->signSourceData = str_replace("\\/", "/", $signData->signSourceData);
  945. $checkResult = $this->verify($signData->signSourceData, $signData->sign, $this->alipayPublicKey, $this->signType);
  946. if (!$checkResult) {
  947. throw new Exception("check sign Fail! [sign=" . $signData->sign . ", signSourceData=" . $signData->signSourceData . "]");
  948. }
  949. } else {
  950. throw new Exception("check sign Fail! [sign=" . $signData->sign . ", signSourceData=" . $signData->signSourceData . "]");
  951. }
  952. }
  953. }
  954. }
  955. }
  956. }
  957. function parserResponseSubCode($request, $responseContent, $respObject, $format) {
  958. if ("json" == $format) {
  959. $apiName = $request->getApiMethodName();
  960. $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
  961. $errorNodeName = $this->ERROR_RESPONSE;
  962. $rootIndex = strpos($responseContent, $rootNodeName);
  963. $errorIndex = strpos($responseContent, $errorNodeName);
  964. if ($rootIndex > 0) {
  965. // 内部节点对象
  966. $rInnerObject = $respObject->$rootNodeName;
  967. } elseif ($errorIndex > 0) {
  968. $rInnerObject = $respObject->$errorNodeName;
  969. } else {
  970. return null;
  971. }
  972. // 存在属性则返回对应值
  973. if (isset($rInnerObject->sub_code)) {
  974. return $rInnerObject->sub_code;
  975. } else {
  976. return null;
  977. }
  978. } elseif ("xml" == $format) {
  979. // xml格式sub_code在同一层级
  980. return $respObject->sub_code;
  981. }
  982. }
  983. function verify($data, $sign, $rsaPublicKeyFilePath, $signType = 'RSA') {
  984. if($this->checkEmpty($this->alipayPublicKey)){
  985. $pubKey= $this->alipayrsaPublicKey;
  986. $res = "-----BEGIN PUBLIC KEY-----\n" .
  987. wordwrap($pubKey, 64, "\n", true) .
  988. "\n-----END PUBLIC KEY-----";
  989. }else {
  990. //读取公钥文件
  991. $pubKey = file_get_contents($rsaPublicKeyFilePath);
  992. //转换为openssl格式密钥
  993. $res = openssl_get_publickey($pubKey);
  994. }
  995. ($res) or die('支付宝RSA公钥错误。请检查公钥文件格式是否正确');
  996. //调用openssl内置方法验签,返回bool值
  997. $result = FALSE;
  998. if ("RSA2" == $signType) {
  999. $result = (openssl_verify($data, base64_decode($sign), $res, OPENSSL_ALGO_SHA256)===1);
  1000. } else {
  1001. $result = (openssl_verify($data, base64_decode($sign), $res)===1);
  1002. }
  1003. if(!$this->checkEmpty($this->alipayPublicKey)) {
  1004. //释放资源
  1005. openssl_free_key($res);
  1006. }
  1007. return $result;
  1008. }
  1009. // 获取加密内容
  1010. private function encryptJSONSignSource($request, $responseContent) {
  1011. $parsetItem = $this->parserEncryptJSONSignSource($request, $responseContent);
  1012. $bodyIndexContent = substr($responseContent, 0, $parsetItem->startIndex);
  1013. $bodyEndContent = substr($responseContent, $parsetItem->endIndex, strlen($responseContent) + 1 - $parsetItem->endIndex);
  1014. $bizContent = decrypt($parsetItem->encryptContent, $this->encryptKey);
  1015. return $bodyIndexContent . $bizContent . $bodyEndContent;
  1016. }
  1017. private function parserEncryptJSONSignSource($request, $responseContent) {
  1018. $apiName = $request->getApiMethodName();
  1019. $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
  1020. $rootIndex = strpos($responseContent, $rootNodeName);
  1021. $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
  1022. if ($rootIndex > 0) {
  1023. return $this->parserEncryptJSONItem($responseContent, $rootNodeName, $rootIndex);
  1024. } else if ($errorIndex > 0) {
  1025. return $this->parserEncryptJSONItem($responseContent, $this->ERROR_RESPONSE, $errorIndex);
  1026. } else {
  1027. return null;
  1028. }
  1029. }
  1030. private function parserEncryptJSONItem($responseContent, $nodeName, $nodeIndex) {
  1031. $signDataStartIndex = $nodeIndex + strlen($nodeName) + 2;
  1032. if(strrpos($responseContent, $this->ALIPAY_CERT_SN)){
  1033. $signIndex = strpos($responseContent, "\"" . $this->ALIPAY_CERT_SN . "\"");
  1034. }else{
  1035. $signIndex = strpos($responseContent, "\"" . $this->SIGN_NODE_NAME . "\"");
  1036. }
  1037. // 签名前-逗号
  1038. $signDataEndIndex = $signIndex - 1;
  1039. if ($signDataEndIndex < 0) {
  1040. $signDataEndIndex = strlen($responseContent)-1 ;
  1041. }
  1042. $indexLen = $signDataEndIndex - $signDataStartIndex;
  1043. $encContent = substr($responseContent, $signDataStartIndex+1, $indexLen-2);
  1044. $encryptParseItem = new EncryptParseItem();
  1045. $encryptParseItem->encryptContent = $encContent;
  1046. $encryptParseItem->startIndex = $signDataStartIndex;
  1047. $encryptParseItem->endIndex = $signDataEndIndex;
  1048. return $encryptParseItem;
  1049. }
  1050. // 获取加密内容
  1051. private function encryptXMLSignSource($request, $responseContent) {
  1052. $parsetItem = $this->parserEncryptXMLSignSource($request, $responseContent);
  1053. $bodyIndexContent = substr($responseContent, 0, $parsetItem->startIndex);
  1054. $bodyEndContent = substr($responseContent, $parsetItem->endIndex, strlen($responseContent) + 1 - $parsetItem->endIndex);
  1055. $bizContent = decrypt($parsetItem->encryptContent, $this->encryptKey);
  1056. return $bodyIndexContent . $bizContent . $bodyEndContent;
  1057. }
  1058. private function parserEncryptXMLSignSource($request, $responseContent) {
  1059. $apiName = $request->getApiMethodName();
  1060. $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
  1061. $rootIndex = strpos($responseContent, $rootNodeName);
  1062. $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
  1063. if ($rootIndex > 0) {
  1064. return $this->parserEncryptXMLItem($responseContent, $rootNodeName, $rootIndex);
  1065. } else if ($errorIndex > 0) {
  1066. return $this->parserEncryptXMLItem($responseContent, $this->ERROR_RESPONSE, $errorIndex);
  1067. } else {
  1068. return null;
  1069. }
  1070. }
  1071. private function parserEncryptXMLItem($responseContent, $nodeName, $nodeIndex) {
  1072. $signDataStartIndex = $nodeIndex + strlen($nodeName) + 1;
  1073. $xmlStartNode="<".$this->ENCRYPT_XML_NODE_NAME.">";
  1074. $xmlEndNode="</".$this->ENCRYPT_XML_NODE_NAME.">";
  1075. $indexOfXmlNode=strpos($responseContent,$xmlEndNode);
  1076. if($indexOfXmlNode<0){
  1077. $item = new EncryptParseItem();
  1078. $item->encryptContent = null;
  1079. $item->startIndex = 0;
  1080. $item->endIndex = 0;
  1081. return $item;
  1082. }
  1083. $startIndex=$signDataStartIndex+strlen($xmlStartNode);
  1084. $bizContentLen=$indexOfXmlNode-$startIndex;
  1085. $bizContent=substr($responseContent,$startIndex,$bizContentLen);
  1086. $encryptParseItem = new EncryptParseItem();
  1087. $encryptParseItem->encryptContent = $bizContent;
  1088. $encryptParseItem->startIndex = $signDataStartIndex;
  1089. $encryptParseItem->endIndex = $indexOfXmlNode+strlen($xmlEndNode);
  1090. return $encryptParseItem;
  1091. }
  1092. function echoDebug($content) {
  1093. if ($this->debugInfo) {
  1094. echo "<br/>" . $content;
  1095. }
  1096. }
  1097. }