Menu.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | WeChatDeveloper
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://think.ctolog.com
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/WeChatDeveloper
  12. // +----------------------------------------------------------------------
  13. namespace WeChat;
  14. use WeChat\Contracts\BasicWeChat;
  15. /**
  16. * 微信菜单管理
  17. * Class Menu
  18. * @package WeChat
  19. */
  20. class Menu extends BasicWeChat
  21. {
  22. /**
  23. * 自定义菜单查询接口
  24. * @return array
  25. * @throws Exceptions\InvalidResponseException
  26. * @throws Exceptions\LocalCacheException
  27. */
  28. public function get()
  29. {
  30. $url = "https://api.weixin.qq.com/cgi-bin/menu/get?access_token=ACCESS_TOKEN";
  31. $this->registerApi($url, __FUNCTION__, func_get_args());
  32. return $this->httpGetForJson($url);
  33. }
  34. /**
  35. * 自定义菜单删除接口
  36. * @return array
  37. * @throws Exceptions\InvalidResponseException
  38. * @throws Exceptions\LocalCacheException
  39. */
  40. public function delete()
  41. {
  42. $url = "https://api.weixin.qq.com/cgi-bin/menu/delete?access_token=ACCESS_TOKEN";
  43. $this->registerApi($url, __FUNCTION__, func_get_args());
  44. return $this->httpGetForJson($url);
  45. }
  46. /**
  47. * 自定义菜单创建
  48. * @param array $data
  49. * @return array
  50. * @throws Exceptions\InvalidResponseException
  51. * @throws Exceptions\LocalCacheException
  52. */
  53. public function create(array $data)
  54. {
  55. $url = "https://api.weixin.qq.com/cgi-bin/menu/create?access_token=ACCESS_TOKEN";
  56. $this->registerApi($url, __FUNCTION__, func_get_args());
  57. return $this->httpPostForJson($url, $data);
  58. }
  59. /**
  60. * 创建个性化菜单
  61. * @param array $data
  62. * @return array
  63. * @throws Exceptions\InvalidResponseException
  64. * @throws Exceptions\LocalCacheException
  65. */
  66. public function addConditional(array $data)
  67. {
  68. $url = "https://api.weixin.qq.com/cgi-bin/menu/addconditional?access_token=ACCESS_TOKEN";
  69. $this->registerApi($url, __FUNCTION__, func_get_args());
  70. return $this->httpPostForJson($url, $data);
  71. }
  72. /**
  73. * 删除个性化菜单
  74. * @param string $menuid
  75. * @return array
  76. * @throws Exceptions\InvalidResponseException
  77. * @throws Exceptions\LocalCacheException
  78. */
  79. public function delConditional($menuid)
  80. {
  81. $url = "https://api.weixin.qq.com/cgi-bin/menu/delconditional?access_token=ACCESS_TOKEN";
  82. $this->registerApi($url, __FUNCTION__, func_get_args());
  83. return $this->httpPostForJson($url, ['menuid' => $menuid]);
  84. }
  85. /**
  86. * 测试个性化菜单匹配结果
  87. * @param string $openid
  88. * @return array
  89. * @throws Exceptions\InvalidResponseException
  90. * @throws Exceptions\LocalCacheException
  91. */
  92. public function tryConditional($openid)
  93. {
  94. $url = "https://api.weixin.qq.com/cgi-bin/menu/trymatch?access_token=ACCESS_TOKEN";
  95. $this->registerApi($url, __FUNCTION__, func_get_args());
  96. return $this->httpPostForJson($url, ['user_id' => $openid]);
  97. }
  98. }