Passed
Push — master ( 4b954d...b01812 )
by Gabor
03:38
created

Session   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 58
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 4
lcom 1
cbo 1
dl 0
loc 58
ccs 13
cts 13
cp 1
rs 10
c 0
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A setIdentity() 0 9 1
A getIdentity() 0 4 1
A clearIdentity() 0 9 1
1
<?php
2
/**
3
 * WebHemi.
4
 *
5
 * PHP version 5.6
6
 *
7
 * @copyright 2012 - 2016 Gixx-web (http://www.gixx-web.com)
8
 * @license   https://opensource.org/licenses/MIT The MIT License (MIT)
9
 *
10
 * @link      http://www.gixx-web.com
11
 */
12
13
namespace WebHemi\Auth\Storage;
14
15
use WebHemi\Application\SessionManager;
16
use WebHemi\Auth\AuthStorageInterface;
17
use WebHemi\Data\Entity\DataEntityInterface;
18
19
/**
20
 * Class Session
21
 */
22
class Session implements AuthStorageInterface
23
{
24
    /** @var string */
25
    private $sessionKey = '_auth_identity';
26
    /** @var SessionManager */
27
    private $sessionManager;
28
29
    /**
30
     * Session constructor.
31
     *
32
     * @param SessionManager $sessionManager
33
     */
34 1
    public function __construct(SessionManager $sessionManager)
35
    {
36 1
        $this->sessionManager = $sessionManager;
37 1
    }
38
39
    /**
40
     * Sets the authenticated user.
41
     *
42
     * @param DataEntityInterface $dataEntity
43
     * @return Session
44
     */
45 1
    public function setIdentity(DataEntityInterface $dataEntity)
46
    {
47
        // for safety purposes
48 1
        $this->sessionManager->regenerateId();
49
        // set user entity into the session as read-only
50 1
        $this->sessionManager->set($this->sessionKey, $dataEntity, true);
51
52 1
        return $this;
53
    }
54
55
    /**
56
     * Gets the authenticated user.
57
     *
58
     * @return null|DataEntityInterface
59
     */
60 1
    public function getIdentity()
61
    {
62 1
        return $this->sessionManager->get($this->sessionKey);
63
    }
64
65
    /**
66
     * Clears the session.
67
     *
68
     * @return Session
69
     */
70 1
    public function clearIdentity()
71
    {
72
        // force delete read-only data.
73 1
        $this->sessionManager->delete($this->sessionKey, true);
74
        // for safety purposes
75 1
        $this->sessionManager->regenerateId();
76
77 1
        return $this;
78
    }
79
}
80