rici12/ldap-laravel-provider

Lean and simple Ldap provider for Laravel 5.1
79 2
Install
composer require rici12/ldap-laravel-provider
Latest Version:0.4
PHP:>=5.4.0
License:MIT
Last Updated:Aug 17, 2015
Links: GitHub  ·  Packagist
Maintainer: RiCi12

LdapLaravelProvider

Lean and simple ldap provider for Laravel 5.1. Works only with Active Directory system.

When is this package useful?

When you need to authenticate your user against a ldap server (Active Directory system), while maintaining a users table in your database.

What is included?

A provider and its service provider.

How to install

In your composer.json, as a required dependency, insert:

"rici12/ldap-laravel-provider": "0.*"

Then run

composer update

After that, open config/app.php and add to your service providers list

RiCi12\LdapLaravelProvider\ServiceProvider\LdapServiceProvider::class

Then open config/auth.php and change your driver option

'driver' => 'ldap'

Open the .env file and add the required options

LDAPSERVER = auth.magrathea.com 
LDAPDOMAINNAME = MAGRATHEA\ 
USERNAMECREDENTIALSATTRIBUTE = username 
PASSWORDCREDENTIALSATTRIBUTE = password

Work flow

  1. Try to connect to the provided server
  2. Check if input credentials are correct
  3. If true, search for a user from users table (compairing 'username' attribute)
  4. Return the user, if found; otherwise, throws an Exception.

Use case

In my last project I needed to let the user authenticate with their domain credentials while not letting everybody get access to the homepage; plus, I was asked to implement a really simple roles system (read/write access). So i implemented this authentication service provider wich fits great with Laravel Auth system: you'll be able to access the user from Auth facade.

Related Packages

syardumi/my-eloquent-ldap

A Laravel package that first tries to log the user against the internal database...

10 1
fzhan/l5-ldap-auth

Laravel 5 Active Directory LDAP Authentication driver

83 1
gman29/l5-ldap-auth

Laravel 5 Active Directory LDAP Authentication driver

89 1
alex-rad/laravel-ldap-credentials

Extends Database and Eloquent User Authentication Providers (Laravel framework)...

354 1
emiliosh/l4-ldap

An LDAP/Active Directory/NTLM authentication driver for Laravel 4.

1,055 0