-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
42 lines (31 loc) · 1.13 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php declare(strict_types=1);
namespace App;
use Laminas\Stratigility\MiddlewarePipe;
use Siler\Diactoros;
use Siler\Route;
use Siler\HttpHandlerRunner;
use App\Middleware;
use App\Routes;
// use Siler\{Route, Http\Response};
// use function Siler\Config\config;
// Route\get('/', static function () {
// $hw = new Greeter((string)config('app.name'));
// Response\json($hw->greet());
// });
// if (!Route\did_match()) {
// Response\json('Not found', 404);
// }
$ppAuth = new MiddlewarePipe();
$ppAuth->pipe(new Middleware\Auth);
$request = Diactoros\request();
$rh = new RequestHandler($request);
$response = Route\matching([
Route\get('/', $rh->handler(new Routes\Home), $request),
Route\get('/admin', $rh->pipeline(new Routes\Admin, $ppAuth), $request),
Route\get('/secret', $rh->pipeline(new Routes\Secret, $ppAuth), $request),
Route\get('/___graphql', $rh->handler(new Routes\GraphiQL), $request),
Route\post('/___graphql', $rh->handler(new Routes\GraphQL), $request),
Route\get('/___graphpg', $rh->handler(new Routes\GraphPG), $request),
Diactoros\json('not found', 404),
]);
HttpHandlerRunner\sapi_emit($response);