- Added Taxus annotation

- Edidet the way SecurityHandler was working internally
This commit is contained in:
Dave Mc Nicoll 2021-08-27 19:38:31 +00:00
parent 71bdc9171a
commit b506bae846
2 changed files with 55 additions and 13 deletions

16
src/Annotation/Taxus.php Normal file
View File

@ -0,0 +1,16 @@
<?php
namespace Notes\Security\Annotation;
class Taxus implements \Notes\Annotation {
public string $module;
public string $privilege;
public function __construct(? string $privilege = null) {
if ($privilege !== null) {
$this->privilege = $privilege;
}
}
}

View File

@ -2,6 +2,8 @@
namespace Notes\Security; namespace Notes\Security;
use Taxus\Taxus;
use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ResponseInterface;
use Notes\ObjectReflection, use Notes\ObjectReflection,
@ -9,33 +11,57 @@ use Notes\ObjectReflection,
class SecurityHandler { class SecurityHandler {
protected ResponseInterface $response; protected ResponseInterface $redirectResponse;
public function __construct(ResponseInterface $response) { protected \Closure $unauthorizeResponse;
$this->response = $response;
protected ? Taxus $taxus;
public function __construct(ResponseInterface $redirectResponse, ? \Closure $unauthorizeResponse = null, ? Taxus $taxus = null) {
$this->redirectResponse = $redirectResponse;
$this->unauthorizeResponse = $unauthorizeResponse;
$this->taxus = $taxus;
} }
public function verify(string $className, string $methodName) : ? ResponseInterface { public function verify(string $className, string $methodName) : ? ResponseInterface
{
# Should generate an equivalent of Ulmus's object reflection here ! # Should generate an equivalent of Ulmus's object reflection here !
if ( $this->getClassAnnotations($className, $methodName)->locked ) { if ( $security = $this->getClassAnnotations(Annotation\Security::class, $className, $methodName) ) {
return $this->response; return array_pop($security)->locked ? $this->redirectResponse : null;
} }
return null; return null;
} }
protected function getClassAnnotations(string $className, string $methodName)/* : \Notes\Annotation|array */ public function taxus(string $className, string $methodName, object $user = null) : ? ResponseInterface
{
if ($taxus = $this->getClassAnnotations(Annotation\Taxus::class, $className, $methodName)) {
foreach($taxus as $item) {
if ( !isset($item->privilege) || $this->taxus->granted($item->privilege, $user, $item) ) {
return null;
}
}
return call_user_func_array($this->unauthorizeResponse, [ $user, $taxus, $className, $methodName ] );
}
return null;
}
protected function getClassAnnotations(string $annotationClass, string $className, string $methodName)/* : \Notes\Annotation|array */
{ {
$objectResolver = new ObjectResolver($className, true, true, false, true); $objectResolver = new ObjectResolver($className, true, true, false, true);
if ( null !== ( $method = $objectResolver->getAnnotationListFromClassname( Annotation\Security::class ) ) ) { try {
if ( $method[$methodName] ?? false ) { $method = $objectResolver->getAnnotationListFromClassname( $annotationClass, false );
return $method[$methodName];
}
} }
catch(\Exception $e) { }
if ( null !== ( $object = $objectResolver->getAnnotationFromClassname( Annotation\Security::class ) ) ) { if ( $method[$methodName] ?? false ) {
return $object; return $method[$methodName];
}
else {
return array_filter($method, fn($e) => is_object($e));
} }
} }
} }