Completed
Push — master ( 030b5f...d05431 )
by Vladimir
02:51
created

SessionManager::clear()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 1
dl 0
loc 6
ccs 4
cts 4
cp 1
crap 1
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace FondBot\Conversation;
6
7
use FondBot\Drivers\Chat;
8
use FondBot\Drivers\User;
9
use FondBot\Drivers\Driver;
10
use FondBot\Contracts\Cache;
11
use Psr\Container\ContainerInterface;
12
13
class SessionManager
14
{
15
    private $container;
16
    private $cache;
17
18 4
    public function __construct(ContainerInterface $container, Cache $cache)
19
    {
20 4
        $this->container = $container;
21 4
        $this->cache = $cache;
22 4
    }
23
24
    /**
25
     * Resolve session.
26
     *
27
     * @param string $channel
28
     * @param Driver $driver
29
     *
30
     * @return Session
31
     */
32 1
    public function resolve(string $channel, Driver $driver): Session
33
    {
34 1
        $chat = $driver->getChat();
35 1
        $sender = $driver->getUser();
36 1
        $message = $driver->getMessage();
37 1
        $key = $this->key($channel, $chat, $sender);
38 1
        $value = $this->cache->get($key);
39
40 1
        $intent = $value['intent'] !== null ? $this->container->get($value['intent']) : null;
41 1
        $interaction = $value['interaction'] !== null ? $this->container->get($value['interaction']) : null;
42
43 1
        return new Session(
44
            $channel,
45
            $chat,
46
            $sender,
47
            $message,
48
            $intent,
49
            $interaction,
50 1
            $value['values'] ?? []
51
        );
52
    }
53
54
    /**
55
     * Save session.
56
     *
57
     * @param Session $session
58
     */
59 1
    public function save(Session $session): void
60
    {
61 1
        $key = $this->key($session->getChannel(), $session->getChat(), $session->getUser());
62
63 1
        $this->cache->store($key, $session->toArray());
64 1
    }
65
66
    /**
67
     * Clear session.
68
     *
69
     * @param Session $session
70
     */
71 1
    public function clear(Session $session): void
72
    {
73 1
        $key = $this->key($session->getChannel(), $session->getChat(), $session->getUser());
74
75 1
        $this->cache->forget($key);
76 1
    }
77
78
    /**
79
     * Get key of session.
80
     *
81
     * @param string $channel
82
     * @param Chat   $chat
83
     * @param User   $sender
84
     *
85
     * @return string
86
     */
87 3
    private function key(string $channel, Chat $chat, User $sender): string
88
    {
89 3
        return 'session.'.$channel.'.'.$chat->getId().'.'.$sender->getId();
90
    }
91
}
92