2

私のプロジェクトには役割ベースのアクセスが必要ですが、一からやり直して Sentinel を使用しないようにという勧告を受けました。私はそれをチェックアウトしましたが、私はそれがどのように機能するかについて少し混乱しています。ドキュメントは実際には使用方法のみをカバーしており、動作方法はカバーしていません。

そのため、登録、ユーザー、スロットリング、ロール、およびアクセス許可について理解しています。ただし、永続性、アクティベーション、チェックポイントが何であるかはわかりません。

パーミッションを作成してロールにアタッチするにはどうすればよいですか? アプリケーションコード内?それらを取得する権限テーブルを使用できますか?

アクセス許可をリソースにリンクする方法は? すべてのルートで個別にミドルウェアを追加しますか?

ルートごとに複数のミドルウェアが必要な場合はどうすればよいですか?

たくさんの質問があることはわかっていますが、今は何でも役に立ちます。ここでの私の問題は、Sentinel を使い続けたくないということです。そして、Sentinel が必要なことで適切に動作しないことに気付き、すべてをゼロから始めたくないということです。

ありがとう

4

1 に答える 1

2

私の意見では、センチネルがより良い選択肢です。

たとえば、Sentinel を使用してデータベースをシードできます。

役割を作成する

EXAの役割の例

    $role = \Sentinel::getRoleRepository()->createModel()->create([
        'name' => 'Example',
        'slug' => 'EXA',
    ]);
    $role->permissions = [
        'servicio_dash' => true,
        'servicio_widget' => true,
    ];
    $role->save();

ユーザー ロール USR

    $role = \Sentinel::getRoleRepository()->createModel()->create([
        'name' => 'User',
        'slug' => 'USR',
    ]);
    $role->permissions = [
        'servicio_dash' => true,
        'servicio_widget' =>false,
    ];
    $role->save();

50ユーザーを作成し、EXAロールを割り当てます(fakerを使用)

    $usr_role = \Sentinel::findRoleBySlug('EXA');

    factory(App\User::class, 50)->make()->each(function ($u) use ($usr_role) {
        \Sentinel::registerAndActivate($u['attributes']);
    });

ボーナス トラック: 工場の例

$factory->define(App\User::class, function (Faker\Generator $faker) {
return [
    'email' => $faker->safeEmail,
    'password' => 'p4ssw0rd',
    'first_name' =>  $faker->firstName,
    'last_name' => $faker->lastName,
    'recycle' => false,
    'phone' => $faker->phoneNumber,
    'alt_email' => $faker->email
];

});

1 人のユーザーのみ

$yo = factory(App\User::class)->make(['email' => 'jpaniorte@openmailbox.org']);
    \Sentinel::registerAndActivate($yo['attributes']);


    $jperez = User::where('email', 'jpaniorte@openmailbox.org')->firstOrFail();
    $epa_role->users()->attach($jperez);

API REST のコントローラーを認証する

  public function authenticateCredentials(Request $request)
{
    $credentials = $request->only('email', 'password');

    $user = \Sentinel::authenticate($credentials);
    return response()->json($user);
}

トークン (JWT を使用) とセンチネルによる認証

 public function authenticate(Request $request)
{

    // grab credentials from the request
    $credentials = $request->only('email', 'password');
    try {
        // attempt to verify the credentials and create a token for the user
        if (!$token = JWTAuth::attempt($credentials)) {
        return response()->json(['error' => 'invalid_credentials'], 401);
    }
    } catch (JWTException $e) {
        // something went wrong whilst attempting to encode the token
        return response()->json(['error' => 'could_not_create_token'], 500);
    }
    // all good so return the token
    return response()->json(compact('token'));
}

注: このためには、カスタム認証プロバイダーで JWT オプションを構成する必要があります。これはここにあります。

どのコントローラーでも

public function hasPermission($type)
{
    //$sentinel = \Sentinel::findById(\JWTAuth::parseToken()->authenticate()->id); //->this is for a token

    $sentinel = \Sentinel::findById(1); //if you now the id


    if($sentinel->hasAccess([$type]))
        return response()->json(true, 200);
    //yout custom handle for noAccess here
}
于 2016-08-03T10:06:56.023 に答える