| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- namespace app\api\controller;
- use app\api\model\User as UserModel;
- use think\Exception;
- /**
- * 用户管理
- * Class User
- * @package app\api
- */
- class User extends Controller
- {
- /**
- * 用户自动登录
- * @return array
- * @throws \app\common\exception\BaseException
- * @throws \think\Exception
- * @throws \think\exception\DbException
- */
- public function login()
- {
- $model = new UserModel;
- return $this->renderSuccess([
- 'user_id' => $model->login($this->request->post()),
- 'token' => $model->getToken()
- ]);
- }
- /**
- * 当前用户详情
- * @return array
- * @throws \app\common\exception\BaseException
- * @throws \think\exception\DbException
- */
- public function detail()
- {
- // 当前用户信息
- $userInfo = $this->getUser();
- return $this->renderSuccess(compact('userInfo'));
- }
- /**
- * 设置支付密码
- * @return array
- * @throws \app\common\exception\BaseException
- * @throws \think\exception\DbException
- */
- public function setPayPassword()
- {
- try {
- $userInfo = $this->getUser();
- if(empty($userInfo)){
- throw new Exception('用户信息不存在或未登录');
- }
- $password = input('password','');
- if(\app\api\service\User::setPayPassword($userInfo['user_id'], $password)){
- return $this->renderSuccess([],'设置成功');
- }else{
- return $this->renderError('设置失败');
- }
- }catch (\Exception $exception){
- return $this->renderError($exception->getMessage()?:'设置失败');
- }
- }
- }
|