| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <?php
- // +----------------------------------------------------------------------
- // | likeadmin快速开发前后端分离管理后台(PHP版)
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | 开源版本可自由商用,可去除界面版权logo
- // | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
- // | github下载:https://github.com/likeshop-github/likeadmin
- // | 访问官网:https://www.likeadmin.cn
- // | likeadmin团队 版权所有 拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeadminTeam
- // +----------------------------------------------------------------------
- namespace app\common\service\wechat;
- use EasyWeChat\Kernel\Exceptions\Exception;
- use EasyWeChat\OfficialAccount\Application;
- /**
- * 公众号相关
- * Class WeChatOaService
- * @package app\common\service\wechat
- */
- class WeChatOaService
- {
- protected $app;
- protected $config;
- public function __construct()
- {
- $this->config = $this->getConfig();
- $this->app = new Application($this->config);
- }
- /**
- * @notes easywechat服务端
- * @return \EasyWeChat\Kernel\Contracts\Server|\EasyWeChat\OfficialAccount\Server
- * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException
- * @throws \ReflectionException
- * @throws \Throwable
- * @author 段誉
- * @date 2023/2/27 14:22
- */
- public function getServer()
- {
- return $this->app->getServer();
- }
- /**
- * @notes 配置
- * @return array
- * @throws Exception
- * @author 段誉
- * @date 2023/2/27 12:03
- */
- protected function getConfig()
- {
- $config = WeChatConfigService::getOaConfig();
- if (empty($config['app_id']) || empty($config['secret'])) {
- throw new Exception('请先设置公众号配置');
- }
- return $config;
- }
- /**
- * @notes 公众号-根据code获取微信信息
- * @param string $code
- * @return mixed
- * @throws Exception
- * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException
- * @author 段誉
- * @date 2023/2/27 11:04
- */
- public function getOaResByCode(string $code)
- {
- $response = $this->app->getOAuth()
- ->scopes(['snsapi_userinfo'])
- ->userFromCode($code)
- ->getRaw();
- if (!isset($response['openid']) || empty($response['openid'])) {
- throw new Exception('获取openID失败');
- }
- return $response;
- }
- /**
- * @notes 公众号跳转url
- * @param string $url
- * @return mixed
- * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException
- * @author 段誉
- * @date 2023/2/27 10:35
- */
- public function getCodeUrl(string $url)
- {
- return $this->app->getOAuth()
- ->scopes(['snsapi_userinfo'])
- ->redirect($url);
- }
- /**
- * @notes 创建公众号菜单
- * @param array $buttons
- * @param array $matchRule
- * @return \EasyWeChat\Kernel\HttpClient\Response|\Symfony\Contracts\HttpClient\ResponseInterface
- * @throws \Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface
- * @author 段誉
- * @date 2023/2/27 12:07
- */
- public function createMenu(array $buttons, array $matchRule = [])
- {
- if (!empty($matchRule)) {
- return $this->app->getClient()->postJson('cgi-bin/menu/addconditional', [
- 'button' => $buttons,
- 'matchrule' => $matchRule,
- ]);
- }
- return $this->app->getClient()->postJson('cgi-bin/menu/create', ['button' => $buttons]);
- }
- /**
- * @notes 获取jssdkConfig
- * @param $url
- * @param $jsApiList
- * @param array $openTagList
- * @param false $debug
- * @return mixed[]
- * @throws \EasyWeChat\Kernel\Exceptions\HttpException
- * @throws \Psr\SimpleCache\InvalidArgumentException
- * @throws \Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface
- * @throws \Symfony\Contracts\HttpClient\Exception\DecodingExceptionInterface
- * @throws \Symfony\Contracts\HttpClient\Exception\RedirectionExceptionInterface
- * @throws \Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface
- * @throws \Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface
- * @author 段誉
- * @date 2023/3/1 11:46
- */
- public function getJsConfig($url, $jsApiList, $openTagList = [], $debug = false)
- {
- return $this->app->getUtils()->buildJsSdkConfig($url, $jsApiList, $openTagList, $debug);
- }
- }
|