Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Christophe Turbout
auth
Commits
f6376be8
Commit
f6376be8
authored
Nov 15, 2019
by
Laurent Lécluse
Browse files
Merge branches 'develop' and 'master' of
https://git.unicaen.fr/lib/unicaen/auth
parents
d42aebe4
2580fd63
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/UnicaenAuth/Authentication/Adapter/Cas.php
View file @
f6376be8
...
...
@@ -18,6 +18,7 @@ use Zend\Router\RouteInterface;
use
Zend\Router\RouteStackInterface
;
use
ZfcUser\Authentication\Adapter\AbstractAdapter
;
use
ZfcUser\Authentication\Adapter\ChainableAdapter
;
use
Zend\Authentication\Storage\Session
;
/**
* CAS authentication adpater
...
...
@@ -77,6 +78,15 @@ class Cas extends AbstractAdapter implements EventManagerAwareInterface
$this
->
router
=
$router
;
}
public
function
getStorage
()
{
if
(
null
===
$this
->
storage
)
{
$this
->
setStorage
(
new
Session
());
}
return
$this
->
storage
;
}
/**
* Réalise l'authentification.
*
...
...
src/UnicaenAuth/Authentication/Adapter/Db.php
View file @
f6376be8
...
...
@@ -6,6 +6,7 @@ use Interop\Container\ContainerInterface;
use
UnicaenApp\ServiceManager\ServiceLocatorAwareInterface
;
use
UnicaenApp\ServiceManager\ServiceLocatorAwareTrait
;
use
UnicaenAuth\Options\ModuleOptions
;
use
Zend\Authentication\Storage\Session
;
use
Zend\EventManager\EventInterface
;
use
Zend\ServiceManager\Exception\ServiceNotFoundException
;
...
...
@@ -36,6 +37,15 @@ class Db extends \ZfcUser\Authentication\Adapter\Db implements ServiceLocatorAwa
return
$this
;
}
public
function
getStorage
()
{
if
(
null
===
$this
->
storage
)
{
$this
->
setStorage
(
new
Session
());
}
return
$this
->
storage
;
}
/**
* Authentification.
*
...
...
src/UnicaenAuth/Authentication/Adapter/Ldap.php
View file @
f6376be8
...
...
@@ -16,6 +16,7 @@ use Zend\EventManager\EventManagerAwareInterface;
use
Zend\EventManager\EventManagerInterface
;
use
ZfcUser\Authentication\Adapter\AbstractAdapter
;
use
ZfcUser\Authentication\Adapter\ChainableAdapter
;
use
Zend\Authentication\Storage\Session
;
/**
* LDAP authentication adpater
...
...
@@ -77,6 +78,15 @@ class Ldap extends AbstractAdapter implements EventManagerAwareInterface
$this
->
appModuleOptions
=
$appModuleOptions
;
}
public
function
getStorage
()
{
if
(
null
===
$this
->
storage
)
{
$this
->
setStorage
(
new
Session
());
}
return
$this
->
storage
;
}
/**
*
* @param EventInterface $e
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment