2017 © Pedro Peláez
 

library omac

A simple ACL trait to allow authorization checks using whatever authorization package is desired. Currently supports Laravel Default, Shinobi, Sentinel and Entrust.

image

smarch/omac

A simple ACL trait to allow authorization checks using whatever authorization package is desired. Currently supports Laravel Default, Shinobi, Sentinel and Entrust.

  • Friday, January 29, 2016
  • by landjea
  • Repository
  • 1 Watchers
  • 0 Stars
  • 19 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

This is probably only of use to me, but I have need of it in multiple apps so I packaged it up in case you want it too. :), (*1)


OMAC

A simple trait to allow basic authorization checks using whatever authorization package is desired. Currently supports Laravel Default, Shinobi, Sentinel and Entrust., (*2)

Installation

Installation is performed with composer., (*3)

:black_square_button: Composer

composer require "smarch/omac"

Usage

Where you want to use OMAC to check access, add the trait., (*4)

class YourController extends Controller
{
    use \Smarch\Omac\OmacTrait;

Once you have the OmacTrait in use, and you are happy with the authorization driver you are using (see parameters below), you can use the checkAccess() method of Omac by passing in the required permission to allow access., (*5)

Example of using OMAC to permit viewing an index of resources

/**
 * Display a listing of the resources.
 *
 * @return Response
 */
public function index()
{
    if ( $this->checkAccess('view.index') ) {
        $resources = Model::all();
        return view("index", compact($resources) );
    }

    return view("unauthorized", ['message' => 'Not authorized to view Index'] );
    // OR
    return false;
    // OR
    abort(401, 'Unauthorized action.');

}

Arguments

The checkAccess() method accepts both the $permission and an $arguments variable. So if your preferred authorization package accepts a second argument to its method, you can use it., (*6)

    if ( $this->checkAccess('update.post', $post) ) {

:hand: NOTE : Sentinel only accepts a $permission argument so you will not be able to pass in a second argument., (*7)

:hand: NOTE : Entrust only accepts a boolean (true/false) as it second argument., (*8)

Parameters (optional)

By default, OMAC is set to enabled and to use Laravel's built-in authorization can method. (Gate) If you wish to use a different authorization method, or to disable OMAC, you can change the parameters. You can do it in your class or method somewhere for a one-off usage, or you can set it on the constructor of your class to make the change for all the methods., (*9)

/**
 * constructor
 * 
 * @param boolean acl Whether or not ACL is enabled
 * @param string $driver Which ACL package to use
 */
public function __construct() {
    $this->acl = false;
    $this->driver = "sentinel";
}

:trident: Why "OMAC"?

I've been a DC geek for over 30 years now. While OMAC in DC is more of a "big brother is watching" type of thing, it still fits nicely with Object Managed Access Control. :smile:, (*10)

The Versions

29/01 2016

dev-master

9999999-dev https://github.com/SmarchSoftware/omac

A simple ACL trait to allow authorization checks using whatever authorization package is desired. Currently supports Laravel Default, Shinobi, Sentinel and Entrust.

  Sources   Download

MIT

The Requires

  • php >=5.5.9

 

by Smarch Software

laravel authorization acl shinobi sentinel entrust watchtower

29/01 2016

v1.0.2

1.0.2.0 https://github.com/SmarchSoftware/omac

A simple ACL trait to allow authorization checks using whatever authorization package is desired. Currently supports Laravel Default, Shinobi, Sentinel and Entrust.

  Sources   Download

MIT

The Requires

  • php >=5.5.9

 

by Smarch Software

laravel authorization acl shinobi sentinel entrust watchtower

29/01 2016

v1.0.1

1.0.1.0 https://github.com/SmarchSoftware/omac

A simple ACL trait to allow authorization checks using whatever authorization package is desired. Currently supports Laravel Default, Shinobi, Sentinel and Entrust.

  Sources   Download

MIT

The Requires

  • php >=5.5.9

 

by Smarch Software

laravel authorization acl shinobi sentinel entrust watchtower