Download the PHP package silber/bouncer without Composer

On this page you can find all versions of the php package silber/bouncer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package bouncer

Bouncer

Build Status Total Downloads License

Bouncer is an elegant, framework-agnostic approach to managing roles and abilities for any app using Eloquent models.

Table of Contents

Click to expand

- [Introduction](#introduction) - [Installation](#installation) - [Installing Bouncer in a Laravel app](#installing-bouncer-in-a-laravel-app) - [Installing Bouncer in a non-Laravel app](#installing-bouncer-in-a-non-laravel-app) - [Enabling cache](#enabling-cache) - [Usage](#usage) - [Creating roles and abilities](#creating-roles-and-abilities) - [Assigning roles to a user](#assigning-roles-to-a-user) - [Giving a user an ability directly](#giving-a-user-an-ability-directly) - [Restricting an ability to a model](#restricting-an-ability-to-a-model) - [Allowing a user or role to "own" a model](#allowing-a-user-or-role-to-own-a-model) - [Retracting a role from a user](#retracting-a-role-from-a-user) - [Removing an ability](#removing-an-ability) - [Forbidding an ability](#forbidding-an-ability) - [Unforbidding an ability](#unforbidding-an-ability) - [Checking a user's roles](#checking-a-users-roles) - [Querying users by their roles](#querying-users-by-their-roles) - [Getting all roles for a user](#getting-all-roles-for-a-user) - [Getting all abilities for a user](#getting-all-abilities-for-a-user) - [Authorizing users](#authorizing-users) - [Blade directives](#blade-directives) - [Refreshing the cache](#refreshing-the-cache) - [Multi-tenancy](#multi-tenancy) - [The scope middleware](#the-scope-middleware) - [Customizing Bouncer's scope](#customizing-bouncers-scope) - [Configuration](#configuration) - [Cache](#cache) - [Tables](#tables) - [Custom models](#custom-models) - [User Model](#user-model) - [Ownership](#ownership) - [FAQ](#faq) - [Where do I set up my app's roles and abilities?](#where-do-i-set-up-my-apps-roles-and-abilities) - [Can I use a different set of roles & abilities for the public & dashboard sections of my site, respectively?](#can-i-use-a-different-set-of-roles--abilities-for-the-public--dashboard-sections-of-my-site-respectively) - [I'm trying to run the migration, but I'm getting a SQL error that the "specified key was too long"](#im-trying-to-run-the-migration-but-im-getting-a-sql-error-that-the-specified-key-was-too-long) - [I'm trying to run the migration, but I'm getting a SQL error that there is a "Syntax error or access violation: 1064 ... to use near json not null)"](#im-trying-to-run-the-migration-but-im-getting-a-sql-error-that-there-is-a-syntax-error-or-access-violation-1064--to-use-near-json-not-null) - [Console commands](#console-commands) - [`bouncer:clean`](#bouncerclean) - [Cheat sheet](#cheat-sheet) - [Alternative](#alternative) - [License](#license)

Introduction

Bouncer is an elegant, framework-agnostic approach to managing roles and abilities for any app using Eloquent models. With an expressive and fluent syntax, it stays out of your way as much as possible: use it when you want, ignore it when you don't.

For a quick, glanceable list of Bouncer's features, check out the cheat sheet.

Bouncer works well with other abilities you have hard-coded in your own app. Your code always takes precedence: if your code allows an action, Bouncer will not interfere.

Once installed, you can simply tell the bouncer what you want to allow at the gate:

When you check abilities at Laravel's gate, Bouncer will automatically be consulted. If Bouncer sees an ability that has been granted to the current user (whether directly, or through a role) it'll authorize the check.

Installation

Note: Bouncer v1.0.2 requires PHP 8.2+ and Laravel/Eloquent 11+.

If you're on Laravel v6-v10, use Bouncer v1.0.1. If you're on Laravel v5.5-v5.8, use Bouncer RC6.

Installing Bouncer in a Laravel app

1) Install Bouncer with composer:

2) Add Bouncer's trait to your user model:

3) Now, to run Bouncer's migrations. First publish the migrations into your app's migrations directory, by running the following command:

4) Finally, run the migrations:

Facade

Whenever you use the Bouncer facade in your code, remember to add this line to your namespace imports at the top of the file:

For more information about Laravel Facades, refer to the Laravel documentation.

Installing Bouncer in a non-Laravel app

1) Install Bouncer with composer:

