| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- // +----------------------------------------------------------------------
- // | whitef快速开发前后端分离管理后台(PHP版)
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | 开源版本可自由商用,可去除界面版权logo
- // | gitee下载:https://gitee.com/likeshop_gitee/whitef
- // | github下载:https://github.com/likeshop-github/whitef
- // | 访问官网:https://www.whitef.cn
- // | whitef团队 版权所有 拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: whitefTeam
- // +----------------------------------------------------------------------
- namespace app\workerapi\controller;
- use app\workerapi\controller\BaseApiController;
- use app\workerapi\logic\LoginLogic;
- use app\workerapi\validate\LoginAccountValidate;
- use app\workerapi\validate\RegisterValidate;
- /**
- * 登录注册
- * Class LoginController
- * @package app\api\controller
- */
- class LoginController extends BaseApiController
- {
- public array $notNeedLogin = ['register', 'account', 'logout'];
- /**
- * @notes 注册账号
- * @return \think\response\Json
- * @author 段誉
- * @date 2022/9/7 15:38
- */
- public function register()
- {
- $params = (new RegisterValidate())->post()->goCheck('register');
- $res = LoginLogic::confirmMobile($params);
- if(!$res){
- return $this->fail(LoginLogic::getError());
- }
- $result = LoginLogic::register($params);
- if (true === $result) {
- return $this->success('注册成功', [], 1, 1);
- }
- return $this->fail(LoginLogic::getError());
- }
- /**
- * @notes 账号密码/手机号密码/手机号验证码登录
- * @return \think\response\Json
- * @author 段誉
- * @date 2022/9/16 10:42
- */
- public function account()
- {
- $params = (new LoginAccountValidate())->post()->goCheck();
- $result = LoginLogic::login($params);
- if (false === $result) {
- return $this->fail(LoginLogic::getError());
- }
- return $this->data($result);
- }
- /**
- * @notes 退出登录
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/9/16 10:42
- */
- public function logout()
- {
- LoginLogic::logout($this->userInfo);
- return $this->success();
- }
- }
|