Laravel6にて権限管理をGateで行いたいと考えています。
権限のリストはDBにより管理しており、これを全て読み込んでGate::defineで設定をしておき、Routeで指定します。
ログインしたユーザーがその権限を持っていればアクセス出来る仕組みです。
実装した段階では動いていたのですが、MigrationやUnitTestでのみエラーとなります。
PHP
1<?php 2 3use Illuminate\Database\Migrations\Migration; 4use Illuminate\Database\Schema\Blueprint; 5use Illuminate\Support\Facades\Schema; 6 7class CreateRolesTable extends Migration 8{ 9 /** 10 * Run the migrations. 11 * 12 * @return void 13 */ 14 public function up() 15 { 16 Schema::create('roles', function (Blueprint $table) { 17 $table->bigIncrements('id'); 18 $table->string('scope_type', 64); // Zone,Areaなど 19 $table->string('type', 64); // manager,operatorなどの権限 20 $table->string('name', 128); // typeの日本語名 21 $table->timestamps(); 22 23 $table->index('scope_type'); 24 $table->index('created_at'); 25 }); 26 } 27 28 /** 29 * Reverse the migrations. 30 * 31 * @return void 32 */ 33 public function down() 34 { 35 Schema::dropIfExists('roles'); 36 } 37} 38
PHP
1<?php 2 3namespace App\Providers; 4 5use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; 6use Illuminate\Support\Facades\Gate; 7use Illuminate\Support\Facades\Auth; 8use App\Models\Role; 9 10 11class AuthServiceProvider extends ServiceProvider 12{ 13 /** 14 * The policy mappings for the application. 15 * 16 * @var array 17 */ 18 protected $policies = [ 19 // 'App\Model' => 'App\Policies\ModelPolicy', 20 ]; 21 22 /** 23 * Register any authentication / authorization services. 24 * 25 * @return void 26 */ 27 public function boot() 28 { 29 $this->registerPolicies(); 30 31 // Modelを使うとMigrationやUnitTestでエラーになる・・・ 32 $roles = Role::all(); 33 34 foreach ($roles as $role) { 35 Gate::define($role->type, function ($user) use($role) { 36 return ($user->roles()->where('scope_type', $role->scope_type)->where('type', $role->type)->count() == 1); 37 }); 38 } 39 } 40}
表示されるエラーは下記の通りになります。
見たままですが、テーブル自体が存在しないエラーとなり、どのように対処すれば良いのかご教授いただけると助かります。m(_ _)m
In Connection.php line 669: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'mydb.roles' doesn't exist (SQL: select * from `roles`) In PDOConnection.php line 72: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'mydb.roles' doesn't exist In PDOConnection.php line 67: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'mydb.roles' doesn't exist
追記:
Roleモデルでの処理はありません。
PHP
1<?php 2namespace App\Models; 3 4use Illuminate\Database\Eloquent\Model; 5 6 7class Role extends Model 8{ 9 10}