AopClient.php 34 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210
  1. <?php
  2. namespace addon\alipay\data\sdk;
  3. use think\Exception;
  4. use addon\alipay\data\sdk\SignData;
  5. require_once 'AopEncrypt.php';
  6. class AopClient {
  7. //应用ID
  8. public $appId;
  9. //私钥文件路径
  10. public $rsaPrivateKeyFilePath;
  11. //私钥值
  12. public $rsaPrivateKey;
  13. //网关
  14. public $gatewayUrl = "https://openapi.alipay.com/gateway.do";
  15. //返回数据格式
  16. public $format = "json";
  17. //api版本
  18. public $apiVersion = "1.0";
  19. // 表单提交字符集编码
  20. public $postCharset = "UTF-8";
  21. //使用文件读取文件格式,请只传递该值
  22. public $alipayPublicKey = null;
  23. //使用读取字符串格式,请只传递该值
  24. public $alipayrsaPublicKey;
  25. public $debugInfo = false;
  26. private $fileCharset = "UTF-8";
  27. private $RESPONSE_SUFFIX = "_response";
  28. private $ERROR_RESPONSE = "error_response";
  29. private $SIGN_NODE_NAME = "sign";
  30. //加密XML节点名称
  31. private $ENCRYPT_XML_NODE_NAME = "response_encrypted";
  32. private $needEncrypt = false;
  33. //签名类型
  34. public $signType = "RSA";
  35. //加密密钥和类型
  36. public $encryptKey;
  37. public $encryptType = "AES";
  38. protected $alipaySdkVersion = "alipay-sdk-php-20180705";
  39. public function generateSign($params, $signType = "RSA") {
  40. return $this->sign($this->getSignContent($params), $signType);
  41. }
  42. public function rsaSign($params, $signType = "RSA") {
  43. return $this->sign($this->getSignContent($params), $signType);
  44. }
  45. public function getSignContent($params) {
  46. ksort($params);
  47. $stringToBeSigned = "";
  48. $i = 0;
  49. foreach ($params as $k => $v) {
  50. if (false === $this->checkEmpty($v) && "@" != substr($v, 0, 1)) {
  51. // 转换成目标字符集
  52. $v = $this->characet($v, $this->postCharset);
  53. if ($i == 0) {
  54. $stringToBeSigned .= "$k" . "=" . "$v";
  55. } else {
  56. $stringToBeSigned .= "&" . "$k" . "=" . "$v";
  57. }
  58. $i++;
  59. }
  60. }
  61. unset ($k, $v);
  62. return $stringToBeSigned;
  63. }
  64. //此方法对value做urlencode
  65. public function getSignContentUrlencode($params) {
  66. ksort($params);
  67. $stringToBeSigned = "";
  68. $i = 0;
  69. foreach ($params as $k => $v) {
  70. if (false === $this->checkEmpty($v) && "@" != substr($v, 0, 1)) {
  71. // 转换成目标字符集
  72. $v = $this->characet($v, $this->postCharset);
  73. if ($i == 0) {
  74. $stringToBeSigned .= "$k" . "=" . urlencode($v);
  75. } else {
  76. $stringToBeSigned .= "&" . "$k" . "=" . urlencode($v);
  77. }
  78. $i++;
  79. }
  80. }
  81. unset ($k, $v);
  82. return $stringToBeSigned;
  83. }
  84. protected function sign($data, $signType = "RSA") {
  85. if($this->checkEmpty($this->rsaPrivateKeyFilePath)){
  86. $priKey=$this->rsaPrivateKey;
  87. $res = "-----BEGIN RSA PRIVATE KEY-----\n" .
  88. wordwrap($priKey, 64, "\n", true) .
  89. "\n-----END RSA PRIVATE KEY-----";
  90. }else {
  91. $priKey = file_get_contents($this->rsaPrivateKeyFilePath);
  92. $res = openssl_get_privatekey($priKey);
  93. }
  94. ($res) or die('您使用的私钥格式错误,请检查RSA私钥配置');
  95. if ("RSA2" == $signType) {
  96. openssl_sign($data, $sign, $res, OPENSSL_ALGO_SHA256);
  97. } else {
  98. openssl_sign($data, $sign, $res);
  99. }
  100. if(!$this->checkEmpty($this->rsaPrivateKeyFilePath)){
  101. openssl_free_key($res);
  102. }
  103. $sign = base64_encode($sign);
  104. return $sign;
  105. }
  106. /**
  107. * RSA单独签名方法,未做字符串处理,字符串处理见getSignContent()
  108. * @param $data 待签名字符串
  109. * @param $privatekey 商户私钥,根据keyfromfile来判断是读取字符串还是读取文件,false:填写私钥字符串去回车和空格 true:填写私钥文件路径
  110. * @param $signType 签名方式,RSA:SHA1 RSA2:SHA256
  111. * @param $keyfromfile 私钥获取方式,读取字符串还是读文件
  112. * @return string
  113. * @author mengyu.wh
  114. */
  115. public function alonersaSign($data,$privatekey,$signType = "RSA",$keyfromfile=false) {
  116. if(!$keyfromfile){
  117. $priKey=$privatekey;
  118. $res = "-----BEGIN RSA PRIVATE KEY-----\n" .
  119. wordwrap($priKey, 64, "\n", true) .
  120. "\n-----END RSA PRIVATE KEY-----";
  121. }
  122. else{
  123. $priKey = file_get_contents($privatekey);
  124. $res = openssl_get_privatekey($priKey);
  125. }
  126. ($res) or die('您使用的私钥格式错误,请检查RSA私钥配置');
  127. if ("RSA2" == $signType) {
  128. openssl_sign($data, $sign, $res, OPENSSL_ALGO_SHA256);
  129. } else {
  130. openssl_sign($data, $sign, $res);
  131. }
  132. if($keyfromfile){
  133. openssl_free_key($res);
  134. }
  135. $sign = base64_encode($sign);
  136. return $sign;
  137. }
  138. protected function curl($url, $postFields = null) {
  139. $ch = curl_init();
  140. curl_setopt($ch, CURLOPT_URL, $url);
  141. curl_setopt($ch, CURLOPT_FAILONERROR, false);
  142. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  143. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  144. $postBodyString = "";
  145. $encodeArray = Array();
  146. $postMultipart = false;
  147. if (is_array($postFields) && 0 < count($postFields)) {
  148. foreach ($postFields as $k => $v) {
  149. if ("@" != substr($v, 0, 1)) //判断是不是文件上传
  150. {
  151. $postBodyString .= "$k=" . urlencode($this->characet($v, $this->postCharset)) . "&";
  152. $encodeArray[$k] = $this->characet($v, $this->postCharset);
  153. } else //文件上传用multipart/form-data,否则用www-form-urlencoded
  154. {
  155. $postMultipart = true;
  156. $encodeArray[$k] = new \CURLFile(substr($v, 1));
  157. }
  158. }
  159. unset ($k, $v);
  160. curl_setopt($ch, CURLOPT_POST, true);
  161. if ($postMultipart) {
  162. curl_setopt($ch, CURLOPT_POSTFIELDS, $encodeArray);
  163. } else {
  164. curl_setopt($ch, CURLOPT_POSTFIELDS, substr($postBodyString, 0, -1));
  165. }
  166. }
  167. if ($postMultipart) {
  168. $headers = array('content-type: multipart/form-data;charset=' . $this->postCharset . ';boundary=' . $this->getMillisecond());
  169. } else {
  170. $headers = array('content-type: application/x-www-form-urlencoded;charset=' . $this->postCharset);
  171. }
  172. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
  173. $reponse = curl_exec($ch);
  174. if (curl_errno($ch)) {
  175. throw new Exception(curl_error($ch), 0);
  176. } else {
  177. $httpStatusCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  178. if (200 !== $httpStatusCode) {
  179. throw new Exception($reponse, $httpStatusCode);
  180. }
  181. }
  182. curl_close($ch);
  183. return $reponse;
  184. }
  185. protected function getMillisecond() {
  186. list($s1, $s2) = explode(' ', microtime());
  187. return (float)sprintf('%.0f', (floatval($s1) + floatval($s2)) * 1000);
  188. }
  189. protected function logCommunicationError($apiName, $requestUrl, $errorCode, $responseTxt) {
  190. $localIp = isset ($_SERVER["SERVER_ADDR"]) ? $_SERVER["SERVER_ADDR"] : "CLI";
  191. $logger = new LtLogger;
  192. $logger->conf["log_file"] = rtrim(AOP_SDK_WORK_DIR, '\\/') . '/' . "logs/aop_comm_err_" . $this->appId . "_" . date("Y-m-d") . ".log";
  193. $logger->conf["separator"] = "^_^";
  194. $logData = array(
  195. date("Y-m-d H:i:s"),
  196. $apiName,
  197. $this->appId,
  198. $localIp,
  199. PHP_OS,
  200. $this->alipaySdkVersion,
  201. $requestUrl,
  202. $errorCode,
  203. str_replace("\n", "", $responseTxt)
  204. );
  205. $logger->log($logData);
  206. }
  207. /**
  208. * 生成用于调用收银台SDK的字符串
  209. * @param $request SDK接口的请求参数对象
  210. * @return string
  211. * @author guofa.tgf
  212. */
  213. public function sdkExecute($request) {
  214. $this->setupCharsets($request);
  215. $params['app_id'] = $this->appId;
  216. $params['method'] = $request->getApiMethodName();
  217. $params['format'] = $this->format;
  218. $params['sign_type'] = $this->signType;
  219. $params['timestamp'] = date("Y-m-d H:i:s");
  220. $params['alipay_sdk'] = $this->alipaySdkVersion;
  221. $params['charset'] = $this->postCharset;
  222. $version = $request->getApiVersion();
  223. $params['version'] = $this->checkEmpty($version) ? $this->apiVersion : $version;
  224. if ($notify_url = $request->getNotifyUrl()) {
  225. $params['notify_url'] = $notify_url;
  226. }
  227. $dict = $request->getApiParas();
  228. $params['biz_content'] = $dict['biz_content'];
  229. ksort($params);
  230. $params['sign'] = $this->generateSign($params, $this->signType);
  231. foreach ($params as &$value) {
  232. $value = $this->characet($value, $params['charset']);
  233. }
  234. return http_build_query($params);
  235. }
  236. /*
  237. 页面提交执行方法
  238. @param:跳转类接口的request; $httpmethod 提交方式。两个值可选:post、get
  239. @return:构建好的、签名后的最终跳转URL(GET)或String形式的form(POST)
  240. auther:笙默
  241. */
  242. public function pageExecute($request,$httpmethod = "POST") {
  243. $this->setupCharsets($request);
  244. if (strcasecmp($this->fileCharset, $this->postCharset)) {
  245. // writeLog("本地文件字符集编码与表单提交编码不一致,请务必设置成一样,属性名分别为postCharset!");
  246. throw new Exception("文件编码:[" . $this->fileCharset . "] 与表单提交编码:[" . $this->postCharset . "]两者不一致!");
  247. }
  248. $iv=null;
  249. if(!$this->checkEmpty($request->getApiVersion())){
  250. $iv=$request->getApiVersion();
  251. }else{
  252. $iv=$this->apiVersion;
  253. }
  254. //组装系统参数
  255. $sysParams["app_id"] = $this->appId;
  256. $sysParams["version"] = $iv;
  257. $sysParams["format"] = $this->format;
  258. $sysParams["sign_type"] = $this->signType;
  259. $sysParams["method"] = $request->getApiMethodName();
  260. $sysParams["timestamp"] = date("Y-m-d H:i:s");
  261. $sysParams["alipay_sdk"] = $this->alipaySdkVersion;
  262. $sysParams["terminal_type"] = $request->getTerminalType();
  263. $sysParams["terminal_info"] = $request->getTerminalInfo();
  264. $sysParams["prod_code"] = $request->getProdCode();
  265. $sysParams["notify_url"] = $request->getNotifyUrl();
  266. $sysParams["return_url"] = $request->getReturnUrl();
  267. $sysParams["charset"] = $this->postCharset;
  268. //获取业务参数
  269. $apiParams = $request->getApiParas();
  270. if (method_exists($request,"getNeedEncrypt") &&$request->getNeedEncrypt()){
  271. $sysParams["encrypt_type"] = $this->encryptType;
  272. if ($this->checkEmpty($apiParams['biz_content'])) {
  273. throw new Exception(" api request Fail! The reason : encrypt request is not supperted!");
  274. }
  275. if ($this->checkEmpty($this->encryptKey) || $this->checkEmpty($this->encryptType)) {
  276. throw new Exception(" encryptType and encryptKey must not null! ");
  277. }
  278. if ("AES" != $this->encryptType) {
  279. throw new Exception("加密类型只支持AES");
  280. }
  281. // 执行加密
  282. $enCryptContent = new_encrypt($apiParams['biz_content'], $this->encryptKey);
  283. $apiParams['biz_content'] = $enCryptContent;
  284. }
  285. //print_r($apiParams);
  286. $totalParams = array_merge($apiParams, $sysParams);
  287. //待签名字符串
  288. $preSignStr = $this->getSignContent($totalParams);
  289. //签名
  290. $totalParams["sign"] = $this->generateSign($totalParams, $this->signType);
  291. if ("GET" == strtoupper($httpmethod)) {
  292. //value做urlencode
  293. $preString=$this->getSignContentUrlencode($totalParams);
  294. //拼接GET请求串
  295. $requestUrl = $this->gatewayUrl."?".$preString;
  296. return $requestUrl;
  297. } else {
  298. //拼接表单字符串
  299. return $this->buildRequestForm($totalParams);
  300. }
  301. }
  302. /**
  303. * 建立请求,以表单HTML形式构造(默认)
  304. * @param $para_temp 请求参数数组
  305. * @return 提交表单HTML文本
  306. */
  307. protected function buildRequestForm($para_temp) {
  308. $sHtml = "<form id='alipaysubmit' name='alipaysubmit' action='".$this->gatewayUrl."?charset=".trim($this->postCharset)."' method='POST'>";
  309. while (list ($key, $val) = each ($para_temp)) {
  310. if (false === $this->checkEmpty($val)) {
  311. //$val = $this->characet($val, $this->postCharset);
  312. $val = str_replace("'","&apos;",$val);
  313. //$val = str_replace("\"","&quot;",$val);
  314. $sHtml.= "<input type='hidden' name='".$key."' value='".$val."'/>";
  315. }
  316. }
  317. //submit按钮控件请不要含有name属性
  318. $sHtml = $sHtml."<input type='submit' value='ok' style='display:none;''></form>";
  319. $sHtml = $sHtml."<script>document.forms['alipaysubmit'].submit();</script>";
  320. return $sHtml;
  321. }
  322. public function execute($request, $authToken = null, $appInfoAuthtoken = null) {
  323. $this->setupCharsets($request);
  324. // // 如果两者编码不一致,会出现签名验签或者乱码
  325. if (strcasecmp($this->fileCharset, $this->postCharset)) {
  326. // writeLog("本地文件字符集编码与表单提交编码不一致,请务必设置成一样,属性名分别为postCharset!");
  327. throw new Exception("文件编码:[" . $this->fileCharset . "] 与表单提交编码:[" . $this->postCharset . "]两者不一致!");
  328. }
  329. $iv = null;
  330. if (!$this->checkEmpty($request->getApiVersion())) {
  331. $iv = $request->getApiVersion();
  332. } else {
  333. $iv = $this->apiVersion;
  334. }
  335. //组装系统参数
  336. $sysParams["app_id"] = $this->appId;
  337. $sysParams["version"] = $iv;
  338. $sysParams["format"] = $this->format;
  339. $sysParams["sign_type"] = $this->signType;
  340. $sysParams["method"] = $request->getApiMethodName();
  341. $sysParams["timestamp"] = date("Y-m-d H:i:s");
  342. $sysParams["auth_token"] = $authToken;
  343. $sysParams["alipay_sdk"] = $this->alipaySdkVersion;
  344. $sysParams["terminal_type"] = $request->getTerminalType();
  345. $sysParams["terminal_info"] = $request->getTerminalInfo();
  346. $sysParams["prod_code"] = $request->getProdCode();
  347. $sysParams["notify_url"] = $request->getNotifyUrl();
  348. $sysParams["charset"] = $this->postCharset;
  349. $sysParams["app_auth_token"] = $appInfoAuthtoken;
  350. //获取业务参数
  351. $apiParams = $request->getApiParas();
  352. if (method_exists($request,"getNeedEncrypt") &&$request->getNeedEncrypt()){
  353. $sysParams["encrypt_type"] = $this->encryptType;
  354. if ($this->checkEmpty($apiParams['biz_content'])) {
  355. throw new Exception(" api request Fail! The reason : encrypt request is not supperted!");
  356. }
  357. if ($this->checkEmpty($this->encryptKey) || $this->checkEmpty($this->encryptType)) {
  358. throw new Exception(" encryptType and encryptKey must not null! ");
  359. }
  360. if ("AES" != $this->encryptType) {
  361. throw new Exception("加密类型只支持AES");
  362. }
  363. // 执行加密
  364. $enCryptContent = new_encrypt($apiParams['biz_content'], $this->encryptKey);
  365. $apiParams['biz_content'] = $enCryptContent;
  366. }
  367. //签名
  368. $sysParams["sign"] = $this->generateSign(array_merge($apiParams, $sysParams), $this->signType);
  369. //系统参数放入GET请求串
  370. $requestUrl = $this->gatewayUrl . "?";
  371. foreach ($sysParams as $sysParamKey => $sysParamValue) {
  372. $requestUrl .= "$sysParamKey=" . urlencode($this->characet($sysParamValue, $this->postCharset)) . "&";
  373. }
  374. $requestUrl = substr($requestUrl, 0, -1);
  375. //发起HTTP请求
  376. try {
  377. $resp = $this->curl($requestUrl, $apiParams);
  378. } catch (Exception $e) {
  379. $this->logCommunicationError($sysParams["method"], $requestUrl, "HTTP_ERROR_" . $e->getCode(), $e->getMessage());
  380. return false;
  381. }
  382. //解析AOP返回结果
  383. $respWellFormed = false;
  384. // 将返回结果转换本地文件编码
  385. $r = iconv($this->postCharset, $this->fileCharset . "//IGNORE", $resp);
  386. $signData = null;
  387. if ("json" == $this->format) {
  388. $respObject = json_decode($r);
  389. if (null !== $respObject) {
  390. $respWellFormed = true;
  391. $signData = $this->parserJSONSignData($request, $resp, $respObject);
  392. }
  393. } else if ("xml" == $this->format) {
  394. $disableLibxmlEntityLoader = libxml_disable_entity_loader(true);
  395. $respObject = @ simplexml_load_string($resp);
  396. if (false !== $respObject) {
  397. $respWellFormed = true;
  398. $signData = $this->parserXMLSignData($request, $resp);
  399. }
  400. libxml_disable_entity_loader($disableLibxmlEntityLoader);
  401. }
  402. //返回的HTTP文本不是标准JSON或者XML,记下错误日志
  403. if (false === $respWellFormed) {
  404. $this->logCommunicationError($sysParams["method"], $requestUrl, "HTTP_RESPONSE_NOT_WELL_FORMED", $resp);
  405. return false;
  406. }
  407. // 验签
  408. //$this->checkResponseSign($request, $signData, $resp, $respObject);
  409. // 解密
  410. if (method_exists($request,"getNeedEncrypt") &&$request->getNeedEncrypt()){
  411. if ("json" == $this->format) {
  412. $resp = $this->encryptJSONSignSource($request, $resp);
  413. // 将返回结果转换本地文件编码
  414. $r = iconv($this->postCharset, $this->fileCharset . "//IGNORE", $resp);
  415. $respObject = json_decode($r);
  416. }else{
  417. $resp = $this->encryptXMLSignSource($request, $resp);
  418. $r = iconv($this->postCharset, $this->fileCharset . "//IGNORE", $resp);
  419. $disableLibxmlEntityLoader = libxml_disable_entity_loader(true);
  420. $respObject = @ simplexml_load_string($r);
  421. libxml_disable_entity_loader($disableLibxmlEntityLoader);
  422. }
  423. }
  424. return $respObject;
  425. }
  426. /**
  427. * 转换字符集编码
  428. * @param $data
  429. * @param $targetCharset
  430. * @return string
  431. */
  432. function characet($data, $targetCharset) {
  433. if (!empty($data)) {
  434. $fileType = $this->fileCharset;
  435. if (strcasecmp($fileType, $targetCharset) != 0) {
  436. $data = mb_convert_encoding($data, $targetCharset, $fileType);
  437. // $data = iconv($fileType, $targetCharset.'//IGNORE', $data);
  438. }
  439. }
  440. return $data;
  441. }
  442. public function exec($paramsArray) {
  443. if (!isset ($paramsArray["method"])) {
  444. trigger_error("No api name passed");
  445. }
  446. $inflector = new LtInflector;
  447. $inflector->conf["separator"] = ".";
  448. $requestClassName = ucfirst($inflector->camelize(substr($paramsArray["method"], 7))) . "Request";
  449. if (!class_exists($requestClassName)) {
  450. trigger_error("No such api: " . $paramsArray["method"]);
  451. }
  452. $session = isset ($paramsArray["session"]) ? $paramsArray["session"] : null;
  453. $req = new $requestClassName;
  454. foreach ($paramsArray as $paraKey => $paraValue) {
  455. $inflector->conf["separator"] = "_";
  456. $setterMethodName = $inflector->camelize($paraKey);
  457. $inflector->conf["separator"] = ".";
  458. $setterMethodName = "set" . $inflector->camelize($setterMethodName);
  459. if (method_exists($req, $setterMethodName)) {
  460. $req->$setterMethodName ($paraValue);
  461. }
  462. }
  463. return $this->execute($req, $session);
  464. }
  465. /**
  466. * 校验$value是否非空
  467. * if not set ,return true;
  468. * if is null , return true;
  469. **/
  470. protected function checkEmpty($value) {
  471. if (!isset($value))
  472. return true;
  473. if ($value === null)
  474. return true;
  475. if (trim($value) === "")
  476. return true;
  477. return false;
  478. }
  479. /** rsaCheckV1 & rsaCheckV2
  480. * 验证签名
  481. * 在使用本方法前,必须初始化AopClient且传入公钥参数。
  482. * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
  483. **/
  484. public function rsaCheckV1($params, $rsaPublicKeyFilePath,$signType='RSA') {
  485. $sign = $params['sign'];
  486. $params['sign_type'] = null;
  487. $params['sign'] = null;
  488. return $this->verify($this->getSignContent($params), $sign, $rsaPublicKeyFilePath,$signType);
  489. }
  490. public function rsaCheckV2($params, $rsaPublicKeyFilePath, $signType='RSA') {
  491. $sign = $params['sign'];
  492. $params['sign'] = null;
  493. return $this->verify($this->getSignContent($params), $sign, $rsaPublicKeyFilePath, $signType);
  494. }
  495. function verify($data, $sign, $rsaPublicKeyFilePath, $signType = 'RSA') {
  496. $pubKey= $this->alipayPublicKey;
  497. $res = "-----BEGIN PUBLIC KEY-----\n" .
  498. wordwrap($pubKey, 64, "\n", true) .
  499. "\n-----END PUBLIC KEY-----";
  500. ($res) or die('支付宝RSA公钥错误。请检查公钥文件格式是否正确');
  501. //调用openssl内置方法验签,返回bool值
  502. $result = FALSE;
  503. if ("RSA2" == $signType) {
  504. $result = (openssl_verify($data, base64_decode($sign), $res, OPENSSL_ALGO_SHA256)===1);
  505. } else {
  506. $result = (openssl_verify($data, base64_decode($sign), $res)===1);
  507. }
  508. //openssl_free_key($res);
  509. return $result;
  510. }
  511. /**
  512. * 在使用本方法前,必须初始化AopClient且传入公私钥参数。
  513. * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
  514. **/
  515. public function checkSignAndDecrypt($params, $rsaPublicKeyPem, $rsaPrivateKeyPem, $isCheckSign, $isDecrypt, $signType='RSA') {
  516. $charset = $params['charset'];
  517. $bizContent = $params['biz_content'];
  518. if ($isCheckSign) {
  519. if (!$this->rsaCheckV2($params, $rsaPublicKeyPem, $signType)) {
  520. echo "<br/>checkSign failure<br/>";
  521. exit;
  522. }
  523. }
  524. if ($isDecrypt) {
  525. return $this->rsaDecrypt($bizContent, $rsaPrivateKeyPem, $charset);
  526. }
  527. return $bizContent;
  528. }
  529. /**
  530. * 在使用本方法前,必须初始化AopClient且传入公私钥参数。
  531. * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
  532. **/
  533. public function encryptAndSign($bizContent, $rsaPublicKeyPem, $rsaPrivateKeyPem, $charset, $isEncrypt, $isSign, $signType='RSA') {
  534. // 加密,并签名
  535. if ($isEncrypt && $isSign) {
  536. $encrypted = $this->rsaEncrypt($bizContent, $rsaPublicKeyPem, $charset);
  537. $sign = $this->sign($encrypted, $signType);
  538. $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>";
  539. return $response;
  540. }
  541. // 加密,不签名
  542. if ($isEncrypt && (!$isSign)) {
  543. $encrypted = $this->rsaEncrypt($bizContent, $rsaPublicKeyPem, $charset);
  544. $response = "<?xml version=\"1.0\" encoding=\"$charset\"?><alipay><response>$encrypted</response><encryption_type>$signType</encryption_type></alipay>";
  545. return $response;
  546. }
  547. // 不加密,但签名
  548. if ((!$isEncrypt) && $isSign) {
  549. $sign = $this->sign($bizContent, $signType);
  550. $response = "<?xml version=\"1.0\" encoding=\"$charset\"?><alipay><response>$bizContent</response><sign>$sign</sign><sign_type>$signType</sign_type></alipay>";
  551. return $response;
  552. }
  553. // 不加密,不签名
  554. $response = "<?xml version=\"1.0\" encoding=\"$charset\"?>$bizContent";
  555. return $response;
  556. }
  557. /**
  558. * 在使用本方法前,必须初始化AopClient且传入公私钥参数。
  559. * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
  560. **/
  561. public function rsaEncrypt($data, $rsaPublicKeyPem, $charset) {
  562. if($this->checkEmpty($this->alipayPublicKey)){
  563. //读取字符串
  564. $pubKey= $this->alipayrsaPublicKey;
  565. $res = "-----BEGIN PUBLIC KEY-----\n" .
  566. wordwrap($pubKey, 64, "\n", true) .
  567. "\n-----END PUBLIC KEY-----";
  568. }else {
  569. //读取公钥文件
  570. $pubKey = file_get_contents($rsaPublicKeyFilePath);
  571. //转换为openssl格式密钥
  572. $res = openssl_get_publickey($pubKey);
  573. }
  574. ($res) or die('支付宝RSA公钥错误。请检查公钥文件格式是否正确');
  575. $blocks = $this->splitCN($data, 0, 30, $charset);
  576. $chrtext  = null;
  577. $encodes  = array();
  578. foreach ($blocks as $n => $block) {
  579. if (!openssl_public_encrypt($block, $chrtext , $res)) {
  580. echo "<br/>" . openssl_error_string() . "<br/>";
  581. }
  582. $encodes[] = $chrtext ;
  583. }
  584. $chrtext = implode(",", $encodes);
  585. return base64_encode($chrtext);
  586. }
  587. /**
  588. * 在使用本方法前,必须初始化AopClient且传入公私钥参数。
  589. * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
  590. **/
  591. public function rsaDecrypt($data, $rsaPrivateKeyPem, $charset) {
  592. if($this->checkEmpty($this->rsaPrivateKeyFilePath)){
  593. //读字符串
  594. $priKey=$this->rsaPrivateKey;
  595. $res = "-----BEGIN RSA PRIVATE KEY-----\n" .
  596. wordwrap($priKey, 64, "\n", true) .
  597. "\n-----END RSA PRIVATE KEY-----";
  598. }else {
  599. $priKey = file_get_contents($this->rsaPrivateKeyFilePath);
  600. $res = openssl_get_privatekey($priKey);
  601. }
  602. ($res) or die('您使用的私钥格式错误,请检查RSA私钥配置');
  603. //转换为openssl格式密钥
  604. $decodes = explode(',', $data);
  605. $strnull = "";
  606. $dcyCont = "";
  607. foreach ($decodes as $n => $decode) {
  608. if (!openssl_private_decrypt($decode, $dcyCont, $res)) {
  609. echo "<br/>" . openssl_error_string() . "<br/>";
  610. }
  611. $strnull .= $dcyCont;
  612. }
  613. return $strnull;
  614. }
  615. function splitCN($cont, $n = 0, $subnum, $charset) {
  616. //$len = strlen($cont) / 3;
  617. $arrr = array();
  618. for ($i = $n; $i < strlen($cont); $i += $subnum) {
  619. $res = $this->subCNchar($cont, $i, $subnum, $charset);
  620. if (!empty ($res)) {
  621. $arrr[] = $res;
  622. }
  623. }
  624. return $arrr;
  625. }
  626. function subCNchar($str, $start = 0, $length, $charset = "gbk") {
  627. if (strlen($str) <= $length) {
  628. return $str;
  629. }
  630. $re['utf-8'] = "/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xff][\x80-\xbf]{3}/";
  631. $re['gb2312'] = "/[\x01-\x7f]|[\xb0-\xf7][\xa0-\xfe]/";
  632. $re['gbk'] = "/[\x01-\x7f]|[\x81-\xfe][\x40-\xfe]/";
  633. $re['big5'] = "/[\x01-\x7f]|[\x81-\xfe]([\x40-\x7e]|\xa1-\xfe])/";
  634. preg_match_all($re[$charset], $str, $match);
  635. $slice = join("", array_slice($match[0], $start, $length));
  636. return $slice;
  637. }
  638. function parserResponseSubCode($request, $responseContent, $respObject, $format) {
  639. if ("json" == $format) {
  640. $apiName = $request->getApiMethodName();
  641. $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
  642. $errorNodeName = $this->ERROR_RESPONSE;
  643. $rootIndex = strpos($responseContent, $rootNodeName);
  644. $errorIndex = strpos($responseContent, $errorNodeName);
  645. if ($rootIndex > 0) {
  646. // 内部节点对象
  647. $rInnerObject = $respObject->$rootNodeName;
  648. } elseif ($errorIndex > 0) {
  649. $rInnerObject = $respObject->$errorNodeName;
  650. } else {
  651. return null;
  652. }
  653. // 存在属性则返回对应值
  654. if (isset($rInnerObject->sub_code)) {
  655. return $rInnerObject->sub_code;
  656. } else {
  657. return null;
  658. }
  659. } elseif ("xml" == $format) {
  660. // xml格式sub_code在同一层级
  661. return $respObject->sub_code;
  662. }
  663. }
  664. function parserJSONSignData($request, $responseContent, $responseJSON) {
  665. $signData = new SignData();
  666. $signData->sign = $this->parserJSONSign($responseJSON);
  667. $signData->signSourceData = $this->parserJSONSignSource($request, $responseContent);
  668. return $signData;
  669. }
  670. function parserJSONSignSource($request, $responseContent) {
  671. $apiName = $request->getApiMethodName();
  672. $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
  673. $rootIndex = strpos($responseContent, $rootNodeName);
  674. $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
  675. if ($rootIndex > 0) {
  676. return $this->parserJSONSource($responseContent, $rootNodeName, $rootIndex);
  677. } else if ($errorIndex > 0) {
  678. return $this->parserJSONSource($responseContent, $this->ERROR_RESPONSE, $errorIndex);
  679. } else {
  680. return null;
  681. }
  682. }
  683. function parserJSONSource($responseContent, $nodeName, $nodeIndex) {
  684. $signDataStartIndex = $nodeIndex + strlen($nodeName) + 2;
  685. $signIndex = strrpos($responseContent, "\"" . $this->SIGN_NODE_NAME . "\"");
  686. // 签名前-逗号
  687. $signDataEndIndex = $signIndex - 1;
  688. $indexLen = $signDataEndIndex - $signDataStartIndex;
  689. if ($indexLen < 0) {
  690. return null;
  691. }
  692. return substr($responseContent, $signDataStartIndex, $indexLen);
  693. }
  694. function parserJSONSign($responseJSon) {
  695. return $responseJSon->sign;
  696. }
  697. function parserXMLSignData($request, $responseContent) {
  698. $signData = new SignData();
  699. $signData->sign = $this->parserXMLSign($responseContent);
  700. $signData->signSourceData = $this->parserXMLSignSource($request, $responseContent);
  701. return $signData;
  702. }
  703. function parserXMLSignSource($request, $responseContent) {
  704. $apiName = $request->getApiMethodName();
  705. $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
  706. $rootIndex = strpos($responseContent, $rootNodeName);
  707. $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
  708. // $this->echoDebug("<br/>rootNodeName:" . $rootNodeName);
  709. // $this->echoDebug("<br/> responseContent:<xmp>" . $responseContent . "</xmp>");
  710. if ($rootIndex > 0) {
  711. return $this->parserXMLSource($responseContent, $rootNodeName, $rootIndex);
  712. } else if ($errorIndex > 0) {
  713. return $this->parserXMLSource($responseContent, $this->ERROR_RESPONSE, $errorIndex);
  714. } else {
  715. return null;
  716. }
  717. }
  718. function parserXMLSource($responseContent, $nodeName, $nodeIndex) {
  719. $signDataStartIndex = $nodeIndex + strlen($nodeName) + 1;
  720. $signIndex = strrpos($responseContent, "<" . $this->SIGN_NODE_NAME . ">");
  721. // 签名前-逗号
  722. $signDataEndIndex = $signIndex - 1;
  723. $indexLen = $signDataEndIndex - $signDataStartIndex + 1;
  724. if ($indexLen < 0) {
  725. return null;
  726. }
  727. return substr($responseContent, $signDataStartIndex, $indexLen);
  728. }
  729. function parserXMLSign($responseContent) {
  730. $signNodeName = "<" . $this->SIGN_NODE_NAME . ">";
  731. $signEndNodeName = "</" . $this->SIGN_NODE_NAME . ">";
  732. $indexOfSignNode = strpos($responseContent, $signNodeName);
  733. $indexOfSignEndNode = strpos($responseContent, $signEndNodeName);
  734. if ($indexOfSignNode < 0 || $indexOfSignEndNode < 0) {
  735. return null;
  736. }
  737. $nodeIndex = ($indexOfSignNode + strlen($signNodeName));
  738. $indexLen = $indexOfSignEndNode - $nodeIndex;
  739. if ($indexLen < 0) {
  740. return null;
  741. }
  742. // 签名
  743. return substr($responseContent, $nodeIndex, $indexLen);
  744. }
  745. /**
  746. * 验签
  747. * @param $request
  748. * @param $signData
  749. * @param $resp
  750. * @param $respObject
  751. * @throws Exception
  752. */
  753. public function checkResponseSign($request, $signData, $resp, $respObject) {
  754. if (!$this->checkEmpty($this->alipayPublicKey) || !$this->checkEmpty($this->alipayrsaPublicKey)) {
  755. if ($signData == null || $this->checkEmpty($signData->sign) || $this->checkEmpty($signData->signSourceData)) {
  756. throw new Exception(" check sign Fail! The reason : signData is Empty");
  757. }
  758. // 获取结果sub_code
  759. $responseSubCode = $this->parserResponseSubCode($request, $resp, $respObject, $this->format);
  760. if (!$this->checkEmpty($responseSubCode) || ($this->checkEmpty($responseSubCode) && !$this->checkEmpty($signData->sign))) {
  761. $checkResult = $this->verify($signData->signSourceData, $signData->sign, $this->alipayPublicKey, $this->signType);
  762. if (!$checkResult) {
  763. if (strpos($signData->signSourceData, "\\/") > 0) {
  764. $signData->signSourceData = str_replace("\\/", "/", $signData->signSourceData);
  765. $checkResult = $this->verify($signData->signSourceData, $signData->sign, $this->alipayPublicKey, $this->signType);
  766. if (!$checkResult) {
  767. throw new Exception("check sign Fail! [sign=" . $signData->sign . ", signSourceData=" . $signData->signSourceData . "]");
  768. }
  769. } else {
  770. throw new Exception("check sign Fail! [sign=" . $signData->sign . ", signSourceData=" . $signData->signSourceData . "]");
  771. }
  772. }
  773. }
  774. }
  775. }
  776. private function setupCharsets($request) {
  777. if ($this->checkEmpty($this->postCharset)) {
  778. $this->postCharset = 'UTF-8';
  779. }
  780. $str = preg_match('/[\x80-\xff]/', $this->appId) ? $this->appId : print_r($request, true);
  781. $this->fileCharset = mb_detect_encoding($str, "UTF-8, GBK") == 'UTF-8' ? 'UTF-8' : 'GBK';
  782. }
  783. // 获取加密内容
  784. private function encryptJSONSignSource($request, $responseContent) {
  785. $parsetItem = $this->parserEncryptJSONSignSource($request, $responseContent);
  786. $bodyIndexContent = substr($responseContent, 0, $parsetItem->startIndex);
  787. $bodyEndContent = substr($responseContent, $parsetItem->endIndex, strlen($responseContent) + 1 - $parsetItem->endIndex);
  788. $bizContent = new_decrypt($parsetItem->encryptContent, $this->encryptKey);
  789. return $bodyIndexContent . $bizContent . $bodyEndContent;
  790. }
  791. private function parserEncryptJSONSignSource($request, $responseContent) {
  792. $apiName = $request->getApiMethodName();
  793. $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
  794. $rootIndex = strpos($responseContent, $rootNodeName);
  795. $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
  796. if ($rootIndex > 0) {
  797. return $this->parserEncryptJSONItem($responseContent, $rootNodeName, $rootIndex);
  798. } else if ($errorIndex > 0) {
  799. return $this->parserEncryptJSONItem($responseContent, $this->ERROR_RESPONSE, $errorIndex);
  800. } else {
  801. return null;
  802. }
  803. }
  804. private function parserEncryptJSONItem($responseContent, $nodeName, $nodeIndex) {
  805. $signDataStartIndex = $nodeIndex + strlen($nodeName) + 2;
  806. $signIndex = strpos($responseContent, "\"" . $this->SIGN_NODE_NAME . "\"");
  807. // 签名前-逗号
  808. $signDataEndIndex = $signIndex - 1;
  809. if ($signDataEndIndex < 0) {
  810. $signDataEndIndex = strlen($responseContent)-1 ;
  811. }
  812. $indexLen = $signDataEndIndex - $signDataStartIndex;
  813. $encContent = substr($responseContent, $signDataStartIndex+1, $indexLen-2);
  814. $encryptParseItem = new EncryptParseItem();
  815. $encryptParseItem->encryptContent = $encContent;
  816. $encryptParseItem->startIndex = $signDataStartIndex;
  817. $encryptParseItem->endIndex = $signDataEndIndex;
  818. return $encryptParseItem;
  819. }
  820. // 获取加密内容
  821. private function encryptXMLSignSource($request, $responseContent) {
  822. $parsetItem = $this->parserEncryptXMLSignSource($request, $responseContent);
  823. $bodyIndexContent = substr($responseContent, 0, $parsetItem->startIndex);
  824. $bodyEndContent = substr($responseContent, $parsetItem->endIndex, strlen($responseContent) + 1 - $parsetItem->endIndex);
  825. $bizContent = new_decrypt($parsetItem->encryptContent, $this->encryptKey);
  826. return $bodyIndexContent . $bizContent . $bodyEndContent;
  827. }
  828. private function parserEncryptXMLSignSource($request, $responseContent) {
  829. $apiName = $request->getApiMethodName();
  830. $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
  831. $rootIndex = strpos($responseContent, $rootNodeName);
  832. $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
  833. // $this->echoDebug("<br/>rootNodeName:" . $rootNodeName);
  834. // $this->echoDebug("<br/> responseContent:<xmp>" . $responseContent . "</xmp>");
  835. if ($rootIndex > 0) {
  836. return $this->parserEncryptXMLItem($responseContent, $rootNodeName, $rootIndex);
  837. } else if ($errorIndex > 0) {
  838. return $this->parserEncryptXMLItem($responseContent, $this->ERROR_RESPONSE, $errorIndex);
  839. } else {
  840. return null;
  841. }
  842. }
  843. private function parserEncryptXMLItem($responseContent, $nodeName, $nodeIndex) {
  844. $signDataStartIndex = $nodeIndex + strlen($nodeName) + 1;
  845. $xmlStartNode="<".$this->ENCRYPT_XML_NODE_NAME.">";
  846. $xmlEndNode="</".$this->ENCRYPT_XML_NODE_NAME.">";
  847. $indexOfXmlNode=strpos($responseContent,$xmlEndNode);
  848. if($indexOfXmlNode<0){
  849. $item = new EncryptParseItem();
  850. $item->encryptContent = null;
  851. $item->startIndex = 0;
  852. $item->endIndex = 0;
  853. return $item;
  854. }
  855. $startIndex=$signDataStartIndex+strlen($xmlStartNode);
  856. $bizContentLen=$indexOfXmlNode-$startIndex;
  857. $bizContent=substr($responseContent,$startIndex,$bizContentLen);
  858. $encryptParseItem = new EncryptParseItem();
  859. $encryptParseItem->encryptContent = $bizContent;
  860. $encryptParseItem->startIndex = $signDataStartIndex;
  861. $encryptParseItem->endIndex = $indexOfXmlNode+strlen($xmlEndNode);
  862. return $encryptParseItem;
  863. }
  864. function echoDebug($content) {
  865. if ($this->debugInfo) {
  866. echo "<br/>" . $content;
  867. }
  868. }
  869. }