Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
93.33% covered (success)
93.33%
14 / 15
80.00% covered (warning)
80.00%
4 / 5
CRAP
0.00% covered (danger)
0.00%
0 / 1
Lti1p3ContextCacheRepository
93.33% covered (success)
93.33%
14 / 15
80.00% covered (warning)
80.00%
4 / 5
7.01
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 findByDeliveryExecutionId
75.00% covered (warning)
75.00%
3 / 4
0.00% covered (danger)
0.00%
0 / 1
2.06
 findByDeliveryExecution
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
1 / 1
2
 save
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
1
 buildKey
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2023  (original work) Open Assessment Technologies SA;
19 */
20
21declare(strict_types=1);
22
23namespace oat\ltiDeliveryProvider\model\execution\implementation;
24
25use oat\ltiDeliveryProvider\model\execution\LtiContextRepositoryInterface;
26use oat\taoDelivery\model\execution\DeliveryExecutionInterface;
27use oat\taoLti\models\classes\LtiLaunchData;
28use Psr\Cache\CacheItemPoolInterface;
29
30class Lti1p3ContextCacheRepository implements LtiContextRepositoryInterface
31{
32    private CacheItemPoolInterface $cache;
33
34    private const KEY_PREFIX = 'de_lti1p3context_';
35
36    public function __construct(?CacheItemPoolInterface $cache = null)
37    {
38        $this->cache = $cache;
39    }
40
41    public function findByDeliveryExecutionId($deliveryExecutionId): ?LtiLaunchData
42    {
43
44        $item = $this->cache->getItem($this->buildKey($deliveryExecutionId));
45
46        if ($data = $item->get()) {
47            return LtiLaunchData::fromJsonArray(json_decode($data, true));
48        }
49
50        return null;
51    }
52
53    public function findByDeliveryExecution(DeliveryExecutionInterface $deliveryExecution): ?LtiLaunchData
54    {
55
56        $item = $this->cache->getItem($this->buildKey($deliveryExecution->getIdentifier()));
57
58        if ($data = $item->get()) {
59            return LtiLaunchData::fromJsonArray(json_decode($data, true));
60        }
61
62        return null;
63    }
64
65    public function save(LtiLaunchData $ltiLaunchData, DeliveryExecutionInterface $deliveryExecution): void
66    {
67        $key = $this->buildKey($deliveryExecution->getIdentifier());
68        $item = $this->cache->getItem($key);
69
70        $this->cache->save(
71            $item->set(json_encode($ltiLaunchData))
72        );
73    }
74
75    private function buildKey(string $deliveryExecutionId): string
76    {
77        return self::KEY_PREFIX . $deliveryExecutionId;
78    }
79}