Subversion Repositories oidplus

Rev

Rev 467 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
463 daniel-mar 1
<?php
2
 
3
/*
4
 * OIDplus 2.0
5
 * Copyright 2019 Daniel Marschall, ViaThinkSoft
6
 *
7
 * Licensed under the Apache License, Version 2.0 (the "License");
8
 * you may not use this file except in compliance with the License.
9
 * You may obtain a copy of the License at
10
 *
11
 *     http://www.apache.org/licenses/LICENSE-2.0
12
 *
13
 * Unless required by applicable law or agreed to in writing, software
14
 * distributed under the License is distributed on an "AS IS" BASIS,
15
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
 * See the License for the specific language governing permissions and
17
 * limitations under the License.
18
 */
19
 
20
function oidplus_get_missing_dependencies() {
21
        $missing_dependencies = array();
22
 
23
        if (!function_exists('gmp_init')) {
24
                // GMP Required for includes/uuid_functions.inc.php
25
                //                  includes/ipv6_functions.inc.php
26
                //                  plugins/adminPages/400_oidinfo_export/oidinfo_api.inc.php (if GMP is not available, BC will be used)
27
                // Note that gmp_supplement.inc.php will implement the GMP functions if BCMath is present.
28
                // This is the reason why we use function_exists('gmp_init') instead of extension_loaded('gmp')
29
                if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
30
                        $install_hint1 = _L('On Windows, install it by enabling the line %1 in your PHP.ini',
31
                                'extension=php_gmp.dll');
32
                        $install_hint2 = _L('On Windows, it should be installed by default');
33
                } else {
34
                        $install_hint1 = _L('On Linux, install it by running e.g. %1, and then restart your webserver service, e.g. by running %2',
35
                                '<code>sudo apt-get update && sudo apt-get install php-gmp</code>',
36
                                '<code>sudo service apache2 restart</code>');
37
                        $install_hint2 = _L('On Linux, install it by running e.g. %1, and then restart your webserver service, e.g. by running %2',
38
                                '<code>sudo apt-get update && sudo apt-get install php-bcmath</code>',
39
                                '<code>sudo service apache2 restart</code>');
40
                }
41
                $missing_dependencies[] = 'GMP ('.$install_hint1.')'.
42
                                          '<br>'._L('or alternatively').'<br>' .
43
                                          'BCMath ('.$install_hint2.')';
44
        }
45
 
46
        if (!function_exists('mb_substr')) {
47
                // Required for includes/classes/OIDplusSessionHandler.class.php
48
                //              includes/oid_utils.inc.php
49
                //              3p/minify/path-converter/Converter.php
50
                //              3p/0xbb/Sha3.class.php
51
                if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
52
                        $install_hint = _L('On Windows, install it by enabling the line %1 in your PHP.ini',
53
                                'extension=php_mbstring.dll');
54
                } else {
55
                        $install_hint = _L('On Linux, install it by running e.g. %1, and then restart your webserver service, e.g. by running %2',
56
                                '<code>sudo apt-get update && sudo apt-get install php-mbstring</code>',
57
                                '<code>sudo service apache2 restart</code>');
58
                }
59
                $missing_dependencies[] = 'MBString ('.$install_hint.')';
60
        }
61
 
62
        if (!function_exists('simplexml_load_file')) {
63
                // Required for includes/functions.inc.php (Translation)
64
                //              includes/classes/OIDplusPluginManifest.class.php (Plugins)
65
                //              includes/classes/OIDplus.class.php (Translation)
66
                if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
67
                        $install_hint = _L('On Windows, it should be installed by default');
68
                } else {
69
                        $install_hint = _L('On Linux, install it by running e.g. %1, and then restart your webserver service, e.g. by running %2',
70
                                '<code>sudo apt-get update && sudo apt-get install php-xml</code>',
71
                                '<code>sudo service apache2 restart</code>');
72
                }
73
                $missing_dependencies[] = 'SimpleXML ('.$install_hint.')';
74
        }
75
 
76
        return $missing_dependencies;
77
}