2) Set up the database with the Eloquent Capsule component:

Refer to [the Eloquent Capsule documentation](https://github.com/illuminate/database/blob/master/README.md) for more details.

3) Run the migrations by either of the following methods:

- Use a tool such as [vagabond](https://github.com/michaeldyrynda/vagabond) to run Laravel migrations outside of a Laravel app. You'll find the necessary migrations in [the migrations stub file](https://github.com/JosephSilber/bouncer/blob/master/migrations/create_bouncer_tables.php#L18-L79).

- Alternatively, you can run [the raw SQL](https://github.com/JosephSilber/bouncer/blob/master/migrations/sql/MySQL.sql) directly in your database.

4) Add Bouncer's trait to your user model:

5) Create an instance of Bouncer:

If you're using dependency injection in your app, you may register the `Bouncer` instance as a singleton in the container:

You can now inject `Bouncer` into any class that needs it.

The `create` method creates a `Bouncer` instance with sensible defaults. To fully customize it, use the `make` method to get a factory instance. Call `create()` on the factory to create the `Bouncer` instance:

Check out [the `Factory` class](https://github.com/JosephSilber/bouncer/blob/c974953a0b1d8d187023002cdfae1800f3ccdb02/src/Factory.php) to see all the customizations available.

6) Set which model is used as the user model throughout your app:

