| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?php
- namespace app\controller\merchant\system\admin;
- use ln\basic\BaseController;
- use app\common\repositories\system\merchant\MerchantAdminRepository;
- use app\validate\admin\LoginValidate;
- use ln\services\SwooleTaskService;
- use Gregwar\Captcha\CaptchaBuilder;
- use Gregwar\Captcha\PhraseBuilder;
- use think\App;
- use think\db\exception\DataNotFoundException;
- use think\db\exception\DbException;
- use think\db\exception\ModelNotFoundException;
- use think\facade\Cache;
- class Login extends BaseController
- {
- protected $repository;
- public function __construct(App $app, MerchantAdminRepository $repository)
- {
- parent::__construct($app);
- $this->repository = $repository;
- }
- /**
- * @param LoginValidate $validate
- * @return mixed
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- * @author zfy
- * @day 2020-04-10
- */
- public function login(LoginValidate $validate)
- {
- $data = $this->request->params(['account', 'password', 'code', 'key']);
- $validate->check($data);
- if(Cache::get('mer_login_freeze_'.$data['account']))
- return app('json')->fail('账号或密码错误次数太多,请稍后在尝试');
- $this->repository->checkCode($data['key'], $data['code']);
- $adminInfo = $this->repository->login($data['account'], $data['password']);
- $tokenInfo = $this->repository->createToken($adminInfo);
- $admin = $adminInfo->toArray();
- unset($admin['pwd']);
- $data = [
- 'token' => $tokenInfo['token'],
- 'exp' => $tokenInfo['out'],
- 'admin' => $admin
- ];
- return app('json')->success($data);
- }
- /**
- * @return mixed
- * @author zfy
- * @day 2020-04-10
- */
- public function logout()
- {
- if ($this->request->isLogin())
- $this->repository->clearToken($this->request->token());
- return app('json')->success('退出登录');
- }
- /**
- * @return mixed
- * @author zfy
- * @day 2020-04-09
- */
- public function getCaptcha()
- {
- $codeBuilder = new CaptchaBuilder(null, new PhraseBuilder(4));
- $key = $this->repository->createLoginKey($codeBuilder->getPhrase());
- $captcha = $codeBuilder->build()->inline();
- return app('json')->success(compact('key', 'captcha'));
- }
- }
|