Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 32
0.00% covered (danger)
0.00%
0 / 5
CRAP
0.00% covered (danger)
0.00%
0 / 1
taoQtiTest_models_classes_import_TestImport
0.00% covered (danger)
0.00%
0 / 32
0.00% covered (danger)
0.00%
0 / 5
72
0.00% covered (danger)
0.00%
0 / 1
 getLabel
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getForm
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 import
0.00% covered (danger)
0.00%
0 / 17
0.00% covered (danger)
0.00%
0 / 1
12
 getTaskParameters
0.00% covered (danger)
0.00%
0 / 11
0.00% covered (danger)
0.00%
0 / 1
6
 getUploadService
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
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) 2013 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
19 *
20 */
21
22use oat\oatbox\event\EventManagerAwareTrait;
23use oat\oatbox\PhpSerializable;
24use oat\oatbox\PhpSerializeStateless;
25use oat\tao\model\featureFlag\FeatureFlagChecker;
26use oat\tao\model\import\ImportHandlerHelperTrait;
27use oat\tao\model\import\TaskParameterProviderInterface;
28use oat\tao\model\upload\UploadService;
29use oat\taoQtiTest\models\classes\metadata\MetadataLomService;
30use oat\taoQtiTest\models\event\QtiTestImportEvent;
31use Zend\ServiceManager\ServiceLocatorAwareInterface;
32use taoQtiTest_models_classes_import_TestImportForm as TestImportForm;
33
34/**
35 * Import handler for QTI packages
36 *
37 * @access  public
38 * @author  Joel Bout, <joel@taotesting.com>
39 * @package taoQTI
40 */
41class taoQtiTest_models_classes_import_TestImport implements
42    tao_models_classes_import_ImportHandler,
43    PhpSerializable,
44    ServiceLocatorAwareInterface,
45    TaskParameterProviderInterface
46{
47    use PhpSerializeStateless;
48    use EventManagerAwareTrait;
49    use ImportHandlerHelperTrait;
50
51    /**
52     * (non-PHPdoc)
53     * @see tao_models_classes_import_ImportHandler::getLabel()
54     */
55    public function getLabel()
56    {
57        return __('QTI/APIP Test Content Package');
58    }
59
60    /**
61     * (non-PHPdoc)
62     * @see tao_models_classes_import_ImportHandler::getForm()
63     */
64    public function getForm()
65    {
66        $form = new taoQtiTest_models_classes_import_TestImportForm();
67
68        return $form->getForm();
69    }
70
71    /**
72     * @param core_kernel_classes_Class   $class
73     * @param tao_helpers_form_Form|array $form
74     * @param string|null $userId owner of the resource
75     * @return common_report_Report
76     */
77    public function import($class, $form, $userId = null)
78    {
79        try {
80            $uploadedFile = $this->fetchUploadedFile($form);
81
82            // The zip extraction is a long process that can exceed the 30s timeout
83            helpers_TimeOutHelper::setTimeOutLimit(helpers_TimeOutHelper::LONG);
84
85            $report = taoQtiTest_models_classes_QtiTestService::singleton()
86                ->importMultipleTests(
87                    $class,
88                    $uploadedFile,
89                    false,
90                    $form[TestImportForm::ITEM_CLASS_DESTINATION_FIELD] ?? null,
91                    $form
92                );
93
94            helpers_TimeOutHelper::reset();
95
96            $this->getUploadService()->remove($uploadedFile);
97
98            if (common_report_Report::TYPE_SUCCESS == $report->getType()) {
99                $this->getEventManager()->trigger(new QtiTestImportEvent($report));
100            }
101
102            return $report;
103        } catch (Exception $e) {
104            return common_report_Report::createFailure($e->getMessage());
105        }
106    }
107    public function getTaskParameters(tao_helpers_form_Form $importForm)
108    {
109        $file = $this->getUploadService()->getUploadedFlyFile($importForm->getValue('importFile')
110            ?: $importForm->getValue('source')['uploaded_file']);
111
112        return [
113            'uploaded_file' => $file->getPrefix(), // because of Async, we need the full path of the uploaded file
114            TestImportForm::METADATA_FORM_ELEMENT_NAME => $importForm->getValue(
115                TestImportForm::METADATA_FORM_ELEMENT_NAME
116            ),
117            TestImportForm::ITEM_CLASS_DESTINATION_FIELD => $importForm->getValue(
118                TestImportForm::ITEM_CLASS_DESTINATION_FIELD
119            )
120        ];
121    }
122    private function getUploadService()
123    {
124        return $this->serviceLocator->get(UploadService::SERVICE_ID);
125    }
126}