2017 © Pedro Peláez
 

package member-org

Application support for multiple organization types, each with its own users and permissions

image

democracyapps/member-org

Application support for multiple organization types, each with its own users and permissions

  • Friday, May 8, 2015
  • by ejaxon
  • Repository
  • 2 Watchers
  • 0 Stars
  • 108 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

member-org

Laravel application support for multiple org types, each with own users with multiple permission levels. Organization and OrganizationMember present an interface, while EloquentMemberOrganization and EloquentOrganizationMember are traits that provide a full implementation when added to an Eloquent model., (*1)

The package is quite simple. It's most useful when a platform must support multiple types of organizations and organization members at the same time., (*2)

Important: If you are thinking of using this package, please contact me via Twitter (@ejaxon). I am considering adding functionality around user invites, user management, migrations, etc., (*3)

Instructions For Use

Installation

Begin by installing this package through Composer., (*4)

{
    "require": {
        "democracyapps/member-org": "dev-master"
    }
}

Add the service provider to app.php, (*5)

    // app/config/app.php

    'providers' => [
        '...',
        'DemocracyApps\MemberOrg\MemberOrganizationServiceProvider',
    ];

(note that the service provider is currently only needed if you wish to publish the configuration file in order to change the defaults., (*6)

The only requirement right now is that the user class obey Laravel's Authenticable contract., (*7)

Note that the EloquentOrganizationMember train only has stubs for the OrganizationMember interface (unlike EloquentMemberOrganization). I am holding off until I better understand requirements for it (if any)., (*8)

Applying to an Organization

Let's assume that you have a Company class to which you wish to apply this package and that Company is a subclass of Eloquent Model:, (*9)

    class Company extends Model
    {
     ...
    }

Change the class to implement the Organization interface and make use of the EloquentOrganization trait:, (*10)

    use DemocracyApps\MemberOrg\EloquentMemberOrganization;
    use DemocracyApps\MemberOrg\Organization;

    class Company implements MemberOrganization
    {
        use EloquentMemberOrganization;
        ...
    }

In addition, create a CompanyMember class (NOTE: the 'Member' part of the name is required. An option in the configuration file will allow it to be set to something different.):, (*11)

    use DemocracyApps\MemberOrg\EloquentOrganizationMember;
    use DemocracyApps\MemberOrg\OrganizationMember;

    class CompanyMember implements OrganizationMember
    {
        use EloquentOrganizationMember;
        ...
    }

and create a migration for it. It is required to have three columns:, (*12)

    user_id (foreign key referring to the 'id' column of your users table)
    company_id (foreign key referring to the 'id' column of your companies table)
    access (an integer)

None of the columns may be null. Note that the second column must be named with the snake_case version of your organization class with '_id" appended., (*13)

Configuration Parameters

There are three main parameters and a few auxiliary ones. If you wish to change the defaults, add the service provider, run, (*14)

php artisan vendor:publish

and edit 'config/member-org.php'., (*15)

max_permission_level (default: 9)

Permissions are simple - each organization member is assigned an access level between 0 and max_permission_level. Pages and resources in your application can be assigned required access levels and users with access below the required level will fail the userHasAccess test., (*16)

I typically begin by assigning only two levels, 0 for no privileges and 9 for administrators, leaving intermediate values available for later use., (*17)

user_implements_superuser (default: false)

If set to true, the package expects the user table to contain a boolean column which, if true, makes the user a "superuser" who always has access to any resource or page. By default, the column name is assumed to be 'superuser', but this can be changed in the configuration file., (*18)

user_implements_confirmation (default: false)

If set to true, the package expects that the application requires users to verify their accounts in some way and that they should not gain full privileges until they do. Their status should be indicated in a boolean column in the user table (by default the column name is assumed to be 'confirmed', but this can be changed in the configuration file)., (*19)

The user_confirmation_required_threshold (default:0) specifies the maximum privilege level they may have before verifying their accounts. Thus, a full administrator (access=9) would remain restricted to access level 0 by default until verification is completed., (*20)

Basic Use

So far I am making use of the package in two simple ways. First, I use the Organization's addMember method to create organization users (this creates the entry in the database). Second, I use the Organization's userHasAccess method in route middleware to restrict access to organization pages (generally admin pages)., (*21)

Here is a concrete example of a middleware class for company admin pages. In the route, the company ID is in the 2nd route segment., (*22)

    class VerifyCompanyAccess {

        /**
         * Check that user is logged in and allowed access to this page
         *
         * @param  \Illuminate\Http\Request  $request
         * @param  \Closure  $next
         * @return mixed
         */
        public function handle($request, Closure $next)
        {
            if (\Auth::guest()) return redirect()->guest('/auth/login');

            $id = $request->segment(2);
            $company = Company::find($id);

            if ($company == null) {
                return redirect('/');
            }

            if (! $company->userHasAccess(\Auth::user(), 9)) {
                return redirect('/');
            }

            return $next($request);
        }

    }

Problems and Plans

This module is being used for a couple products in active development and will probably evolve. If you find bugs or have requests for features, create an issue here, find me on Twitter (@ejaxon) or submit a pull request., (*23)

The Versions

08/05 2015

dev-master

9999999-dev

Application support for multiple organization types, each with its own users and permissions

  Sources   Download

MIT

The Requires

 

The Development Requires

by Eric Jackson

18/03 2015

v0.1.1

0.1.1.0

Application support for multiple organization types, each with its own users and permissions

  Sources   Download

MIT

The Requires

 

The Development Requires

by Eric Jackson

18/03 2015

v0.1.0

0.1.0.0

Application support for multiple organization types, each with its own users and permissions

  Sources   Download

MIT

The Requires

 

The Development Requires

by Eric Jackson