Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 13 |
|
0.00% |
0 / 4 |
CRAP | |
0.00% |
0 / 1 |
PortableAssetHandler | |
0.00% |
0 / 13 |
|
0.00% |
0 / 4 |
42 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
2 | |||
isApplicable | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
12 | |||
handle | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
finalize | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
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) 2016 (original work) Open Assessment Technologies SA; |
19 | * |
20 | */ |
21 | |
22 | namespace oat\taoQtiItem\model\qti\asset\handler; |
23 | |
24 | use oat\oatbox\service\ServiceManager; |
25 | use oat\taoQtiItem\model\portableElement\parser\itemParser\PortableElementItemParser; |
26 | use oat\taoQtiItem\model\qti\Item; |
27 | |
28 | class PortableAssetHandler implements AssetHandler |
29 | { |
30 | /** |
31 | * @var PortableElementItemParser |
32 | */ |
33 | protected $portableItemParser; |
34 | |
35 | /** |
36 | * PciAssetHandler constructor. |
37 | * Set PortableElementItemParser |
38 | * |
39 | * @param Item $item |
40 | * @param $sourceDir - root dir where the qti manifest.xml is located |
41 | * @param $itemDir - the dir where the qti item qti.xml file is located |
42 | */ |
43 | public function __construct(Item $item, $sourceDir, $itemDir) |
44 | { |
45 | //how to get manifest dir |
46 | $this->portableItemParser = new PortableElementItemParser(); |
47 | $this->portableItemParser->setServiceLocator(ServiceManager::getServiceManager()); |
48 | $this->portableItemParser->setSource(rtrim($sourceDir, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR); |
49 | $this->portableItemParser->setItemDir(rtrim($itemDir, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR); |
50 | $this->portableItemParser->setQtiModel($item); |
51 | } |
52 | |
53 | /** |
54 | * Check if given file is into pci and required by this pci |
55 | * |
56 | * @param $relativePath |
57 | * @return bool |
58 | */ |
59 | public function isApplicable($relativePath) |
60 | { |
61 | //adapt the file path before comparing them to expected files |
62 | $relativePathAdapted = preg_replace('/^\.\//', '', $relativePath); |
63 | if ( |
64 | $this->portableItemParser->hasPortableElement() |
65 | && $this->portableItemParser->isPortableElementAsset($relativePathAdapted) |
66 | ) { |
67 | return true; |
68 | } |
69 | return false; |
70 | } |
71 | |
72 | /** |
73 | * Handle Pci asset import |
74 | * |
75 | * @param $absolutePath |
76 | * @param $relativePath |
77 | * @return mixed |
78 | */ |
79 | public function handle($absolutePath, $relativePath) |
80 | { |
81 | //adapt the file path before comparing them to expected files |
82 | $relativePathAdapted = preg_replace('/^\.\//', '', $relativePath); |
83 | return $this->portableItemParser->importPortableElementFile($absolutePath, $relativePathAdapted); |
84 | } |
85 | |
86 | /** |
87 | * Finalize portable element asset import |
88 | * |
89 | * @throws \common_Exception |
90 | */ |
91 | public function finalize() |
92 | { |
93 | $this->portableItemParser->importPortableElements(); |
94 | } |
95 | } |