WxPay.Notify.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. /**
  3. *
  4. * 回调基础类
  5. * @author widyhu
  6. *
  7. */
  8. class WxPayNotify extends WxPayNotifyReply
  9. {
  10. /**
  11. *
  12. * 回调入口
  13. * @param bool $needSign 是否需要签名输出
  14. */
  15. final public function Handle($needSign = true)
  16. {
  17. $msg = "OK";
  18. //当返回false的时候,表示notify中调用NotifyCallBack回调失败获取签名校验失败,此时直接回复失败
  19. $result = WxpayApi::notify(array($this, 'NotifyCallBack'), $msg);
  20. if($result == false){
  21. $this->SetReturn_code("FAIL");
  22. $this->SetReturn_msg($msg);
  23. $this->ReplyNotify(false);
  24. return;
  25. } else {
  26. //该分支在成功回调到NotifyCallBack方法,处理完成之后流程
  27. $this->SetReturn_code("SUCCESS");
  28. $this->SetReturn_msg("OK");
  29. }
  30. $this->ReplyNotify($needSign);
  31. }
  32. /**
  33. *
  34. * 回调方法入口,子类可重写该方法
  35. * 注意:
  36. * 1、微信回调超时时间为2s,建议用户使用异步处理流程,确认成功之后立刻回复微信服务器
  37. * 2、微信服务器在调用失败或者接到回包为非确认包的时候,会发起重试,需确保你的回调是可以重入
  38. * @param array $data 回调解释出的参数
  39. * @param string $msg 如果回调处理失败,可以将错误信息输出到该方法
  40. * @return true回调出来完成不需要继续回调,false回调处理未完成需要继续回调
  41. */
  42. public function NotifyProcess($data, &$msg)
  43. {
  44. //TODO 用户基础该类之后需要重写该方法,成功的时候返回true,失败返回false
  45. return true;
  46. }
  47. /**
  48. *
  49. * notify回调方法,该方法中需要赋值需要输出的参数,不可重写
  50. * @param array $data
  51. * @return true回调出来完成不需要继续回调,false回调处理未完成需要继续回调
  52. */
  53. final public function NotifyCallBack($data)
  54. {
  55. $msg = "OK";
  56. $result = $this->NotifyProcess($data, $msg);
  57. if($result == true){
  58. $this->SetReturn_code("SUCCESS");
  59. $this->SetReturn_msg("OK");
  60. } else {
  61. $this->SetReturn_code("FAIL");
  62. $this->SetReturn_msg($msg);
  63. }
  64. return $result;
  65. }
  66. /**
  67. *
  68. * 回复通知
  69. * @param bool $needSign 是否需要签名输出
  70. */
  71. final private function ReplyNotify($needSign = true)
  72. {
  73. //如果需要签名
  74. if($needSign == true &&
  75. $this->GetReturn_code($return_code) == "SUCCESS")
  76. {
  77. $this->SetSign();
  78. }
  79. WxpayApi::replyNotify($this->ToXml());
  80. }
  81. }