123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\api\controller\v1\wechat;
- use app\Request;
- use app\services\wechat\WechatServices as WechatAuthServices;
- use crmeb\services\CacheService;
- /**
- * 微信公众号
- * Class WechatController
- * @package app\api\controller\wechat
- */
- class WechatController
- {
- protected $services = NUll;
- /**
- * WechatController constructor.
- * @param WechatAuthServices $services
- */
- public function __construct(WechatAuthServices $services)
- {
- $this->services = $services;
- }
- /**
- * 微信公众号服务
- * @return \think\Response
- */
- public function serve()
- {
- return $this->services->serve();
- }
- /**
- * 微信小程序公众号服务
- * @return \think\Response
- */
- public function miniServe()
- {
- return $this->services->miniServe();
- }
- /**
- * 支付异步回调
- */
- public function notify()
- {
- return $this->services->notify();
- }
- public function v3notify()
- {
- return $this->services->v3notify();
- }
- /**
- * 公众号权限配置信息获取
- * @param Request $request
- * @return mixed
- */
- public function config(Request $request)
- {
- return app('json')->success($this->services->config($request->get('url')));
- }
- /**
- * App微信登陆
- * @param Request $request
- * @return mixed
- * @throws \Psr\SimpleCache\InvalidArgumentException
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function appAuth(Request $request)
- {
- [$userInfo, $phone, $captcha] = $request->postMore([
- ['userInfo', []],
- ['phone', ''],
- ['code', '']
- ], true);
- if ($phone) {
- if (!$captcha) {
- return app('json')->fail(410004);
- }
- //验证验证码
- $verifyCode = CacheService::get('code_' . $phone);
- if (!$verifyCode)
- return app('json')->fail(410009);
- $verifyCode = substr($verifyCode, 0, 6);
- if ($verifyCode != $captcha) {
- CacheService::delete('code_' . $phone);
- return app('json')->fail(410010);
- }
- }
- $token = $this->services->appAuth($userInfo, $phone);
- if ($token) {
- return app('json')->success(410001, $token);
- } else if ($token === false) {
- return app('json')->success(410001, ['isbind' => true]);
- } else {
- return app('json')->fail(410019);
- }
- }
- /**
- * 关注二维码
- * @return mixed
- * @throws \Exception
- */
- public function follow()
- {
- $data = $this->services->follow();
- if ($data) {
- return app('json')->success($data);
- } else {
- return app('json')->fail(100016);
- }
- }
- }
|