44 lines
913 B
PHP
44 lines
913 B
PHP
<?php
|
|
|
|
namespace app\api\controller;
|
|
|
|
use app\api\model\User as UserModel;
|
|
|
|
/**
|
|
* 用户管理
|
|
* 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'));
|
|
}
|
|
|
|
}
|