2

質問を投稿した後、Lumen + Dingo + JWT is not instantiable while building Lumen and Dingo in SO で、そのようなシステムをセットアップする方法について詳細な回答を得ました。

彼のセットアップには、Eloquent を使用した小さな認証の例があります。今、独自のモデルなどを持ち、独自のデータベース接続などを持つカスタム フレームワークを Lumen 内にロードしています。

私が理解できないのは、Eloquent を完全に削除する方法と、独自のフレームワークを使用して認証を行う方法です。

私がこれまでに行ったこと:

  • $app->withEloquent();私たちから削除されましたbootstrap\app.php

実行する必要があると思うその他の編集は、編集config\auth.php、またはこのファイルを完全に削除することです。よくわかりません。

最後にApp\Api\v1\Controllers\AuthController@postLogin、関数への呼び出しが行われvalidateます。この関数は、Eloquent 経由ではなく、私のフレームワークと通信する必要があります。これがLumenでどのようにきちんと行われるのか、私もよくわかりません.

Git リポジトリ: https://github.com/krisanalfa/lumen-dingo

4

1 に答える 1

2

あなたはこれを読むかもしれません。だからあなたの場合、で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,
    ]);
}
于 2016-03-29T13:27:50.110 に答える