WIP on liteing the framework
This commit is contained in:
parent
bc55a2ab89
commit
9b795b857a
|
@ -27,9 +27,9 @@
|
||||||
"mcnd/tell": "dev-master",
|
"mcnd/tell": "dev-master",
|
||||||
"mcnd/dump": "dev-master",
|
"mcnd/dump": "dev-master",
|
||||||
"mcnd/event": "dev-master",
|
"mcnd/event": "dev-master",
|
||||||
"mcnd/ulmus-user": "dev-master",
|
|
||||||
"mcnd/thebugs": "dev-master",
|
"mcnd/thebugs": "dev-master",
|
||||||
"mcnd/taxus": "dev-master",
|
"mcnd/taxus": "dev-master",
|
||||||
|
"mcnd/notes": "dev-master",
|
||||||
"psr/simple-cache": "*"
|
"psr/simple-cache": "*"
|
||||||
},
|
},
|
||||||
"repositories": [
|
"repositories": [
|
||||||
|
@ -49,10 +49,6 @@
|
||||||
"type": "vcs",
|
"type": "vcs",
|
||||||
"url": "https://git.mcnd.ca/mcndave/ulmus.git"
|
"url": "https://git.mcnd.ca/mcndave/ulmus.git"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"type": "vcs",
|
|
||||||
"url": "https://git.mcnd.ca/mcndave/ulmus-user.git"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"type": "vcs",
|
"type": "vcs",
|
||||||
"url": "https://git.mcnd.ca/mcndave/notes.git"
|
"url": "https://git.mcnd.ca/mcndave/notes.git"
|
||||||
|
|
|
@ -25,11 +25,16 @@ return [
|
||||||
|
|
||||||
Event\EventDefinition::class => function($c) {
|
Event\EventDefinition::class => function($c) {
|
||||||
return new Event\EventDefinition([
|
return new Event\EventDefinition([
|
||||||
new class() implements RoutingCompileRoutes {
|
|
||||||
|
new class($c->has(\Picea\Extension\UrlExtension::class) ? $c->get(\Picea\Extension\UrlExtension::class) : null) implements RoutingCompileRoutes {
|
||||||
|
public function __construct(
|
||||||
|
protected ? \Picea\Extension\UrlExtension $extension,
|
||||||
|
) {}
|
||||||
|
|
||||||
public function execute(Routing $routing, Route $attribute) : void
|
public function execute(Routing $routing, Route $attribute) : void
|
||||||
{
|
{
|
||||||
if (null !== ($name = $attribute->name ?? null)) {
|
if (null !== ($name = $attribute->name ?? null)) {
|
||||||
$routing->extension->registerRoute($name, $attribute->getRoute(), $attribute->class, $attribute->classMethod, $attribute->methods ?? (array)$attribute->method);
|
$this->extension->registerRoute($name, $attribute->getRoute(), $attribute->class, $attribute->classMethod, $attribute->methods ?? (array)$attribute->method);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -45,7 +50,9 @@ return [
|
||||||
|
|
||||||
# Checking if user needs to be logged
|
# Checking if user needs to be logged
|
||||||
if ( $container->has(SecurityHandler::class) ){
|
if ( $container->has(SecurityHandler::class) ){
|
||||||
if ( $redirect = $container->get(SecurityHandler::class)->verify($class, $method) ) {
|
$securityHandler = $container->get(SecurityHandler::class);
|
||||||
|
|
||||||
|
if ( $redirect = $securityHandler->verify($class, $method) ) {
|
||||||
if ( empty($object->user) || ! $object->user->logged ) {
|
if ( empty($object->user) || ! $object->user->logged ) {
|
||||||
$routing->session->set('redirectedFrom', (string) $request->getUri());
|
$routing->session->set('redirectedFrom', (string) $request->getUri());
|
||||||
$routing->response = $redirect;
|
$routing->response = $redirect;
|
||||||
|
@ -54,7 +61,7 @@ return [
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( $container->has(Taxus::class) ) {
|
if ( $securityHandler->isLocked($class, $method) && $container->has(Taxus::class) ) {
|
||||||
if ( $forbidden = $container->get(SecurityHandler::class)->taxus($class, $method, $object->user ?? null) ) {
|
if ( $forbidden = $container->get(SecurityHandler::class)->taxus($class, $method, $object->user ?? null) ) {
|
||||||
$routing->response = $forbidden;
|
$routing->response = $forbidden;
|
||||||
|
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
use function DI\autowire, DI\create, DI\get;
|
|
||||||
|
|
||||||
use Storage\Session;
|
|
||||||
|
|
||||||
use Taxus\{ Privilege, Taxus, PermissionGrantInterface, DefaultPermissionGrant };
|
|
||||||
|
|
||||||
use Psr\Http\Message\ServerRequestInterface;
|
|
||||||
|
|
||||||
return [
|
|
||||||
Taxus::class => function ($c) {
|
|
||||||
return ( new Taxus( $c->get(PermissionGrantInterface::class) ) )->add(
|
|
||||||
[ new Privilege("dev", "Is a developper of this application."), "is_dev" ],
|
|
||||||
[ new Privilege("admin", "Can manage mostly everything from this application."), "is_admin" ],
|
|
||||||
[ new Privilege("user", "Is an authenticated user."), "is_user" ],
|
|
||||||
[ new Privilege("anonymous", "Is an anonymous (unauthenticated) user."), "is_anonymous" ],
|
|
||||||
);
|
|
||||||
},
|
|
||||||
|
|
||||||
PermissionGrantInterface::class => create(DefaultPermissionGrant::class)->constructor(get(ServerRequestInterface::class), get(Session::class)),
|
|
||||||
];
|
|
|
@ -23,6 +23,12 @@ DEFAULT_TIME = "fr.UTF-8"
|
||||||
DEFAULT_TIME_FALLBACK = "french.UTF-8"
|
DEFAULT_TIME_FALLBACK = "french.UTF-8"
|
||||||
|
|
||||||
# Database
|
# Database
|
||||||
|
#SQLITE_PATH = "var/home.sqlite3"
|
||||||
|
#SQLITE_ADAPTER = "SQLite"
|
||||||
|
#SQLITE_PRAGMA_BEGIN = "foreign_keys=ON,synchronous=NORMAL"
|
||||||
|
#SQLITE_PRAGMA_DEBUG_BEGIN = "journal_mode=WAL"
|
||||||
|
#SQLITE_PRAGMA_CLOSE = "analysis_limit=500,optimize"
|
||||||
|
|
||||||
DATABASE_PORT = ""
|
DATABASE_PORT = ""
|
||||||
DATABASE_HOST = ""
|
DATABASE_HOST = ""
|
||||||
DATABASE_NAME = ""
|
DATABASE_NAME = ""
|
||||||
|
|
|
@ -13,8 +13,8 @@ use Psr\Http\Message\{ ServerRequestInterface, ResponseInterface };
|
||||||
|
|
||||||
use function file_get_contents;
|
use function file_get_contents;
|
||||||
|
|
||||||
#[Security(locked: true)]
|
#[Security(locked: true, realm: "Protected Area")]
|
||||||
#[Route(method: [ "GET", "POST", "DELETE" ])]
|
#[Route(method: [ "GET", "POST" ])]
|
||||||
trait ControllerTrait {
|
trait ControllerTrait {
|
||||||
public ? \Notes\Breadcrumb\Breadcrumb $breadcrumb;
|
public ? \Notes\Breadcrumb\Breadcrumb $breadcrumb;
|
||||||
|
|
||||||
|
|
|
@ -4,10 +4,16 @@ namespace Lean\Factory;
|
||||||
|
|
||||||
use Laminas\Diactoros\Response\{EmptyResponse, HtmlResponse, JsonResponse, RedirectResponse, TextResponse};
|
use Laminas\Diactoros\Response\{EmptyResponse, HtmlResponse, JsonResponse, RedirectResponse, TextResponse};
|
||||||
use Lean\Response\{ DownloadResponse, ImageResponse, FileDownloadResponse, PdfResponse };
|
use Lean\Response\{ DownloadResponse, ImageResponse, FileDownloadResponse, PdfResponse };
|
||||||
|
use Laminas\Diactoros\Response;
|
||||||
use Psr\Http\Message\ResponseInterface;
|
use Psr\Http\Message\ResponseInterface;
|
||||||
|
|
||||||
class HttpFactory
|
class HttpFactory
|
||||||
{
|
{
|
||||||
|
public static function createResponse(string $url, int $code = 302, array $headers = []) : ResponseInterface
|
||||||
|
{
|
||||||
|
return new Response($url, $code, $headers);
|
||||||
|
}
|
||||||
|
|
||||||
public static function createRedirectResponse(string $url, int $code = 302, array $headers = []) : ResponseInterface
|
public static function createRedirectResponse(string $url, int $code = 302, array $headers = []) : ResponseInterface
|
||||||
{
|
{
|
||||||
return new RedirectResponse($url, $code, $headers);
|
return new RedirectResponse($url, $code, $headers);
|
||||||
|
|
|
@ -2,9 +2,6 @@
|
||||||
|
|
||||||
namespace Lean;
|
namespace Lean;
|
||||||
|
|
||||||
use Notes\Annotation;
|
|
||||||
use Taxus\Taxus;
|
|
||||||
|
|
||||||
use League\Route\RouteGroup,
|
use League\Route\RouteGroup,
|
||||||
League\Route\Router;
|
League\Route\Router;
|
||||||
|
|
||||||
|
@ -14,54 +11,33 @@ use Psr\Http\Message\ServerRequestInterface,
|
||||||
|
|
||||||
use Notes\Route\RouteFetcher;
|
use Notes\Route\RouteFetcher;
|
||||||
|
|
||||||
use Notes\Security\SecurityHandler;
|
|
||||||
|
|
||||||
use Notes\Tell\LanguageHandler;
|
|
||||||
|
|
||||||
use Picea\Picea,
|
|
||||||
Picea\Extension\UrlExtension;
|
|
||||||
|
|
||||||
use Storage\Cookie,
|
|
||||||
Storage\Session;
|
|
||||||
|
|
||||||
use Mcnd\Event\EventManager;
|
use Mcnd\Event\EventManager;
|
||||||
|
|
||||||
use function DI\autowire, DI\create;
|
|
||||||
|
|
||||||
class Routing {
|
class Routing {
|
||||||
|
|
||||||
public Annotation $selectedRoute;
|
|
||||||
|
|
||||||
public ResponseInterface $response;
|
public ResponseInterface $response;
|
||||||
|
|
||||||
public function __construct(
|
public function __construct(
|
||||||
public Session $session,
|
|
||||||
public Cookie $cookie,
|
|
||||||
public UrlExtension $extension,
|
|
||||||
public Router $router,
|
public Router $router,
|
||||||
public RouteFetcher $fetcher,
|
public RouteFetcher $fetcher,
|
||||||
public SecurityHandler $security,
|
|
||||||
public Taxus $taxus,
|
|
||||||
public EventManager $eventManager,
|
public EventManager $eventManager,
|
||||||
) { }
|
) { }
|
||||||
|
|
||||||
public function registerRoute(ContainerInterface $container, string $urlBase) {
|
public function registerRoute(ContainerInterface $container, string $urlBase) {
|
||||||
$this->router->group(rtrim($urlBase, "/"), function (RouteGroup $route) use ($container) {
|
$this->router->group(rtrim($urlBase, "/"), function (RouteGroup $route) use ($container) {
|
||||||
foreach($this->fetcher->compile() as $annotation) {
|
foreach($this->fetcher->compile() as $attribute) {
|
||||||
$this->eventManager->execute(Event\RoutingCompileRoutes::class, $this, $annotation);
|
$this->eventManager->execute(Event\RoutingCompileRoutes::class, $this, $attribute);
|
||||||
|
|
||||||
/* @deprecated annotation->method will become standard when using native attributes */
|
# Mapping every URLs from attributes in searched folders (Api, Controller, etc...)
|
||||||
foreach((array) ( $annotation->method ?? $annotation->methods ) as $method) {
|
foreach((array) $attribute->method as $method) {
|
||||||
# Mapping every URLs from annotations in searched folders (Api, Controller, etc...)
|
$route->map(strtoupper($method), $attribute->getRoute(), function (ServerRequestInterface $request, array $arguments) use (
|
||||||
$route->map(strtoupper($method), $annotation->getRoute(), function (ServerRequestInterface $request, array $arguments) use (
|
$container, $route, $attribute
|
||||||
$container, $route, $annotation
|
) : ResponseInterface {
|
||||||
) : ResponseInterface
|
$class = $attribute->class;
|
||||||
{
|
$method = $attribute->classMethod;
|
||||||
$class = $annotation->class;
|
|
||||||
$method = $annotation->classMethod;
|
|
||||||
$object = $container->get($class);
|
$object = $container->get($class);
|
||||||
|
|
||||||
$this->eventManager->execute(Event\RoutingMapRoutes::class, $this, $container, $request, $annotation);
|
$this->eventManager->execute(Event\RoutingMapRoutes::class, $this, $container, $request, $attribute);
|
||||||
|
|
||||||
$container->set(ServerRequestInterface::class, $request);
|
$container->set(ServerRequestInterface::class, $request);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue