aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/front/ShaarliMiddleware.php
blob: 47aa61bbfb6f9d05f6dff325501d45d3b4b82b81 (plain) (blame)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php

namespace Shaarli\Front;

use Shaarli\Container\ShaarliContainer;
use Shaarli\Front\Exception\ShaarliFrontException;
use Shaarli\Front\Exception\UnauthorizedException;
use Slim\Http\Request;
use Slim\Http\Response;

/**
 * Class ShaarliMiddleware
 *
 * This will be called before accessing any Shaarli controller.
 */
class ShaarliMiddleware
{
    /** @var ShaarliContainer contains all Shaarli DI */
    protected $container;

    public function __construct(ShaarliContainer $container)
    {
        $this->container = $container;
    }

    /**
     * Middleware execution:
     *   - execute the controller
     *   - return the response
     *
     * In case of error, the error template will be displayed with the exception message.
     *
     * @param  Request  $request  Slim request
     * @param  Response $response Slim response
     * @param  callable $next     Next action
     *
     * @return Response response.
     */
    public function __invoke(Request $request, Response $response, callable $next)
    {
        try {
            $this->container->basePath = rtrim($request->getUri()->getBasePath(), '/');

            $response = $next($request, $response);
        } catch (ShaarliFrontException $e) {
            $this->container->pageBuilder->assign('message', $e->getMessage());
            if ($this->container->conf->get('dev.debug', false)) {
                $this->container->pageBuilder->assign(
                    'stacktrace',
                    nl2br(get_class($this) .': '. $e->getTraceAsString())
                );
            }

            $response = $response->withStatus($e->getCode());
            $response = $response->write($this->container->pageBuilder->render('error'));
        } catch (UnauthorizedException $e) {
            return $response->withRedirect($request->getUri()->getBasePath() . '/login');
        }

        return $response;
    }
}