AopClient.php 41 KB

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