当前位置:   article > 正文

微信支付通知回调_微主支付 paynotifycallback

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

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/184006
推荐阅读
相关标签
  

闽ICP备14008679号