Completed
Push — master ( 1de9b7...830752 )
by Kristof
38:46 queued 24:09
created

EventListener/SessionSecurityListener.php (3 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Kunstmaan\AdminBundle\EventListener;
4
5
use Psr\Log\LoggerInterface;
6
use Symfony\Component\HttpFoundation\Request;
7
use Symfony\Component\HttpFoundation\Session\SessionInterface;
8
use Symfony\Component\HttpKernel\Event\FilterResponseEvent;
9
use Symfony\Component\HttpKernel\Event\GetResponseEvent;
10
use Symfony\Component\HttpKernel\HttpKernelInterface;
11
12
class SessionSecurityListener
13
{
14
    /**
15
     * @var LoggerInterface
16
     */
17
    private $logger;
18
19
    /**
20
     * @var bool
21
     */
22
    private $ipCheck;
23
24
    /**
25
     * @var bool
26
     */
27
    private $userAgentCheck;
28
29
    /**
30
     * @var string
31
     */
32
    private $ip;
33
34
    /**
35
     * @var string
36
     */
37
    private $userAgent;
38
39
    /**
40
     * @param bool            $ipCheck
41
     * @param bool            $userAgentCheck
42
     * @param LoggerInterface $logger
43
     */
44
    public function __construct($ipCheck, $userAgentCheck, LoggerInterface $logger)
45
    {
46
        $this->ipCheck = $ipCheck;
47
        $this->userAgentCheck = $userAgentCheck;
48
        $this->logger = $logger;
49
    }
50
51
    /**
52
     * @param FilterResponseEvent $event
53
     */
54
    public function onKernelResponse(FilterResponseEvent $event)
55
    {
56
        if (HttpKernelInterface::MASTER_REQUEST !== $event->getRequestType()) {
57
            return;
58
        }
59
60
        // Make sure the ip and user agent is stored in the session
61
        $request = $event->getRequest();
62
        if ($request->hasSession() && $request->getSession()->isStarted()) {
63
            $session = $request->getSession();
64
            if ($this->ipCheck && !$session->has('kuma_ip')) {
65
                $session->set('kuma_ip', $this->getIp($request));
66
            }
67
            if ($this->userAgentCheck && !$session->has('kuma_ua')) {
68
                $session->set('kuma_ua', $this->getUserAgent($request));
69
            }
70
        }
71
    }
72
73
    /**
74
     * @param GetResponseEvent $event
75
     */
76
    public function onKernelRequest(GetResponseEvent $event)
77
    {
78
        if (HttpKernelInterface::MASTER_REQUEST !== $event->getRequestType()) {
79
            return;
80
        }
81
82
        $request = $event->getRequest();
83
        if ($request->hasSession() && $request->getSession()->isStarted()) {
84
            $session = $request->getSession();
85
86
            // Check that the ip matches
87 View Code Duplication
            if ($this->ipCheck && $session->has('kuma_ip') && $session->get('kuma_ip') != $this->getIp($request)) {
0 ignored issues
show
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
88
                $this->logger->error(sprintf(
89
                    "Session ip '%s' does not match with request ip '%s', invalidating the current session",
90
                    $session->get('kuma_ip'),
91
                    $this->getIp($request)
92
                ));
93
                $this->invalidateSession($session, $request);
94
            }
95
96
            // Check that the user agent matches
97 View Code Duplication
            if ($this->userAgentCheck && $session->has('kuma_ua') && $session->get('kuma_ua') != $this->getUserAgent($request)) {
0 ignored issues
show
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
98
                $this->logger->error(sprintf(
99
                    "Session user agent '%s' does not match with request user agent '%s', invalidating the current session",
100
                    $session->get('kuma_ua'),
101
                    $this->getUserAgent($request)
102
                ));
103
                $this->invalidateSession($session, $request);
104
            }
105
        }
106
    }
107
108
    /**
109
     * @param SessionInterface $session
110
     * @param Request          $request
111
     */
112
    private function invalidateSession(SessionInterface $session, Request $request)
113
    {
114
        $session->invalidate();
115
        $session->set('kuma_ip', $this->getIp($request));
116
        $session->set('kuma_ua', $this->getUserAgent($request));
117
    }
118
119
    /**
120
     * @param Request $request
121
     *
122
     * @return string
123
     */
124
    private function getIp(Request $request)
125
    {
126
        if (!$this->ip) {
127
            $forwarded = $request->server->get('HTTP_X_FORWARDED_FOR');
128
            if (strlen($forwarded) > 0) {
129
                $parts = explode(',', $forwarded);
130
                $parts = array_map('trim', $parts);
131
                $parts = array_filter($parts);
132
                if (count($parts) > 0) {
133
                    $ip = $parts[0];
134
                }
135
            }
136
            if (empty($ip)) {
137
                $ip = $request->getClientIp();
138
            }
139
            $this->ip = $ip;
140
        }
141
142
        return $this->ip;
143
    }
144
145
    /**
146
     * @param Request $request
147
     *
148
     * @return array|string
0 ignored issues
show
Consider making the return type a bit more specific; maybe use string|string[].

This check looks for the generic type array as a return type and suggests a more specific type. This type is inferred from the actual code.

Loading history...
149
     */
150
    private function getUserAgent(Request $request)
151
    {
152
        if (!$this->userAgent) {
153
            $this->userAgent = $request->headers->get('User-Agent');
154
        }
155
156
        return $this->userAgent;
157
    }
158
}
159