Subversion Repositories oidplus

Rev

Rev 723 | Rev 725 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
463 daniel-mar 1
<?php
2
 
3
/*
4
 * OIDplus 2.0
511 daniel-mar 5
 * Copyright 2019 - 2021 Daniel Marschall, ViaThinkSoft
463 daniel-mar 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
 
723 daniel-mar 23
        if (!extension_loaded('standard')) {
24
                $missing_dependencies[] = 'standard';
25
        }
26
 
27
        if (!extension_loaded('Core')) {
28
                $missing_dependencies[] = 'Core';
29
        }
30
 
31
        if (!extension_loaded('SPL')) {
32
                $missing_dependencies[] = 'SPL';
33
        }
34
 
722 daniel-mar 35
        if (!extension_loaded('iconv')) {
36
                // Alpine Linux: apk add php-iconv
37
                $missing_dependencies[] = 'iconv';
38
        }
39
 
40
        if (!extension_loaded('session')) {
41
                // Alpine Linux: apk add php-session
42
                $missing_dependencies[] = 'session';
43
        }
44
 
45
        if (!extension_loaded('json')) {
46
                // Alpine Linux: apk add php-json
47
                $missing_dependencies[] = 'json';
48
        }
49
 
50
        if (!extension_loaded('date')) {
51
                $missing_dependencies[] = 'date';
52
        }
53
 
54
        if (!extension_loaded('filter')) {
55
                $missing_dependencies[] = 'filter';
56
        }
57
 
58
        if (!extension_loaded('hash')) {
59
                $missing_dependencies[] = 'hash';
60
        }
61
 
62
        if (!extension_loaded('pcre')) {
63
                $missing_dependencies[] = 'pcre';
64
        }
65
 
463 daniel-mar 66
        if (!function_exists('gmp_init')) {
67
                // GMP Required for includes/uuid_functions.inc.php
68
                //                  includes/ipv6_functions.inc.php
635 daniel-mar 69
                //                  plugins/viathinksoft/adminPages/400_oidinfo_export/oidinfo_api.inc.php (if GMP is not available, BC will be used)
724 daniel-mar 70
                // Note that vendor/danielmarschall/php_utils/gmp_supplement.inc.php will implement the GMP functions if BCMath is present.
463 daniel-mar 71
                // This is the reason why we use function_exists('gmp_init') instead of extension_loaded('gmp')
72
                if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
73
                        $install_hint1 = _L('On Windows, install it by enabling the line %1 in your PHP.ini',
74
                                'extension=php_gmp.dll');
75
                        $install_hint2 = _L('On Windows, it should be installed by default');
76
                } else {
77
                        $install_hint1 = _L('On Linux, install it by running e.g. %1, and then restart your webserver service, e.g. by running %2',
78
                                '<code>sudo apt-get update && sudo apt-get install php-gmp</code>',
79
                                '<code>sudo service apache2 restart</code>');
80
                        $install_hint2 = _L('On Linux, install it by running e.g. %1, and then restart your webserver service, e.g. by running %2',
81
                                '<code>sudo apt-get update && sudo apt-get install php-bcmath</code>',
82
                                '<code>sudo service apache2 restart</code>');
83
                }
84
                $missing_dependencies[] = 'GMP ('.$install_hint1.')'.
85
                                          '<br>'._L('or alternatively').'<br>' .
86
                                          'BCMath ('.$install_hint2.')';
87
        }
88
 
89
        if (!function_exists('mb_substr')) {
90
                // Required for includes/classes/OIDplusSessionHandler.class.php
91
                //              includes/oid_utils.inc.php
597 daniel-mar 92
                //              vendor/matthiasmullie/path-converter/src/Converter.php
93
                //              vendor/n-other/php-sha3/src/Sha3.php
724 daniel-mar 94
                // Note that vendor/symfony/polyfill-mbstring/ will implement the MBString functions if iconv is present.
467 daniel-mar 95
                // This is the reason why we use function_exists('mb_substr') instead of extension_loaded('mbstring')
463 daniel-mar 96
                if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
467 daniel-mar 97
                        $install_hint1 = _L('On Windows, install it by enabling the line %1 in your PHP.ini',
463 daniel-mar 98
                                'extension=php_mbstring.dll');
467 daniel-mar 99
                        $install_hint2 = _L('On Windows, it should be installed by default');
463 daniel-mar 100
                } else {
467 daniel-mar 101
                        $install_hint1 = _L('On Linux, install it by running e.g. %1, and then restart your webserver service, e.g. by running %2',
463 daniel-mar 102
                                '<code>sudo apt-get update && sudo apt-get install php-mbstring</code>',
103
                                '<code>sudo service apache2 restart</code>');
467 daniel-mar 104
                        $install_hint2 = _L('On Linux, it should be installed by default');
463 daniel-mar 105
                }
467 daniel-mar 106
                $missing_dependencies[] = 'MBString ('.$install_hint1.')'.
107
                                          '<br>'._L('or alternatively').'<br>' .
108
                                          'iconv ('.$install_hint2.')';
463 daniel-mar 109
        }
110
 
111
        if (!function_exists('simplexml_load_file')) {
468 daniel-mar 112
                // Required for includes/classes/OIDplusPluginManifest.class.php (Plugins)
463 daniel-mar 113
                //              includes/classes/OIDplus.class.php (Translation)
635 daniel-mar 114
                //              plugins/viathinksoft/adminPages/400_oidinfo_export/OIDplusPageAdminOIDInfoExport.class.php (Import OID from oid-info.com)
468 daniel-mar 115
                //              dev/translation/*.phps (only for developers)
724 daniel-mar 116
                // Note: This should not happen because of vendor/danielmarschall/php_utils/simplexml_supplement.inc.php
463 daniel-mar 117
                if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
118
                        $install_hint = _L('On Windows, it should be installed by default');
119
                } else {
120
                        $install_hint = _L('On Linux, install it by running e.g. %1, and then restart your webserver service, e.g. by running %2',
121
                                '<code>sudo apt-get update && sudo apt-get install php-xml</code>',
122
                                '<code>sudo service apache2 restart</code>');
123
                }
124
                $missing_dependencies[] = 'SimpleXML ('.$install_hint.')';
125
        }
126
 
127
        return $missing_dependencies;
128
}