Paypal.php 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882
  1. <?php
  2. /*
  3. * FecShop file.
  4. *
  5. * @link http://www.fecshop.com/
  6. * @copyright Copyright (c) 2016 FecShop Software LLC
  7. * @license http://www.fecshop.com/license/
  8. */
  9. namespace fecshop\services\payment;
  10. //use fecshop\models\mysqldb\IpnMessage;
  11. use fecshop\services\Service;
  12. use Yii;
  13. /**
  14. * Payment Paypal services.
  15. * @author Terry Zhao <2358269014@qq.com>
  16. * @since 1.0
  17. */
  18. class Paypal extends Service
  19. {
  20. /**
  21. * paypal支付状态 详细参看:https://developer.paypal.com/docs/classic/api/merchant/DoExpressCheckoutPayment_API_Operation_NVP/
  22. * 打开url后,浏览器查找:PAYMENTINFO_n_PAYMENTSTATUS , 即可找到下面各个状态对应的含义
  23. */
  24. public $payment_status_none = 'none';
  25. public $payment_status_completed = 'completed';
  26. public $payment_status_denied = 'denied';
  27. public $payment_status_expired = 'expired';
  28. public $payment_status_failed = 'failed';
  29. public $payment_status_in_progress = 'in_progress';
  30. public $payment_status_pending = 'pending';
  31. public $payment_status_refunded = 'refunded';
  32. public $payment_status_refunded_part= 'partially_refunded';
  33. public $payment_status_reversed = 'reversed';
  34. public $payment_status_unreversed = 'canceled_reversal';
  35. public $payment_status_processed = 'processed';
  36. public $payment_status_voided = 'voided';
  37. public $seller_email ;
  38. // 是否使用证书的方式(https)
  39. public $use_local_certs = false;
  40. // 在payment中 express paypal 的配置值
  41. public $express_payment_method;
  42. public $standard_payment_method;
  43. public $version = '109.0';
  44. public $crt_file;
  45. protected $_postData;
  46. protected $_order;
  47. const EXPRESS_TOKEN = 'paypal_express_token';
  48. const EXPRESS_PAYER_ID = 'paypal_express_payer_id';
  49. protected $payerID;
  50. protected $token;
  51. // 允许更改的订单状态,不存在这里面的订单状态不允许修改
  52. protected $_allowChangOrderStatus;
  53. protected $_ipnMessageModelName = '\fecshop\models\mysqldb\IpnMessage';
  54. protected $_ipnMessageModel;
  55. public function init()
  56. {
  57. parent::init();
  58. list($this->_ipnMessageModelName, $this->_ipnMessageModel) = \Yii::mapGet($this->_ipnMessageModelName);
  59. $this->_allowChangOrderStatus = [
  60. Yii::$service->order->payment_status_pending,
  61. Yii::$service->order->payment_status_processing,
  62. ];
  63. }
  64. /**
  65. * @param $domain | string
  66. * @return 得到证书crt文件的绝对路径
  67. */
  68. public function getCrtFile($domain)
  69. {
  70. if (isset($this->crt_file[$domain]) && !empty($this->crt_file[$domain])) {
  71. return Yii::getAlias($this->crt_file[$domain]);
  72. }
  73. }
  74. /**
  75. * 在paypal 标准支付中,paypal会向网站发送IPN消息,告知fecshop订单支付状态,
  76. * 进而fecshop更改订单状态。
  77. * fecshop一方面验证消息是否由paypal发出,另一方面要验证订单是否和后台的一致。
  78. */
  79. public function receiveIpn($post)
  80. {
  81. \Yii::info('receiveIpn', 'fecshop_debug');
  82. if ($this->verifySecurity($post)) {
  83. \Yii::info('verifySecurity', 'fecshop_debug');
  84. // 验证数据是否已经发送
  85. //if ($this->isNotDuplicate()) {
  86. // 验证数据是否被篡改。
  87. if ($this->isNotDistort()) {
  88. \Yii::info('updateOrderStatusByIpn', 'fecshop_debug');
  89. $this->updateOrderStatusByIpn();
  90. } else {
  91. // 如果数据和订单数据不一致,而且,支付状态为成功,则此订单
  92. // 标记为可疑的。
  93. $suspected_fraud = Yii::$service->order->payment_status_suspected_fraud;
  94. $this->updateOrderStatusByIpn($suspected_fraud);
  95. }
  96. // }
  97. }
  98. }
  99. /**
  100. * 该函数是为了验证IPN是否是由paypal发出,
  101. * 当paypal发送IPN消息给fecshop,fecshop不知道是否是伪造的支付消息,
  102. * 因此,fecshop将接收到的参数传递给paypal,询问paypal是否是paypal
  103. * 发送的IPN消息,如果是,则返回VERIFIED。
  104. */
  105. protected function verifySecurity($post)
  106. {
  107. $this->_postData = $post;
  108. $verifyUrl = $this->getVerifyUrl();
  109. \Yii::info('verifyUrl:'.$verifyUrl, 'fecshop_debug');
  110. $verifyReturn = $this->curlGet($verifyUrl);
  111. \Yii::info('verifyReturn:'.$verifyReturn, 'fecshop_debug');
  112. if ($verifyReturn == 'VERIFIED') {
  113. return true;
  114. }
  115. }
  116. /**
  117. * paypal发送的IPN,需要进行验证是否IPN是由paypal发出
  118. * 因此需要请求paypal确认,此函数返回请求paypal的url。
  119. */
  120. protected function getVerifyUrl()
  121. {
  122. $urlParamStr = '';
  123. if ($this->_postData) {
  124. foreach ($this->_postData as $k => $v) {
  125. $urlParamStr .= '&'.$k.'='.urlencode($v);
  126. }
  127. }
  128. $urlParamStr .= '&cmd=_notify-validate';
  129. $urlParamStr = substr($urlParamStr, 1);
  130. $current_payment_method = Yii::$service->payment->getPaymentMethod();
  131. if ($current_payment_method == $this->standard_payment_method) {
  132. $verifyUrl = Yii::$service->payment->getStandardWebscrUrl($this->standard_payment_method);
  133. } else {
  134. $verifyUrl = Yii::$service->payment->getExpressWebscrUrl($this->express_payment_method);
  135. }
  136. $verifyUrl = $verifyUrl.'?'.$urlParamStr;
  137. return $verifyUrl;
  138. }
  139. /**
  140. * @param $url | string, 请求的url
  141. * @param $i | 请求的次数,因为curl可能存在失败的可能,当
  142. * 失败后,就会通过递归的方式进行多次请求,这里设置的最大请求5次。
  143. * @return 返回请求url的return信息。
  144. */
  145. protected function curlGet($url, $i = 0)
  146. {
  147. $ch = curl_init($url);
  148. curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
  149. curl_setopt($ch, CURLOPT_POST, 1);
  150. curl_setopt($ch, CURLOPT_VERBOSE, 1);
  151. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  152. curl_setopt($ch, CURLOPT_POSTFIELDS, $req);
  153. curl_setopt($ch, CURLOPT_TIMEOUT, 30);
  154. curl_setopt($ch, CURLOPT_SSLVERSION, 6);
  155. if ($this->use_local_certs) {
  156. $crtFile = $this->getCrtFile('www.paypal.com');
  157. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
  158. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
  159. curl_setopt($ch, CURLOPT_CAINFO, $crtFile);
  160. } else {
  161. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  162. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  163. }
  164. curl_setopt($ch, CURLOPT_FORBID_REUSE, 1);
  165. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
  166. curl_setopt($ch, CURLOPT_HTTPHEADER, ['Connection: Close']);
  167. $httpResponse = curl_exec($ch);
  168. if (!$httpResponse) {
  169. $i++;
  170. if ($i <= 5) {
  171. return $this->curlGet($url, $i);
  172. } else {
  173. return $httpResponse;
  174. }
  175. }
  176. return $httpResponse;
  177. }
  178. /**
  179. * paypal 可能发送多次IPN消息
  180. * 判断是否重复,如果不重复,把当前的插入。
  181. */
  182. /*
  183. protected function isNotDuplicate()
  184. {
  185. $ipn = $this->_ipnMessageModel->find()
  186. ->asArray()
  187. ->where([
  188. 'txn_id'=>$this->_postData['txn_id'],
  189. 'payment_status'=>$this->_postData['payment_status'],
  190. ])
  191. ->one();
  192. if (is_array($ipn) && !empty($ipn)) {
  193. return false;
  194. } else {
  195. $IpnMessage = new $this->_ipnMessageModelName();
  196. $IpnMessage->txn_id = $this->_postData['txn_id'];
  197. $IpnMessage->payment_status = $this->_postData['payment_status'];
  198. $IpnMessage->updated_at = time();
  199. $IpnMessage->save();
  200. return true;
  201. }
  202. }
  203. */
  204. /**
  205. * 验证订单数据是否被篡改。
  206. * 通过订单号找到订单,查看是否存在
  207. * 验证邮件地址,订单金额是否准确。
  208. */
  209. protected function isNotDistort()
  210. {
  211. //Yii::$app->mylog->log("begin isNotDistort..");
  212. $increment_id = $this->_postData['invoice'];
  213. $mc_gross = $this->_postData['mc_gross'];
  214. $mc_currency = $this->_postData['mc_currency'];
  215. if ($increment_id && $mc_gross && $mc_currency) {
  216. $this->_order = Yii::$service->order->getByIncrementId($increment_id);
  217. if ($this->_order) {
  218. $order_currency_code = $this->_order['order_currency_code'];
  219. if ($order_currency_code == $mc_currency) {
  220. // 核对订单总额
  221. $currentCurrencyGrandTotal = $this->_order['grand_total'];
  222. // if (round($currentCurrencyGrandTotal, 2) == round($mc_gross, 2)) {
  223. // 因为float精度问题,使用高精度函数进行比较,精度到2位小数
  224. if(bccomp($currentCurrencyGrandTotal, $mc_gross, 2) == 0){
  225. return true;
  226. } else {
  227. }
  228. } else {
  229. }
  230. }
  231. }
  232. return false;
  233. }
  234. /**
  235. * @param $orderstatus | String 订单状态
  236. * 根据接收的ipn消息,更改订单状态。
  237. */
  238. protected function updateOrderStatusByIpn($orderstatus = '')
  239. {
  240. $order_cancel_status = Yii::$service->order->payment_status_canceled;
  241. // 如果订单状态被取消,那么不能进行支付。
  242. if ($this->_order->order_status == $order_cancel_status) {
  243. Yii::$service->helper->error->add('The order status has been canceled and you can not pay for item ,you can create a new order to pay');
  244. return;
  245. }
  246. $updateArr = [];
  247. if ($this->_postData['txn_type']) {
  248. $updateArr['txn_type'] = $this->_postData['txn_type'];
  249. }
  250. if ($this->_postData['txn_id']) {
  251. $updateArr['txn_id'] = $this->_postData['txn_id'];
  252. }
  253. if ($this->_postData['payer_id']) {
  254. $updateArr['payer_id'] = $this->_postData['payer_id'];
  255. }
  256. if ($this->_postData['ipn_track_id']) {
  257. $updateArr['ipn_track_id'] = $this->_postData['ipn_track_id'];
  258. }
  259. if ($this->_postData['receiver_id']) {
  260. $updateArr['receiver_id'] = $this->_postData['receiver_id'];
  261. }
  262. if ($this->_postData['verify_sign']) {
  263. $updateArr['verify_sign'] = $this->_postData['verify_sign'];
  264. }
  265. if ($this->_postData['charset']) {
  266. $updateArr['charset'] = $this->_postData['charset'];
  267. }
  268. if ($this->_postData['mc_fee']) {
  269. $updateArr['payment_fee'] = $this->_postData['mc_fee'];
  270. $currency = $this->_postData['mc_currency'];
  271. $updateArr['base_payment_fee'] = Yii::$service->page->currency->getBaseCurrencyPrice($this->_postData['mc_fee'], $currency);
  272. }
  273. if ($this->_postData['payment_type']) {
  274. $updateArr['payment_type'] = $this->_postData['payment_type'];
  275. }
  276. if ($this->_postData['payment_date']) {
  277. $updateArr['paypal_order_datetime'] = date('Y-m-d H:i:s', $this->_postData['payment_date']);
  278. }
  279. if ($this->_postData['protection_eligibility']) {
  280. $updateArr['protection_eligibility'] = $this->_postData['protection_eligibility'];
  281. }
  282. $updateArr['updated_at'] = time();
  283. //$this->_order->updated_at = time();
  284. // 在service中不要出现事务代码,如果添加事务,请在调用层使用。
  285. //$innerTransaction = Yii::$app->db->beginTransaction();
  286. //try {
  287. // 可以更改的订单状态
  288. if ($orderstatus) {
  289. $updateArr['order_status'] = $orderstatus;
  290. $this->_order->updateAll(
  291. $updateArr,
  292. [
  293. 'and',
  294. ['order_id' => $this->_order['order_id']],
  295. ['in','order_status',$this->_allowChangOrderStatus]
  296. ]
  297. );
  298. // 指定了订单状态
  299. // $this->_order->order_status = $orderstatus;
  300. // $this->_order->save();
  301. // $payment_status = strtolower($this->_postData['payment_status']);
  302. // Yii::$app->mylog->log('save_'.$orderstatus);
  303. } else {
  304. $payment_status = strtolower($this->_postData['payment_status']);
  305. if ($payment_status == $this->payment_status_completed) {
  306. // paypal支付完成,将订单状态改成:收款已确认。
  307. // 只有存在于 $this->_allowChangOrderStatus 数组的状态,才允许更改,按照目前的设置,取消了的订单是不允许更改的
  308. $orderstatus = Yii::$service->order->payment_status_confirmed;
  309. $updateArr['order_status'] = $orderstatus;
  310. $updateColumn = $this->_order->updateAll(
  311. $updateArr,
  312. [
  313. 'and',
  314. ['order_id' => $this->_order['order_id']],
  315. ['in','order_status',$this->_allowChangOrderStatus]
  316. ]
  317. );
  318. //$this->_order->order_status = Yii::$service->order->payment_status_processing;
  319. // 更新订单信息
  320. //$this->_order->save();
  321. // 因为IPN消息可能不止发送一次,但是这里只允许一次,
  322. // 如果重复发送,$updateColumn 的更新返回值将为0
  323. if (!empty($updateColumn)) {
  324. Yii::$service->order->orderPaymentCompleteEvent($this->_order['increment_id']);
  325. // 上面的函数已经执行下面的代码,因此注释掉。
  326. // $orderInfo = Yii::$service->order->getOrderInfoByIncrementId($this->_order['increment_id']);
  327. // 发送新订单邮件
  328. // Yii::$service->email->order->sendCreateEmail($orderInfo);
  329. }
  330. } elseif ($payment_status == $this->payment_status_pending) {
  331. // pending 代表信用卡预付方式,需要等待paypal从信用卡中把钱扣除,因此订单状态是processing
  332. $orderstatus = Yii::$service->order->payment_status_processing;
  333. $updateArr['order_status'] = $orderstatus;
  334. $updateColumn = $this->_order->updateAll(
  335. $updateArr,
  336. [
  337. 'and',
  338. ['order_id' => $this->_order['order_id']],
  339. ['order_status' => Yii::$service->order->payment_status_pending]
  340. ]
  341. );
  342. } elseif ($payment_status == $this->payment_status_failed) {
  343. // 暂不处理
  344. } elseif ($payment_status == $this->payment_status_refunded) {
  345. // 暂不处理
  346. } else {
  347. // 暂不处理
  348. }
  349. }
  350. //$innerTransaction->commit();
  351. return true;
  352. //} catch (\Exception $e) {
  353. // $innerTransaction->rollBack();
  354. //}
  355. //return false;
  356. }
  357. // express 部分
  358. /**
  359. * @param $token | String , 通过 下面的 PPHttpPost5 方法返回的paypal express的token
  360. * @return String,通过token得到跳转的 paypal url,通过这个url跳转到paypal登录页面,进行支付的开始
  361. */
  362. public function getExpressCheckoutUrl($token)
  363. {
  364. if ($token) {
  365. $webscrUrl = Yii::$service->payment->getExpressWebscrUrl($this->express_payment_method);
  366. return $webscrUrl.'?cmd=_express-checkout&token='.urlencode($token);
  367. }
  368. }
  369. /**
  370. * @param $token | String , 通过 下面的 PPHttpPost5 方法返回的paypal standard的token
  371. * @return String,通过token得到跳转的 paypal url,通过这个url跳转到paypal登录页面,进行支付的开始
  372. */
  373. public function getStandardCheckoutUrl($token)
  374. {
  375. if ($token) {
  376. $webscrUrl = Yii::$service->payment->getStandardWebscrUrl($this->standard_payment_method);
  377. return $webscrUrl.'?useraction=commit&cmd=_express-checkout&token='.urlencode($token);
  378. }
  379. }
  380. /**
  381. * @param $methodName_ | String,请求的方法,譬如: $methodName_ = "SetExpressCheckout";
  382. * @param $nvpStr_ | String ,请求传递的购物车中的产品和总额部分的数据,组合成字符串的格式。
  383. * @param $i | Int , 限制递归次数的变量,当api获取失败的时候,可以通过递归的方式多次尝试,直至超过最大失败次数,才会返回失败
  384. * 此方法为获取token。返回的数据为数组,里面含有 ACK TOKEN 等值。
  385. * 也就是和paypal进行初次的api账号密码验证,成功后返回token等信息。
  386. */
  387. public function PPHttpPost5($methodName_, $nvpStr_, $i = 1)
  388. {
  389. $current_payment_method = Yii::$service->payment->getPaymentMethod();
  390. if ($current_payment_method == $this->standard_payment_method) {
  391. $API_NvpUrl = Yii::$service->payment->getStandardNvpUrl($this->standard_payment_method);
  392. $API_Signature = Yii::$service->payment->getStandardSignature($this->standard_payment_method);
  393. $API_UserName = Yii::$service->payment->getStandardAccount($this->standard_payment_method);
  394. $API_Password = Yii::$service->payment->getStandardPassword($this->standard_payment_method);
  395. $ipn_url = Yii::$service->payment->getStandardIpnUrl($this->standard_payment_method);
  396. } else {
  397. $API_NvpUrl = Yii::$service->payment->getExpressNvpUrl($this->express_payment_method);
  398. $API_Signature = Yii::$service->payment->getExpressSignature($this->express_payment_method);
  399. $API_UserName = Yii::$service->payment->getExpressAccount($this->express_payment_method);
  400. $API_Password = Yii::$service->payment->getExpressPassword($this->express_payment_method);
  401. $ipn_url = Yii::$service->payment->getExpressIpnUrl($this->express_payment_method);
  402. }
  403. // Set the API operation, version, and API signature in the request.
  404. $nvpreq = "METHOD=$methodName_&PWD=$API_Password&USER=$API_UserName&SIGNATURE=$API_Signature$nvpStr_";
  405. $nvpreq .= "&PAYMENTREQUEST_0_NOTIFYURL=".urlencode($ipn_url);
  406. //echo $nvpreq;
  407. //\Yii::info($nvpreq, 'fecshop_debug');
  408. //exit;
  409. $ch = curl_init();
  410. curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
  411. curl_setopt($ch, CURLOPT_URL, $API_NvpUrl);
  412. curl_setopt($ch, CURLOPT_VERBOSE, 1);
  413. curl_setopt($ch, CURLOPT_TIMEOUT, 30);
  414. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  415. curl_setopt($ch, CURLOPT_POST, 1);
  416. curl_setopt($ch, CURLOPT_SSLVERSION, 6);
  417. if ($this->use_local_certs) {
  418. $crtFile = $this->getCrtFile('api-3t.paypal.com');
  419. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
  420. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
  421. curl_setopt($ch, CURLOPT_CAINFO, $crtFile);
  422. } else {
  423. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  424. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  425. }
  426. // Set the request as a POST FIELD for curl.
  427. curl_setopt($ch, CURLOPT_POSTFIELDS, $nvpreq);
  428. curl_setopt($ch, CURLOPT_FORBID_REUSE, 1);
  429. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
  430. curl_setopt($ch, CURLOPT_HTTPHEADER, ['Connection: Close']);
  431. // Get response from the server.
  432. $httpResponse = curl_exec($ch);
  433. //echo "<br><br>%%%%%".$httpResponse."%%%%%<br><br>";
  434. if (!$httpResponse) {
  435. $i++;
  436. if ($i > 5) {
  437. //获取三次失败后,则推出。
  438. exit("$methodName_ failed: ".curl_error($ch).'('.curl_errno($ch).')');
  439. } else {
  440. $httpResponse = $this->PPHttpPost5($methodName_, $nvpStr_, $i);
  441. }
  442. } else {
  443. //第一次获取数据失败,则再次获取。并返回、
  444. if ($i > 0) {
  445. //return $httpResponse;
  446. }
  447. }
  448. //paypal返回的是一系列的字符串,譬如:L_TIMESTAMP0=2014-11-08T01:51:13Z&L_TIMESTAMP1=2014-11-08T01:40:41Z&L_TIMESTAMP2=2014-11-08T01:40:40Z&
  449. //下面要做的是先把字符串通过&字符打碎成数组
  450. //
  451. //echo "***************<br>";
  452. //echo urldecode($httpResponse);
  453. //echo "<br>***************<br>";
  454. $httpResponseAr = explode('&', urldecode($httpResponse));
  455. $httpParsedResponseAr = [];
  456. foreach ($httpResponseAr as $i => $value) {
  457. $tmpAr = explode('=', $value);
  458. if (sizeof($tmpAr) > 1) {
  459. $httpParsedResponseAr[$tmpAr[0]] = $tmpAr[1];
  460. }
  461. }
  462. if ((0 == sizeof($httpParsedResponseAr)) || !array_key_exists('ACK', $httpParsedResponseAr)) {
  463. exit("Invalid HTTP Response for POST request($nvpreq) to $API_NvpUrl.");
  464. }
  465. return $httpParsedResponseAr;
  466. }
  467. /**
  468. * @param $nvp_array | Array, 各个配置参数
  469. * 将数组里面的key和value,组合成url的字符串,生成nvp url
  470. */
  471. public function getRequestUrlStrByArray($nvp_array)
  472. {
  473. $str = '';
  474. if (is_array($nvp_array) && !empty($nvp_array)) {
  475. foreach ($nvp_array as $k=>$v) {
  476. $str .= '&'.urlencode($k).'='.urlencode($v);
  477. }
  478. }
  479. //echo $str;exit;
  480. return $str;
  481. }
  482. /**
  483. * 【paypal支付部分】api发送付款请求的参数部分
  484. * 通过该函数,将参数组合成字符串,为下一步api发送给paypal进行付款做准备
  485. */
  486. public function getCheckoutPaymentNvpStr($token)
  487. {
  488. $nvp_array = [];
  489. $nvp_array['PAYERID'] = $this->getPayerID();
  490. $nvp_array['TOKEN'] = $this->getToken();
  491. $nvp_array['PAYMENTREQUEST_0_PAYMENTACTION'] = 'Sale';
  492. $nvp_array['VERSION'] = $this->version;
  493. // https://developer.paypal.com/docs/classic/api/merchant/SetExpressCheckout_API_Operation_NVP/
  494. // 检查地址
  495. $nvp_array['ADDROVERRIDE'] = 0;
  496. //ADDROVERRIDE
  497. // 得到购物车的信息,通过购物车信息填写。
  498. $orderInfo = Yii::$service->order->getInfoByPaymentToken($token);
  499. //$cartInfo = Yii::$service->cart->getCartInfo(true);
  500. $currency = Yii::$service->page->currency->getCurrentCurrency();
  501. $grand_total = Yii::$service->helper->format->number_format($orderInfo['grand_total']);
  502. $subtotal = Yii::$service->helper->format->number_format($orderInfo['subtotal']);
  503. $shipping_total = Yii::$service->helper->format->number_format($orderInfo['shipping_total']);
  504. $discount_amount= Yii::$service->helper->format->number_format($orderInfo['subtotal_with_discount']);
  505. $subtotal = $subtotal - $discount_amount;
  506. $nvp_array['PAYMENTREQUEST_0_SHIPTOSTREET'] = $orderInfo['customer_address_street1'].' '.$orderInfo['customer_address_street2'];
  507. $nvp_array['PAYMENTREQUEST_0_SHIPTOCITY'] = $orderInfo['customer_address_city'];
  508. $nvp_array['PAYMENTREQUEST_0_SHIPTOSTATE'] = $orderInfo['customer_address_state_name'];
  509. $nvp_array['PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE'] = $orderInfo['customer_address_country'];
  510. $nvp_array['PAYMENTREQUEST_0_SHIPTOZIP'] = $orderInfo['customer_address_zip'];
  511. $nvp_array['PAYMENTREQUEST_0_SHIPTONAME'] = $orderInfo['customer_firstname'].' '.$orderInfo['customer_lastname'];
  512. $nvp_array['PAYMENTREQUEST_0_INVNUM'] = $orderInfo['increment_id'];
  513. $nvp_array['PAYMENTREQUEST_0_CURRENCYCODE'] = $currency;
  514. $nvp_array['PAYMENTREQUEST_0_AMT'] = $grand_total;
  515. $nvp_array['PAYMENTREQUEST_0_ITEMAMT'] = $subtotal;
  516. $nvp_array['PAYMENTREQUEST_0_SHIPPINGAMT'] = $shipping_total;
  517. if ($this->seller_email) {
  518. $nvp_array['PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID'] = $this->seller_email;
  519. }
  520. $i = 0;
  521. foreach ($orderInfo['products'] as $item) {
  522. $nvp_array['L_PAYMENTREQUEST_0_QTY'.$i] = $item['qty'];
  523. $nvp_array['L_PAYMENTREQUEST_0_NUMBER'.$i] = $item['sku'];
  524. $nvp_array['L_PAYMENTREQUEST_0_AMT'.$i] = Yii::$service->helper->format->number_format($item['price']);
  525. $nvp_array['L_PAYMENTREQUEST_0_NAME'.$i] = $item['name'];
  526. $nvp_array['L_PAYMENTREQUEST_0_CURRENCYCODE'.$i] = $currency;
  527. $i++;
  528. }
  529. $nvp_array['L_PAYMENTREQUEST_0_NAME'.$i] = 'Discount';
  530. $nvp_array['L_PAYMENTREQUEST_0_AMT'.$i] = '-'.$discount_amount;
  531. //var_dump($nvp_array);
  532. $nvpStr = $this->getRequestUrlStrByArray($nvp_array);
  533. //var_dump($nvpStr);
  534. return $nvpStr;
  535. }
  536. /**
  537. * 【paypal快捷支付部分】将参数组合成字符串。
  538. * 通过api token,从paypal获取用户在paypal保存的货运地址。
  539. */
  540. public function getExpressAddressNvpStr()
  541. {
  542. $nvp_array = [];
  543. $nvp_array['VERSION'] = Yii::$service->payment->paypal->version;
  544. $nvp_array['token'] = Yii::$service->payment->paypal->getToken();
  545. return $this->getRequestUrlStrByArray($nvp_array);
  546. }
  547. /**
  548. * @param $landingPage | String ,访问api的类型,譬如login
  549. * 【paypal快捷支付部分】通过购物车中的数据,组合成访问paypal express api的url
  550. * 这里返回的的字符串,是快捷支付部分获取token和payerId的参数。
  551. * 将返回的参数,传递给Yii::$service->payment->paypal->PPHttpPost5($methodName_, $nvpStr_)
  552. * 最终得到paypal express的token和payerId
  553. */
  554. public function getExpressTokenNvpStr($landingPage = 'Login', $return_url='', $cancel_url='')
  555. {
  556. $nvp_array = [];
  557. $nvp_array['LANDINGPAGE'] = $landingPage;
  558. if ($return_url) {
  559. $nvp_array['RETURNURL'] = $return_url;
  560. } else {
  561. $nvp_array['RETURNURL'] = Yii::$service->payment->getExpressReturnUrl($this->express_payment_method);
  562. }
  563. if ($cancel_url) {
  564. $nvp_array['CANCELURL'] = $cancel_url;
  565. } else {
  566. $nvp_array['CANCELURL'] = Yii::$service->payment->getExpressCancelUrl($this->express_payment_method);
  567. }
  568. $nvp_array['PAYMENTREQUEST_0_PAYMENTACTION'] = 'Sale';
  569. $nvp_array['VERSION'] = $this->version;
  570. // 得到购物车的信息,通过购物车信息填写。
  571. $cartInfo = Yii::$service->cart->getCartInfo(true);
  572. $currency = Yii::$service->page->currency->getCurrentCurrency();
  573. $grand_total = $cartInfo['grand_total'];
  574. $subtotal = $cartInfo['product_total'];
  575. $shipping_total = $cartInfo['shipping_cost'];
  576. $discount_amount = $cartInfo['coupon_cost'];
  577. $subtotal = $subtotal - $discount_amount;
  578. $nvp_array['PAYMENTREQUEST_0_CURRENCYCODE'] = $currency;
  579. $nvp_array['PAYMENTREQUEST_0_AMT'] = $grand_total;
  580. $nvp_array['PAYMENTREQUEST_0_ITEMAMT'] = $subtotal;
  581. $nvp_array['PAYMENTREQUEST_0_SHIPPINGAMT'] = $shipping_total;
  582. if ($this->seller_email) {
  583. $nvp_array['PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID'] = $this->seller_email;
  584. }
  585. $i = 0;
  586. foreach ($cartInfo['products'] as $item) {
  587. $nvp_array['L_PAYMENTREQUEST_0_QTY'.$i] = $item['qty'];
  588. $nvp_array['L_PAYMENTREQUEST_0_NUMBER'.$i] = $item['sku'];
  589. $nvp_array['L_PAYMENTREQUEST_0_AMT'.$i] = $item['product_price'];
  590. $nvp_array['L_PAYMENTREQUEST_0_NAME'.$i] = Yii::$service->store->getStoreAttrVal($item['name'], 'name');
  591. $nvp_array['L_PAYMENTREQUEST_0_CURRENCYCODE'.$i] = $currency;
  592. $i++;
  593. }
  594. $nvp_array['L_PAYMENTREQUEST_0_NAME'.$i] = 'Discount';
  595. $nvp_array['L_PAYMENTREQUEST_0_AMT'.$i] = '-'.$discount_amount;
  596. return $this->getRequestUrlStrByArray($nvp_array);
  597. }
  598. /**
  599. * @param $landingPage | String ,访问api的类型,譬如login
  600. * 【paypal标准支付部分】通过订单中的数据,组合成访问paypal api的url
  601. * 这里返回的的字符串,是标准支付部分获取token和payerId的参数。
  602. * 通过 $checkoutReturn = Yii::$service->payment->paypal->PPHttpPost5($methodName_, $nvpStr_);
  603. * 获取token和payerId的参数。($nvpStr_ 就是本函数的返回值)
  604. */
  605. public function getStandardTokenNvpStr($landingPage = 'Login', $return_url='', $cancel_url='')
  606. {
  607. $nvp_array = [];
  608. $nvp_array['LANDINGPAGE'] = $landingPage;
  609. if ($return_url) {
  610. $nvp_array['RETURNURL'] = $return_url;
  611. } else {
  612. $nvp_array['RETURNURL'] = Yii::$service->payment->getStandardReturnUrl('paypal_standard');
  613. }
  614. if ($cancel_url) {
  615. $nvp_array['CANCELURL'] = $cancel_url;
  616. } else {
  617. $nvp_array['CANCELURL'] = Yii::$service->payment->getStandardCancelUrl('paypal_standard');
  618. }
  619. $nvp_array['PAYMENTREQUEST_0_PAYMENTACTION'] = 'Sale';
  620. $nvp_array['VERSION'] = $this->version;
  621. // 得到购物车的信息,通过购物车信息填写。
  622. $orderInfo = Yii::$service->order->getCurrentOrderInfo();
  623. //var_dump($orderInfo);
  624. $currency = $orderInfo['order_currency_code'];
  625. $grand_total = Yii::$service->helper->format->number_format($orderInfo['grand_total']);
  626. $subtotal = Yii::$service->helper->format->number_format($orderInfo['subtotal']);
  627. $shipping_total = Yii::$service->helper->format->number_format($orderInfo['shipping_total']);
  628. $discount_amount= $orderInfo['subtotal_with_discount'] ? $orderInfo['subtotal_with_discount'] : 0;
  629. $subtotal = $subtotal - $discount_amount;
  630. $nvp_array['PAYMENTREQUEST_0_CURRENCYCODE'] = $currency;
  631. $nvp_array['PAYMENTREQUEST_0_AMT'] = $grand_total;
  632. $nvp_array['PAYMENTREQUEST_0_ITEMAMT'] = $subtotal;
  633. $nvp_array['PAYMENTREQUEST_0_SHIPPINGAMT'] = $shipping_total;
  634. if ($this->seller_email) {
  635. $nvp_array['PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID'] = $this->seller_email;
  636. }
  637. $i = 0;
  638. foreach ($orderInfo['products'] as $item) {
  639. $nvp_array['L_PAYMENTREQUEST_0_QTY'.$i] = $item['qty'];
  640. $nvp_array['L_PAYMENTREQUEST_0_NUMBER'.$i] = $item['sku'];
  641. $nvp_array['L_PAYMENTREQUEST_0_AMT'.$i] = Yii::$service->helper->format->number_format($item['price']);
  642. $nvp_array['L_PAYMENTREQUEST_0_NAME'.$i] = $item['name'];
  643. ;
  644. $nvp_array['L_PAYMENTREQUEST_0_CURRENCYCODE'.$i] = $currency;
  645. $i++;
  646. }
  647. $nvp_array['L_PAYMENTREQUEST_0_NAME'.$i] = 'Discount';
  648. $nvp_array['L_PAYMENTREQUEST_0_AMT'.$i] = '-'.$discount_amount;
  649. //var_dump($nvp_array);
  650. //exit;
  651. return $this->getRequestUrlStrByArray($nvp_array);
  652. }
  653. /**
  654. * 从get参数里得到paypal支付的token
  655. */
  656. public function getToken()
  657. {
  658. if (!$this->token) {
  659. $token = Yii::$app->request->get('token');
  660. if (!$token) {
  661. $token = Yii::$app->request->post('token');
  662. }
  663. $token = \Yii::$service->helper->htmlEncode($token);
  664. if ($token) {
  665. $this->token = $token;
  666. }
  667. }
  668. return $this->token;
  669. }
  670. /**
  671. * 从get参数里得到paypal支付的PayerID
  672. */
  673. public function getPayerID()
  674. {
  675. if (!$this->payerID) {
  676. $payerID = Yii::$app->request->get('PayerID');
  677. if (!$payerID) {
  678. $payerID = Yii::$app->request->post('PayerID');
  679. }
  680. $payerID = \Yii::$service->helper->htmlEncode($payerID);
  681. if ($payerID) {
  682. $this->payerID = $payerID;
  683. }
  684. }
  685. return $this->payerID;
  686. }
  687. /**
  688. * @param $doCheckoutReturn | Array ,
  689. * paypal付款状态提交后,更新订单的支付部分的信息。
  690. */
  691. public function updateOrderPayment($doCheckoutReturn, $token)
  692. {
  693. if ($doCheckoutReturn) {
  694. $order = Yii::$service->order->getByPaymentToken($token);
  695. $order_cancel_status = Yii::$service->order->payment_status_canceled;
  696. // 如果订单状态被取消,那么不能进行支付。
  697. if ($order['order_status'] == $order_cancel_status) {
  698. Yii::$service->helper->errors->add('The order status has been canceled and you can not pay for item ,you can create a new order to pay');
  699. return false;
  700. }
  701. $updateArr = [];
  702. if ($order['increment_id']) {
  703. //echo 'bbb';
  704. $updateArr['txn_id'] = $doCheckoutReturn['PAYMENTINFO_0_TRANSACTIONID'];
  705. $updateArr['txn_type'] = $doCheckoutReturn['PAYMENTINFO_0_TRANSACTIONTYPE'];
  706. $PAYMENTINFO_0_AMT = $doCheckoutReturn['PAYMENTINFO_0_AMT'];
  707. $updateArr['payment_fee'] = $doCheckoutReturn['PAYMENTINFO_0_FEEAMT'];
  708. $currency = $doCheckoutReturn['PAYMENTINFO_0_CURRENCYCODE'];
  709. $updateArr['base_payment_fee'] = Yii::$service->page->currency->getBaseCurrencyPrice($updateArr['payment_fee'], $currency);
  710. $updateArr['payer_id'] = $this->getPayerID();
  711. $updateArr['correlation_id'] = $doCheckoutReturn['CORRELATIONID'];
  712. $updateArr['protection_eligibility'] = $doCheckoutReturn['PAYMENTINFO_0_PROTECTIONELIGIBILITY'];
  713. $updateArr['protection_eligibility_type'] = $doCheckoutReturn['PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE'];
  714. $updateArr['secure_merchant_account_id'] = $doCheckoutReturn['PAYMENTINFO_0_SECUREMERCHANTACCOUNTID'];
  715. $updateArr['build'] = $doCheckoutReturn['BUILD'];
  716. $updateArr['payment_type'] = $doCheckoutReturn['PAYMENTINFO_0_PAYMENTTYPE'];
  717. $updateArr['paypal_order_datetime'] = date('Y-m-d H:i:s', $doCheckoutReturn['PAYMENTINFO_0_ORDERTIME']);
  718. $PAYMENTINFO_0_PAYMENTSTATUS = $doCheckoutReturn['PAYMENTINFO_0_PAYMENTSTATUS'];
  719. $updateArr['updated_at'] = time();
  720. if (
  721. strtolower($PAYMENTINFO_0_PAYMENTSTATUS) == $this->payment_status_completed
  722. ||
  723. strtolower($PAYMENTINFO_0_PAYMENTSTATUS) == $this->payment_status_processed
  724. ) {
  725. $order_status = Yii::$service->order->payment_status_confirmed;
  726. if ($currency == $order['order_currency_code'] && $PAYMENTINFO_0_AMT == $order['grand_total']) {
  727. $updateArr['order_status'] = $order_status;
  728. $updateColumn = $order->updateAll(
  729. $updateArr,
  730. [
  731. 'and',
  732. ['order_id' => $order['order_id']],
  733. ['in','order_status',$this->_allowChangOrderStatus]
  734. ]
  735. );
  736. // 因为IPN消息可能不止发送一次,但是这里只允许一次,
  737. // 如果重复发送,$updateColumn 的更新返回值将为0
  738. if (!empty($updateColumn)) {
  739. // 执行订单支付成功后的事情。
  740. Yii::$service->order->orderPaymentCompleteEvent($order['increment_id']);
  741. // 上面的函数已经执行下面的代码,因此注释掉。
  742. // $orderInfo = Yii::$service->order->getOrderInfoByIncrementId($order['increment_id']);
  743. // Yii::$service->email->order->sendCreateEmail($orderInfo);
  744. }
  745. return true;
  746. } else {
  747. // 金额不一致,判定为欺诈
  748. Yii::$service->helper->errors->add('The amount of payment is inconsistent with the amount of the order');
  749. $order_status = Yii::$service->order->payment_status_suspected_fraud;
  750. $updateArr['order_status'] = $order_status;
  751. $updateColumn = $order->updateAll(
  752. $updateArr,
  753. [
  754. 'and',
  755. ['order_id' => $order['order_id']],
  756. ['in','order_status',$this->_allowChangOrderStatus]
  757. ]
  758. );
  759. }
  760. } elseif (strtolower($PAYMENTINFO_0_PAYMENTSTATUS) == $this->payment_status_pending) {
  761. // 这种情况代表paypal 信用卡预售,需要等待一段时间才知道是否收到钱
  762. $order_status = Yii::$service->order->payment_status_processing;
  763. if ($currency == $order['order_currency_code'] && $PAYMENTINFO_0_AMT == $order['grand_total']) {
  764. $updateArr['order_status'] = $order_status;
  765. $updateColumn = $order->updateAll(
  766. $updateArr,
  767. [
  768. 'and',
  769. ['order_id' => $order['order_id']],
  770. ['order_status' => Yii::$service->order->payment_status_pending]
  771. ]
  772. );
  773. // 这种情况并没有接收到paypal的钱,只是一种支付等待状态,
  774. // 因此,对于这种支付状态,视为正常订单,但是没有支付成功,需要延迟等待,如果支付成功,paypal会继续发送IPN消息。
  775. return true;
  776. } else {
  777. // 金额不一致,判定为欺诈
  778. Yii::$service->helper->errors->add('The amount of payment is inconsistent with the amount of the order');
  779. $order_status = Yii::$service->order->payment_status_suspected_fraud;
  780. $updateArr['order_status'] = $order_status;
  781. $updateColumn = $order->updateAll(
  782. $updateArr,
  783. [
  784. 'and',
  785. ['order_id' => $order['order_id']],
  786. ['in','order_status',$this->_allowChangOrderStatus]
  787. ]
  788. );
  789. }
  790. } else {
  791. Yii::$service->helper->errors->add('paypal payment is not complete , current payment status is {payment_status}', ['payment_status' => $PAYMENTINFO_0_PAYMENTSTATUS]);
  792. }
  793. } else {
  794. Yii::$service->helper->errors->add('current order is not exist');
  795. }
  796. } else {
  797. Yii::$service->helper->errors->add('CheckoutReturn is empty');
  798. }
  799. return false;
  800. }
  801. }