spatie/laravel-permission guard 'api`没有名为' edit_project '的权限

g6ll5ycj  于 2022-11-18  发布在  其他
关注(0)|答案(9)|浏览(201)

我正在使用Laravel 5.6与空间/laravel许可版本2.9,也使用Laravel护照作为验证驱动程序与$guard = 'api'
当我试图在此函数的帮助下将权限数组(如['edit_project', 'add_project' 'delete_project'])分配给角色时

public function assignPermissions($role, $permissions)
    {

        $role = Role::findByName($role);

        $role->givePermissionTo($permissions);

        return $role;
    }

但是得到的错误是There is no permission named编辑项目for guard api '。
我在config/auth.php上也有

return [

/*
|--------------------------------------------------------------------------
| Authentication Defaults
|--------------------------------------------------------------------------
|
| This option controls the default authentication "guard" and password
| reset options for your application. You may change these defaults
| as required, but they're a perfect start for most applications.
|
*/

'defaults' => [
    'guard' => 'web',
    'passwords' => 'users',
],

/*
|--------------------------------------------------------------------------
| Authentication Guards
|--------------------------------------------------------------------------
|
| Next, you may define every authentication guard for your application.
| Of course, a great default configuration has been defined for you
| here which uses session storage and the Eloquent user provider.
|
| All authentication drivers have a user provider. This defines how the
| users are actually retrieved out of your database or other storage
| mechanisms used by this application to persist your user's data.
|
| Supported: "session", "token"
|
*/

'guards' => [
    'web' => [
        'driver' => 'session',
        'provider' => 'users',
    ],

    'api' => [
        'driver' => 'passport',
        'provider' => 'users',
    ],
],

/*
|--------------------------------------------------------------------------
| User Providers
|--------------------------------------------------------------------------
|
| All authentication drivers have a user provider. This defines how the
| users are actually retrieved out of your database or other storage
| mechanisms used by this application to persist your user's data.
|
| If you have multiple user tables or models you may configure multiple
| sources which represent each model / table. These sources may then
| be assigned to any extra authentication guards you have defined.
|
| Supported: "database", "eloquent"
|
*/

'providers' => [
    'users' => [
        'driver' => 'eloquent',
        'model' => App\User::class,
    ],

    // 'users' => [
    //     'driver' => 'database',
    //     'table' => 'users',
    // ],
],

/*
|--------------------------------------------------------------------------
| Resetting Passwords
|--------------------------------------------------------------------------
|
| You may specify multiple password reset configurations if you have more
| than one user table or model in the application and you want to have
| separate password reset settings based on the specific user types.
|
| The expire time is the number of minutes that the reset token should be
| considered valid. This security feature keeps tokens short-lived so
| they have less time to be guessed. You may change this as needed.
|
*/

'passwords' => [
    'users' => [
        'provider' => 'users',
        'table' => 'password_resets',
        'expire' => 60,
    ],
],

];

如果有什么解决办法请帮我谢谢。
同时,我也在Larvel播种器的帮助下播种权限表,我的权限表第一次看起来就像下面的guard_name是web。

但我手动将guard_name字段更改为“api,”权限表就变成这样了。

368yc8dk

368yc8dk1#

创建权限后,运行以下命令应该与我的命令一样有效。

php artisan cache:forget spatie.permission.cache

然后

php artisan cache:clear
luaexgnf

luaexgnf2#

清除缓存php artisan cache:clear
如果这不起作用,请使用sudo php artisan cache:clear,一旦我使用sudo,它就对我起作用了

nfg76nw0

nfg76nw03#

除非另有说明,否则软件包使用默认的保护机制。说明的方法是将以下代码添加到Rolepublic $guard_name = 'api';中。当然,将其添加到vendor目录中的类是个坏主意,因此您可能希望扩展它并像这样指定保护机制

use Spatie\Permission\Models\Role as OriginalRole;

class Role extends OriginalRole
{
    public $guard_name = 'api';
}

然后,如果您还没有这样做,请使用php artisan vendor:publish --provider="Spatie\Permission\PermissionServiceProvider" --tag="config"生成配置文件
最后,您需要通过将'role' => Spatie\Permission\Models\Role::class,更改为'role' => \App\Models\Role::class,,在config/permissions.php中注册Role(当然,这将根据Role类的位置而有所不同)
此外,您的问题中的示例提到了add_project,但数据库显示的是create_project,因此请确保您在所有地方使用相同的名称。

tyg4sfes

tyg4sfes4#

将web和api位置从

'guards' => [
    'web' => [
        'driver' => 'session',
        'provider' => 'users',
    ],

    'api' => [
        'driver' => 'passport',
        'provider' => 'users',
    ],
],

结束日期

'guards' => [

        'api' => [
            'driver' => 'passport',
            'provider' => 'users',
        ],

        'web' => [
            'driver' => 'session',
            'provider' => 'users',
        ],
    ]

运行php artisan cache:clear

pinkon5k

pinkon5k5#

可能是权限问题。请运行下面的命令。

sudo php artisan permission:cache-reset
dgjrabp2

dgjrabp26#

您需要在创建角色或权限失败时指定保护,其中spatie将承担config/auth中出现的第一个保护,在本例中为“web”

'defaults' => [
'guard' => 'web',
'passwords' => 'users',
   ],

您需要按照以下步骤操作:

// Create a manager role for users authenticating with the api guard:
$role = Role::create(['guard_name' => 'api', 'name' => 'manager']);

// Define a `edit_project` permission for the admin users belonging to the api guard
$permission = Permission::create(['guard_name' => 'api', 'name' => 'edit_project']);
mefy6pfw

mefy6pfw7#

在您的用户模型中添加protected $guard_name = 'api';。这将覆盖默认保护,即web

eiee3dmh

eiee3dmh8#

如果要从代码中执行此操作,可以直接从代码中清除该高速缓存。

\DB::table('permissions')->insert([['name' => 'create Stuff', 'guard_name' => 'web']]);
\Artisan::call('cache:clear');
$role = Role::findByName('admin');
$role->givePermissionTo('create Stuff');
31moq8wy

31moq8wy9#

清空数据库中的角色和权限表,然后再次填充这些表。我遇到了这个错误,我用这种方法修复了它

相关问题