For additional configuration, check out [the Configuration section](#configuration) below.

Enabling cache

By default, Bouncer's queries are cached for the current request. For better performance, you may want to enable cross-request caching.

Usage

Adding roles and abilities to users is made extremely easy. You do not have to create a role or an ability in advance. Simply pass the name of the role/ability, and Bouncer will create it if it doesn't exist.

Note: the examples below all use the Bouncer facade. If you don't use facades, you can instead inject an instance of Silber\Bouncer\Bouncer into your class.

Creating roles and abilities

Let's create a role called admin and give it the ability to ban-users from our site:

That's it. Behind the scenes, Bouncer will create both a Role model and an Ability model for you.

If you want to add additional attributes to the role/ability, such as a human-readable title, you can manually create them using the role and ability methods on the Bouncer class:

Assigning roles to a user

To now give the admin role to a user, simply tell the bouncer that the given user should be assigned the admin role:

Alternatively, you can call the assign method directly on the user:

Giving a user an ability directly

Sometimes you might want to give a user an ability directly, without using a role:

Here too you can accomplish the same directly off of the user:

Restricting an ability to a model

Sometimes you might want to restrict an ability to a specific model type. Simply pass the model name as a second argument:

If you want to restrict the ability to a specific model instance, pass in the actual model instead:

Allowing a user or role to "own" a model

Use the toOwn method to allow users to manage their own models:

Now, when checking at the gate whether the user may perform an action on a given post, the post's user_id will be compared to the logged-in user's id (this can be customized). If they match, the gate will allow the action.

The above will grant all abilities on a user's "owned" models. You can restrict the abilities by following it up with a call to the to method:

You can also allow users to own all types of models in your application:

Retracting a role from a user

The bouncer can also retract a previously-assigned role from a user:

Or do it directly on the user:

Removing an ability

The bouncer can also remove an ability previously granted to a user:

Or directly on the user:

Note: if the user has a role that allows them to ban-users, they will still have that ability. To disallow it, either remove the ability from the role or retract the role from the user.

If the ability has been granted through a role, tell the bouncer to remove the ability from the role instead:

To remove an ability for a specific model type, pass in its name as a second argument:

Warning: if the user has an ability to delete a specific $post instance, the code above will not remove that ability. You will have to remove the ability separately - by passing in the actual $post as a second argument - as shown below.

To remove an ability for a specific model instance, pass in the actual model instead:

Note: the disallow method only removes abilities that were previously given to this user/role. If you want to disallow a subset of what a more-general ability has allowed, use the forbid method.

Forbidding an ability

Bouncer also allows you to forbid a given ability, for more fine-grained control. At times you may wish to grant a user/role an ability that covers a wide range of actions, but then restrict a small subset of those actions.

Here are some examples:

As you can see, Bouncer's forbidden abilities gives you a lot of granular control over the permissions in your app.

Unforbidding an ability

To remove a forbidden ability, use the unforbid method:

Note: this will remove any previously-forbidden ability. It will not authomatically allow the ability if it's not already allowed by a different regular ability granted to this user/role.

Checking a user's roles

Note: Generally speaking, you should not have a need to check roles directly. It is better to allow a role certain abilities, then check for those abilities instead. If what you need is very general, you can create very broad abilities. For example, an access-dashboard ability is always better than checking for admin or editor roles directly. For the rare occasion that you do want to check a role, that functionality is available here.

The bouncer can check if a user has a specific role:

If the role you're checking starts with a vowel, you might want to use the an alias method:

For the inverse, you can also check if a user doesn't have a specific role:

You can check if a user has one of many roles:

You can also check if the user has all of the given roles:

You can also check if a user has none of the given roles:

These checks can also be done directly on the user:

Querying users by their roles

You can query your users by whether they have a given role:

You may also pass in multiple roles, to query for users that have any of the given roles:

To query for users who have all of the given roles, use the whereIsAll method:

Getting all roles for a user

You can get all roles for a user directly from the user model:

Getting all abilities for a user

You can get all abilities for a user directly from the user model:

This will return a collection of the user's allowed abilities, including any abilities granted to the user through their roles.

You can also get a list of abilities that have been explicitly forfidden:

Authorizing users

Authorizing users is handled directly at Laravel's Gate, or on the user model ($user->can($ability)).

For convenience, the Bouncer class provides these passthrough methods:

These call directly into their equivalent methods on the Gate class.

Blade directives

Bouncer does not add its own blade directives. Since Bouncer works directly with Laravel's gate, simply use its @can directive to check for the current user's abilities:

Since checking for roles directly is generally not recommended, Bouncer does not ship with a separate directive for that. If you still insist on checking for roles, you can do so using the general @if directive:

Refreshing the cache

All queries executed by Bouncer are cached for the current request. If you enable cross-request caching, the cache will persist across different requests.

Whenever you need, you can fully refresh the bouncer's cache:

Note: fully refreshing the cache for all users uses cache tags if they're available. Not all cache drivers support this. Refer to Laravel's documentation to see if your driver supports cache tags. If your driver does not support cache tags, calling refresh might be a little slow, depending on the amount of users in your system.

Alternatively, you can refresh the cache only for a specific user:

Note: When using multi-tenancy scopes, this will only refresh the cache for the user in the current scope's context. To clear cached data for the same user in a different scope context, it must be called from within that scope.

Multi-tenancy

Bouncer fully supports multi-tenant apps, allowing you to seamlessly integrate Bouncer's roles and abilities for all tenants within the same app.

The scope middleware

To get started, first publish the scope middleware into your app:

The middleware will now be published to app/Http/Middleware/ScopeBouncer.php. This middleware is where you tell Bouncer which tenant to use for the current request. For example, assuming your users all have an account_id attribute, this is what your middleware would look like:

You are of course free to modify this middleware to fit your app's needs, such as pulling the tenant information from a subdomain et al.

Now with the middleware in place, be sure to register it in your HTTP Kernel:

All of Bouncer's queries will now be scoped to the given tenant.

Customizing Bouncer's scope

Depending on your app's setup, you may not actually want all of the queries to be scoped to the current tenant. For example, you may have a fixed set of roles/abilities that are the same for all tenants, and only allow your users to control which users are assigned which roles, and which roles have which abilities. To achieve this, you can tell Bouncer's scope to only scope the relationships between Bouncer's models, but not the models themselves:

Furthermore, your app might not even allow its users to control which abilities a given role has. In that case, tell Bouncer's scope to exclude role abilities from the scope, so that those relationships stay global across all tenants:

If your needs are even more specialized than what's outlined above, you can create your own Scope with whatever custom logic you need:

Then, in a service provider, register your custom scope:

Bouncer will call the methods on the Scope interface at various points in its execution. You are free to handle them according to your specific needs.

Configuration

Bouncer ships with sensible defaults, so most of the time there should be no need for any configuration. For finer-grained control, Bouncer can be customized by calling various configuration methods on the Bouncer class.

If you only use one or two of these config options, you can stick them into your main AppServiceProvider's boot method. If they start growing, you may create a separate BouncerServiceProvider class in your app/Providers directory (remember to register it in the providers config array).

Cache

By default, all queries executed by Bouncer are cached for the current request. For better performance, you may want to use cross-request caching:

Warning: if you enable cross-request caching, you are responsible to refresh the cache whenever you make changes to user's roles/abilities. For how to refresh the cache, read refreshing the cache.

On the contrary, you may at times wish to completely disable the cache, even within the same request:

This is particularly useful in unit tests, when you want to run assertions against roles/abilities that have just been granted.

Tables

To change the database table names used by Bouncer, pass an associative array to the tables method. The keys should be Bouncer's default table names, and the values should be the table names you wish to use. You do not have to pass in all tables names; only the ones you wish to change.

Bouncer's published migration uses the table names from this configuration, so be sure to have these in place before actually running the migration.

Custom models

You can easily extend Bouncer's built-in Role and Ability models:

Alternatively, you can use Bouncer's IsAbility and IsRole traits without actually extending any of Bouncer's models:

If you use the traits instead of extending Bouncer's models, be sure to set the proper $table name and $fillable fields yourself.

Regardless of which method you use, the next step is to actually tell Bouncer to use your custom models:

Note: Eloquent determines the foreign key of relationships based on the parent model name (see the Eloquent docs). To keep things simple, name your custom classes the same as Bouncer's: Ability and Role, respectively.

If you need to use different names, be sure to either update your migration file or override the relationship methods to explicitly set their foreign keys.

User Model

By default, Bouncer automatically uses the user model of the default auth guard.

If you're using Bouncer with a non-default guard, and it uses a different user model, you should let Bouncer know about the user model you want to use:

Ownership

In Bouncer, the concept of ownership is used to allow users to perform actions on models they "own".

By default, Bouncer will check the model's user_id against the current user's primary key. If needed, this can be set to a different attribute:

If different models use different columns for ownership, you can register them separately:

For greater control, you can pass a closure with your custom logic:

FAQ

There are some concepts in Bouncer that people keep on asking about, so here's a short list of some of those topics:

Where do I set up my app's roles and abilities?

Seeding the initial roles and abilities can be done in a regular Laravel seeder class. Start by creating a specific seeder file for Bouncer:

Place all of your seeding roles & abilities code in the seeder's run method. Here's an example of what that might look like:

To actually run it, pass the seeder's class name to the class option of the db:seed command:

Can I use a different set of roles & abilities for the public & dashboard sections of my site, respectively?

Bouncer's scope can be used to section off different parts of the site, creating a silo for each one of them with its own set of roles & abilities:

  1. Create a ScopeBouncer middleware that takes an $identifier and sets it as the current scope:

  2. Register this new middleware as a route middleware in your HTTP Kernel class:

  3. In your route service provider, apply this middleware with a different identifier for the public routes and the dashboard routes, respectively:

That's it. All roles and abilities will now be separately scoped for each section of your site. To fine-tune the extent of the scope, see Customizing Bouncer's scope.

I'm trying to run the migration, but I'm getting a SQL error that the "specified key was too long"

Starting with Laravel 5.4, the default database character set is now utf8mb4. If you're using older versions of some databases (MySQL below 5.7.7, or MariaDB below 10.2.2) with Laravel 5.4+, you'll get a SQL error when trying to create an index on a string column. To fix this, change Laravel's default string length in your AppServiceProvider:

You can read more in this Laravel News article.

I'm trying to run the migration, but I'm getting a SQL error that there is a "Syntax error or access violation: 1064 ... to use near json not null)"

JSON columns are a relatively new addition to MySQL (5.7.8) and MariaDB (10.2.7). If you're using an older version of these databases, you cannot use JSON columns.

The best solution would be to upgrade your DB. If that's not currently possible, you can change your published migration file to use a text column instead:

Console commands

bouncer:clean

The bouncer:clean command deletes unused abilities. Running this command will delete 2 types of unused abilities:

If you only want to delete one type of unused ability, run it with one of the following flags:

If you don't pass it any flags, it will delete both types of unused abilities.

To automatically run this command periodically, add it to your console kernel's schedule:

Cheat Sheet

Some of this functionality is also available directly on the user model:

Alternative

Among the bajillion packages that Spatie has so graciously bestowed upon the community, you'll find the excellent laravel-permission package. Like Bouncer, it nicely integrates with Laravel's built-in gate and permission checks, but has a different set of design choices when it comes to syntax, DB structure & features.

License

Bouncer is open-sourced software licensed under the MIT license


All versions of bouncer with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2|^8.3
illuminate/auth Version ^11.0
illuminate/cache Version ^11.0
illuminate/container Version ^11.0
illuminate/contracts Version ^11.0
illuminate/database Version ^11.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package silber/bouncer contains the following files

Loading the files please wait ....