Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 11
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
Parser
0.00% covered (danger)
0.00%
0 / 11
0.00% covered (danger)
0.00%
0 / 1
6
0.00% covered (danger)
0.00%
0 / 1
 getJson
0.00% covered (danger)
0.00%
0 / 11
0.00% covered (danger)
0.00%
0 / 1
6
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) 2014 (original work) Open Assessment Technologies SA
19 *
20 */
21
22namespace oat\taoQtiItem\controller;
23
24use tao_actions_CommonModule;
25use common_Exception;
26use oat\taoQtiItem\helpers\Authoring;
27use oat\taoQtiItem\model\qti\Parser as QtiParser;
28
29/**
30 * QtiCreator Controller provide actions to edit a QTI item
31 *
32 * @author CRP Henri Tudor - TAO Team - {@link http://www.tao.lu}
33 * @package taoQtiItem
34
35 * @license GPLv2  http://www.opensource.org/licenses/gpl-2.0.php
36 */
37class Parser extends tao_actions_CommonModule
38{
39    public function getJson()
40    {
41
42        $returnValue = [
43            'itemData' => null
44        ];
45
46        $xml = file_get_contents('php://input');
47        Authoring::validateQtiXml($xml);
48
49        $qtiParser = new QtiParser($xml);
50        $item = $qtiParser->load();
51
52        if (!is_null($item)) {
53            $returnValue['itemData'] = $item->toArray();
54        } else {
55            throw new common_Exception('invalid qti xml');
56        }
57
58        $this->returnJson($returnValue);
59    }
60}