@@ -162,7 +162,7 @@ $router->define('CUSTOM', '/', function () {
162
162
$router->dispatch();
163
163
```
164
164
165
- If you don't want to care about HTTP verbs, you can use the ` any() ` method.
165
+ If you don't care about HTTP verbs, you can use the ` any() ` method.
166
166
167
167
``` php
168
168
use MiladRahimi\PhpRouter\Router;
@@ -225,7 +225,7 @@ $router->dispatch();
225
225
226
226
A URL might have one or more variable parts like product IDs on a shopping website.
227
227
We call it a route parameter.
228
- You can catch them by controller arguments like the example below.
228
+ You can catch them by controller method arguments like the example below.
229
229
230
230
``` php
231
231
use MiladRahimi\PhpRouter\Router;
@@ -256,6 +256,8 @@ $router->get('/post/{pid}/comment/{cid}', function ($pid, $cid) {
256
256
$router->dispatch();
257
257
```
258
258
259
+ #### Route Parameter Patterns
260
+
259
261
In default, route parameters can have any value, but you can define regex patterns to limit them.
260
262
261
263
``` php
@@ -291,16 +293,17 @@ use Laminas\Diactoros\Response\JsonResponse;
291
293
292
294
$router = Router::create();
293
295
294
- $router->get('/test ', function (ServerRequest $request) {
295
- return new JsonResponse( [
296
+ $router->get('/', function (ServerRequest $request) {
297
+ $info = [
296
298
'method' => $request->getMethod(),
297
299
'uri' => $request->getUri()->getPath(),
298
300
'body' => $request->getBody()->getContents(),
299
301
'parsedBody' => $request->getParsedBody(),
300
302
'headers' => $request->getHeaders(),
301
303
'queryParameters' => $request->getQueryParams(),
302
304
'attributes' => $request->getAttributes(),
303
- ]);
305
+ ];
306
+ // ...
304
307
});
305
308
306
309
$router->dispatch();
@@ -409,8 +412,8 @@ class AuthMiddleware
409
412
{
410
413
public function handle(ServerRequestInterface $request, Closure $next)
411
414
{
412
- if ($request->getHeader('Authorization')) {
413
- // Check the auth header...
415
+ if ($request->getHeader('Authorization')) {
416
+ // Call the next middleware/controller
414
417
return $next($request);
415
418
}
416
419
@@ -423,7 +426,7 @@ $router = Router::create();
423
426
// The middleware attribute takes an array of middleware, not a single one!
424
427
$router->group(['middleware' => [AuthMiddleware::class]], function(Router $router) {
425
428
$router->get('/admin', function () {
426
- return 'Admin Panel ';
429
+ return 'Admin API ';
427
430
});
428
431
});
429
432
@@ -547,12 +550,12 @@ $router->getContainer()->singleton(Database::class, MySQL::class);
547
550
$router->getContainer()->singleton(Config::class, JsonConfig::class);
548
551
549
552
// Resolve directly
550
- $router->get('/direct ', function (Database $database, Config $config) {
553
+ $router->get('/', function (Database $database, Config $config) {
551
554
// Use MySQL and JsonConfig...
552
555
});
553
556
554
557
// Resolve container
555
- $router->get('/container ', function (Container $container) {
558
+ $router->get('/', function (Container $container) {
556
559
$database = $container->get(Database::class);
557
560
$config = $container->get(Config::class);
558
561
});
@@ -582,6 +585,7 @@ $router->get('/', function () {
582
585
try {
583
586
$router->dispatch();
584
587
} catch (RouteNotFoundException $e) {
588
+ // It's 404!
585
589
$router->getPublisher()->publish(new HtmlResponse('Not found.', 404));
586
590
} catch (Throwable $e) {
587
591
// Log and report...
0 commit comments