在这里发布了关于Lumen和Dingo的问题Lumen + Dingo + JWT is not instantiable while building后,我得到了关于如何建立这样一个系统的详细答案。
在他的设置中有一个小的身份验证示例,它使用Eloquent。现在我们在Lumen中加载一个自定义框架,它有自己的模型等,并且有自己的数据库连接等。
我无法弄清楚如何彻底删除Eloquent,并使用我们自己的框架进行身份验证。
到目前为止我做了什么:
$app->withEloquent();
bootstrap\app.php
我认为需要完成的其他编辑是编辑config\auth.php
,甚至可能完全删除此文件。我不太确定。
最后,在App\Api\v1\Controllers\AuthController@postLogin
内,调用validate
函数。此功能需要与我的框架通信,而不是通过Eloquent。如何在流明整齐地做到这一点我也不确定。
答案 0 :(得分:2)
您可以阅读this。所以在你的情况下,在App\Api\v1\Controllers\AuthController@postLogin
:
/**
* Handle a login request to the application.
*
* @param \Illuminate\Http\Request $request
*
* @return \Illuminate\Http\Response
*/
public function postLogin(Request $request)
{
try {
$this->validate($request, [
'email' => 'required|email|max:255',
'password' => 'required',
]);
} catch (HttpResponseException $e) {
return response()->json([
'message' => 'invalid_auth',
'status_code' => IlluminateResponse::HTTP_BAD_REQUEST,
], IlluminateResponse::HTTP_BAD_REQUEST);
}
$credentials = $this->getCredentials($request);
try {
// Attempt to verify the credentials and create a token for the user
// You may do anything you like here to get user information based on credentials given
if ($user = MyFramework::validate($credentials)) {
$payload = JWTFactory::make($user);
$token = JWTAuth::encode($payload);
} else {
return response()->json([
'message' => 'invalid_auth',
'status_code' => IlluminateResponse::HTTP_BAD_REQUEST,
], IlluminateResponse::HTTP_BAD_REQUEST);
}
} catch (JWTException $e) {
// Something went wrong whilst attempting to encode the token
return response()->json([
'message' => 'could_not_create_token',
], IlluminateResponse::HTTP_INTERNAL_SERVER_ERROR);
}
// All good so return the token
return response()->json([
'message' => 'token_generated',
'token' => $token,
]);
}