- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明 Made-with: Cursor
63 lines
1.5 KiB
PHP
63 lines
1.5 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Author: ScottPan Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\controller\out;
|
|
|
|
|
|
use app\Request;
|
|
use app\services\out\OutAccountServices;
|
|
use crmeb\basic\BaseController;
|
|
use app\validate\out\LoginValidate;
|
|
use think\annotation\Inject;
|
|
|
|
/**
|
|
* Class Login
|
|
* @package app\kefu\controller
|
|
*/
|
|
class OutAccount extends BaseController
|
|
{
|
|
|
|
/**
|
|
* @var OutAccountServices
|
|
*/
|
|
#[Inject]
|
|
protected OutAccountServices $services;
|
|
|
|
/**
|
|
* 客服登录
|
|
* @param Request $request
|
|
* @return mixed
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getToken(Request $request)
|
|
{
|
|
[$appid, $appsecret] = $request->postMore([
|
|
['appid', ''],
|
|
['appsecret', ''],
|
|
], true);
|
|
$this->validate(['appid' => $appid, 'appsecret' => $appsecret], LoginValidate::class);
|
|
|
|
$token = $this->services->authLogin($appid, $appsecret);
|
|
|
|
return $this->success('获取成功', $token);
|
|
}
|
|
|
|
/**
|
|
* 刷新token
|
|
* @return void
|
|
*/
|
|
public function refreshToken(Request $request)
|
|
{
|
|
[$token] = $request->postMore([
|
|
['access_token', ''],
|
|
], true);
|
|
$token = $this->services->refresh($token);
|
|
return app('json')->success('操作成功', $token);
|
|
}
|
|
|
|
}
|