Laravel-Casbin:在 Laravel 裡使用 Casbin(PHP 許可權管理框架)

JonLee發表於2018-11-12

PHP-Casbin 是一個用 PHP 語言打造的輕量級開源訪問控制框架( https://github.com/php-casbin/php-casbin ),目前在 GitHub 開源。PHP-Casbin 採用了元模型的設計思想,支援多種經典的訪問控制方案,如基於角色的訪問控制 RBAC、基於屬性的訪問控制 ABAC 等。

Laraval-Casbin 是一個專為Laravel定製的Casbin的擴充套件包( https://github.com/php-casbin/laravel-casb... )。

安裝

composer require casbin/laravel-adapter

釋出資源

php artisan vendor:publish

部署資料庫

php artisan migrate

快速開始

use \Casbin;

$sub = "alice"; // the user that wants to access a resource.
$obj = "data1"; // the resource that is going to be accessed.
$act = "read"; // the operation that the user performs on the resource.

if (Casbin::enforce($sub, $obj, $act) === true) {
    // permit alice to read data1
} else {
    // deny the request, show an error
}

更多

Casbin官方網站:https://casbin.org
Laraval-Casbin的更多用法: https://github.com/php-casbin/laravel-casb...

聯絡作者

有問題請提交 Issues: https://github.com/php-casbin/laravel-casb...

或者加入 QQ 群:546057381( Casbin 訪問控制討論群)

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章