WeChat.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @filename WeChat.php
  5. * @date 2020/6/7
  6. * @project https://github.com/yanwenwu/catch-admin
  7. * @document http://doc.catchadmin.com
  8. * @author JaguarJack <njphper@gmail.com>
  9. * @copyright By CatchAdmin
  10. * @license https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt
  11. */
  12. namespace catcher\library;
  13. use catcher\exceptions\WechatResponseException;
  14. use catcher\library\Errors;
  15. use EasyWeChat\Factory;
  16. use think\helper\Str;
  17. /**
  18. *
  19. * @method static officialAccount()
  20. * @method static miniProgram()
  21. * @method static openPlatform()
  22. * @method static work()
  23. * @method static openWork()
  24. * @method static payment()
  25. *
  26. * Class WeChat
  27. * @package catcher\library
  28. */
  29. class WeChat
  30. {
  31. /**
  32. * 静态调用
  33. *
  34. * @time 2020年06月19日
  35. * @param $name
  36. * @param $arguments
  37. * @return mixed
  38. */
  39. public static function __callStatic($name, $arguments)
  40. {// TODO: Implement __callStatic() method.
  41. return Factory::{$name}(\config('wechat.'. Str::snake($name)));
  42. }
  43. /**
  44. * 动态调用
  45. *
  46. * @time 2020年06月19日
  47. * @param $name
  48. * @param $arguments
  49. * @return mixed
  50. */
  51. public function __call($name, $arguments)
  52. {
  53. // TODO: Implement __call() method.
  54. return Factory::{$name}(\config('wechat.'. Str::snake($name)));
  55. }
  56. /**
  57. * throw error
  58. *
  59. * @time 2020年06月21日
  60. * @param $response
  61. * @return bool
  62. */
  63. public static function throw($response)
  64. {
  65. if (isset($response['errcode']) && $response['errcode']) {
  66. $message = Errors::WECHAT[$response['errcode']] ?? $response['errcode'];
  67. throw new WechatResponseException($message, $response['errcode']);
  68. }
  69. return $response;
  70. }
  71. }