1<?php 2/** 3 * webtrees: online genealogy 4 * Copyright (C) 2019 webtrees development team 5 * This program is free software: you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License as published by 7 * the Free Software Foundation, either version 3 of the License, or 8 * (at your option) any later version. 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 * You should have received a copy of the GNU General Public License 14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 15 */ 16declare(strict_types=1); 17 18namespace Fisharebest\Webtrees\Services; 19 20use Fisharebest\Webtrees\I18N; 21use Illuminate\Support\Collection; 22use Illuminate\Support\Str; 23use SQLite3; 24use function array_map; 25use function explode; 26use function extension_loaded; 27use function in_array; 28use function strtolower; 29use function sys_get_temp_dir; 30use function trim; 31use function version_compare; 32use const PATH_SEPARATOR; 33use const PHP_MAJOR_VERSION; 34use const PHP_MINOR_VERSION; 35 36/** 37 * Check if the server meets the minimum requirements for webtrees. 38 */ 39class ServerCheckService 40{ 41 private const PHP_SUPPORT_URL = 'https://secure.php.net/supported-versions.php'; 42 private const PHP_MINOR_VERSION = PHP_MAJOR_VERSION . '.' . PHP_MINOR_VERSION; 43 private const PHP_SUPPORT_DATES = [ 44 '7.1' => '2019-12-01', 45 '7.2' => '2020-11-30', 46 '7.3' => '2021-12-06', 47 ]; 48 49 // As required by illuminate/database 5.8 50 private const MINIMUM_SQLITE_VERSION = '3.7.11'; 51 52 /** 53 * Things that may cause webtrees to break. 54 * 55 * @param string $driver 56 * 57 * @return Collection 58 * @return string[] 59 */ 60 public function serverErrors($driver = ''): Collection 61 { 62 $errors = Collection::make([ 63 $this->databaseDriverErrors($driver), 64 $this->checkPhpExtension('mbstring'), 65 $this->checkPhpExtension('iconv'), 66 $this->checkPhpExtension('pcre'), 67 $this->checkPhpExtension('session'), 68 $this->checkPhpExtension('xml'), 69 $this->checkPhpFunction('parse_ini_file'), 70 ]); 71 72 return $errors 73 ->flatten() 74 ->filter(); 75 } 76 77 /** 78 * Things that should be fixed, but which won't stop completely webtrees from running. 79 * 80 * @param string $driver 81 * 82 * @return Collection 83 * @return string[] 84 */ 85 public function serverWarnings($driver = ''): Collection 86 { 87 $warnings = Collection::make([ 88 $this->databaseDriverWarnings($driver), 89 $this->checkPhpExtension('curl'), 90 $this->checkPhpExtension('gd'), 91 $this->checkPhpExtension('simplexml'), 92 $this->checkPhpIni('file_uploads', true), 93 $this->checkSystemTemporaryFolder(), 94 $this->checkPhpVersion(), 95 ]); 96 97 return $warnings 98 ->flatten() 99 ->filter(); 100 } 101 102 /** 103 * Check if a PHP extension is loaded. 104 * 105 * @param string $extension 106 * 107 * @return string 108 */ 109 private function checkPhpExtension(string $extension): string 110 { 111 if (!extension_loaded($extension)) { 112 return I18N::translate('The PHP extension “%s” is not installed.', $extension); 113 } 114 115 return ''; 116 } 117 118 /** 119 * Check if a PHP setting is correct. 120 * 121 * @param string $varname 122 * @param bool $expected 123 * 124 * @return string 125 */ 126 private function checkPhpIni(string $varname, bool $expected): string 127 { 128 $ini_get = (bool) ini_get($varname); 129 130 if ($expected && $ini_get !== $expected) { 131 return I18N::translate('The PHP.INI setting “%1$s” is disabled.', $varname); 132 } 133 134 if (!$expected && $ini_get !== $expected) { 135 return I18N::translate('The PHP.INI setting “%1$s” is enabled.', $varname); 136 } 137 138 return ''; 139 } 140 141 /** 142 * Check if a PHP function is in the list of disabled functions. 143 * 144 * @param string $function 145 * 146 * @return bool 147 */ 148 public function isFunctionDisabled(string $function): bool 149 { 150 $disable_functions = explode(',', ini_get('disable_functions')); 151 $disable_functions = array_map(static function (string $func): string { 152 return strtolower(trim($func)); 153 }, $disable_functions); 154 155 $function = strtolower($function); 156 157 return in_array($function, $disable_functions, true) || !function_exists($function); 158 } 159 160 /** 161 * Create a warning message for a disabled function. 162 * 163 * @param string $function 164 * 165 * @return string 166 */ 167 private function checkPhpFunction(string $function): string 168 { 169 if ($this->isFunctionDisabled($function)) { 170 return I18N::translate('The PHP function “%1$s” is disabled.', $function . '()'); 171 } 172 173 return ''; 174 } 175 176 /** 177 * Some servers configure their temporary folder in an unaccessible place. 178 */ 179 private function checkPhpVersion(): string 180 { 181 $today = date('Y-m-d'); 182 183 foreach (self::PHP_SUPPORT_DATES as $version => $end_date) { 184 if (version_compare(self::PHP_MINOR_VERSION, $version) <= 0 && $today > $end_date) { 185 return I18N::translate('Your web server is using PHP version %s, which is no longer receiving security updates. You should upgrade to a later version as soon as possible.', PHP_VERSION) . ' <a href="' . e(self::PHP_SUPPORT_URL) . '">' . e(self::PHP_SUPPORT_URL) . '</a>'; 186 } 187 } 188 189 return ''; 190 } 191 192 /** 193 * Check the 194 * 195 * @return string 196 */ 197 private function checkSqliteVersion(): string 198 { 199 if (class_exists(SQLite3::class)) { 200 $sqlite_version = SQLite3::version()['versionString']; 201 202 if (version_compare($sqlite_version, self::MINIMUM_SQLITE_VERSION) < 0) { 203 return I18N::translate('SQLite version %s is installed. SQLite version %s or later is required.', $sqlite_version, self::MINIMUM_SQLITE_VERSION); 204 } 205 } 206 207 return ''; 208 } 209 210 /** 211 * Some servers configure their temporary folder in an unaccessible place. 212 */ 213 private function checkSystemTemporaryFolder(): string 214 { 215 $open_basedir = ini_get('open_basedir'); 216 $open_basedirs = explode(PATH_SEPARATOR, $open_basedir); 217 $sys_temp_dir = sys_get_temp_dir(); 218 219 if ($open_basedir === '' || Str::startsWith($sys_temp_dir, $open_basedirs)) { 220 return ''; 221 } 222 223 $message = I18N::translate('The server’s temporary folder cannot be accessed.'); 224 $message .= '<br>sys_get_temp_dir() = "' . e($sys_temp_dir) . '"'; 225 $message .= '<br>ini_get("open_basedir") = "' . e($open_basedir) . '"'; 226 227 return $message; 228 } 229 230 /** 231 * @param string $driver 232 * 233 * @return Collection 234 */ 235 private function databaseDriverErrors(string $driver): Collection 236 { 237 switch ($driver) { 238 case 'mysql': 239 return Collection::make([ 240 $this->checkPhpExtension('pdo'), 241 $this->checkPhpExtension('pdo_mysql'), 242 ]); 243 244 case 'sqlite': 245 return Collection::make([ 246 $this->checkPhpExtension('pdo'), 247 $this->checkPhpExtension('sqlite3'), 248 $this->checkPhpExtension('pdo_sqlite'), 249 $this->checkSqliteVersion(), 250 ]); 251 252 case 'pgsql': 253 return Collection::make([ 254 $this->checkPhpExtension('pdo'), 255 $this->checkPhpExtension('pdo_pgsql'), 256 ]); 257 258 case 'sqlsvr': 259 return Collection::make([ 260 $this->checkPhpExtension('pdo'), 261 $this->checkPhpExtension('pdo_odbc'), 262 ]); 263 264 default: 265 return new Collection(); 266 } 267 } 268 269 /** 270 * @param string $driver 271 * 272 * @return Collection 273 */ 274 private function databaseDriverWarnings(string $driver): Collection 275 { 276 switch ($driver) { 277 case 'sqlite': 278 return new Collection([ 279 I18N::translate('SQLite is only suitable for small sites, testing and evaluation.'), 280 ]); 281 282 case 'pgsql': 283 return new Collection([ 284 I18N::translate('Support for PostgreSQL is experimental.'), 285 ]); 286 287 case 'sqlsvr': 288 return new Collection([ 289 I18N::translate('Support for SQL Server is experimental.'), 290 ]); 291 292 default: 293 return new Collection(); 294 } 295 } 296} 297