Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
26.67% covered (danger)
26.67%
4 / 15
33.33% covered (danger)
33.33%
1 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
Language
26.67% covered (danger)
26.67%
4 / 15
33.33% covered (danger)
33.33%
1 / 3
14.86
0.00% covered (danger)
0.00%
0 / 1
 validate
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
1 / 1
1
 fix
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
12
 getLanguageMap
0.00% covered (danger)
0.00%
0 / 7
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-2023 (original work) Open Assessment Technologies SA.
19 */
20
21namespace oat\taoQtiItem\model\qti\datatype;
22
23/**
24 * @access public
25 * @author Sam, <sam@taotesting.com>
26 * @package taoQTI
27 */
28class Language extends Datatype
29{
30    public static function validate($value): bool
31    {
32        return preg_match(
33            '/^[a-z]{2}$|^[a-z]{2,3}(?:-[A-Z][a-z]{3})?(?:-[a-zA-Z]{2,3}|-\d{3})(?:(?:-x)?-[a-z\d]{5,8})?$/',
34            $value
35        );
36    }
37
38    public static function fix($value)
39    {
40        $languages = self::getLanguageMap();
41
42        if (isset($languages[$value])) {
43            $value = $languages[$value];
44        }
45
46        return self::validate($value) ? $value : null;
47    }
48
49    private static function getLanguageMap()
50    {
51        return [
52            'EN' => 'en-US',
53            'DE' => 'de-DE',
54            'FR' => 'fr-FR',
55            'ES' => 'es-ES',
56            'ar-arb' => 'ar-ARB',
57        ];
58    }
59}