MDL-15476
[moodle-linuxchix.git] / lib / environmentlib.php
blob614fe1342cc36927a99e873abdc93c1c660a16c2
1 <?php //$Id$
3 ///////////////////////////////////////////////////////////////////////////
4 // //
5 // NOTICE OF COPYRIGHT //
6 // //
7 // Moodle - Modular Object-Oriented Dynamic Learning Environment //
8 // http://moodle.com //
9 // //
10 // Copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com //
11 // (C) 2001-3001 Eloy Lafuente (stronk7) http://contiento.com //
12 // //
13 // This program is free software; you can redistribute it and/or modify //
14 // it under the terms of the GNU General Public License as published by //
15 // the Free Software Foundation; either version 2 of the License, or //
16 // (at your option) any later version. //
17 // //
18 // This program is distributed in the hope that it will be useful, //
19 // but WITHOUT ANY WARRANTY; without even the implied warranty of //
20 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
21 // GNU General Public License for more details: //
22 // //
23 // http://www.gnu.org/copyleft/gpl.html //
24 // //
25 ///////////////////////////////////////////////////////////////////////////
27 // This library includes all the necessary stuff to execute some standard
28 // tests of required versions and libraries to run Moodle. It can be
29 // used from the admin interface, and both at install and upgrade.
31 // All the info is stored in the admin/environment.xml file,
32 // supporting to have an updated version in dataroot/environment
34 /// Add required files
35 require_once($CFG->libdir.'/xmlize.php');
37 /// Define a buch of XML processing errors
38 define('NO_ERROR', 0);
39 define('NO_VERSION_DATA_FOUND', 1);
40 define('NO_DATABASE_SECTION_FOUND', 2);
41 define('NO_DATABASE_VENDORS_FOUND', 3);
42 define('NO_DATABASE_VENDOR_MYSQL_FOUND', 4);
43 define('NO_DATABASE_VENDOR_POSTGRES_FOUND', 5);
44 define('NO_PHP_SECTION_FOUND', 6);
45 define('NO_PHP_VERSION_FOUND', 7);
46 define('NO_PHP_EXTENSIONS_SECTION_FOUND', 8);
47 define('NO_PHP_EXTENSIONS_NAME_FOUND', 9);
48 define('NO_DATABASE_VENDOR_VERSION_FOUND', 10);
49 define('NO_UNICODE_SECTION_FOUND', 11);
50 define('NO_CUSTOM_CHECK_FOUND', 12);
51 define('CUSTOM_CHECK_FILE_MISSING', 13);
52 define('CUSTOM_CHECK_FUNCTION_MISSING', 14);
54 /**
55 * This function will perform the whole check, returning
56 * true or false as final result. Also, he full array of
57 * environment_result will be returned in the parameter list.
58 * The function looks for the best version to compare and
59 * everything. This is the only function that should be called
60 * ever from the rest of Moodle.
61 * @param string version version to check.
62 * @param array results array of results checked.
63 * @param boolean true/false, whether to print the table or just return results array
64 * @return boolean true/false, depending of results
66 function check_moodle_environment($version, &$environment_results, $print_table=true) {
68 $status = true;
70 /// This are cached per request
71 static $result = true;
72 static $env_results;
73 static $cache_exists = false;
75 /// if we have results cached, use them
76 if ($cache_exists) {
77 $environment_results = $env_results;
78 /// No cache exists, calculate everything
79 } else {
80 /// Get the more recent version before the requested
81 if (!$version = get_latest_version_available($version)) {
82 $status = false;
85 /// Perform all the checks
86 if (!($environment_results = environment_check($version)) && $status) {
87 $status = false;
90 /// Iterate over all the results looking for some error in required items
91 /// or some error_code
92 if ($status) {
93 foreach ($environment_results as $environment_result) {
94 if (!$environment_result->getStatus() && $environment_result->getLevel() == 'required'
95 && !$environment_result->getBypassStr()) {
96 $result = false; // required item that is not bypased
97 } else if ($environment_result->getStatus() && $environment_result->getLevel() == 'required'
98 && $environment_result->getRestrictStr()) {
99 $result = false; // required item that is restricted
100 } else if ($environment_result->getErrorCode()) {
101 $result = false;
105 /// Going to end, we store environment_results to cache
106 $env_results = $environment_results;
107 $cache_exists = true;
108 } ///End of cache block
110 /// If we have decided to print all the information, just do it
111 if ($print_table) {
112 print_moodle_environment($result && $status, $environment_results);
115 return ($result && $status);
119 * This function will print one beautiful table with all the environmental
120 * configuration and how it suits Moodle needs.
121 * @param boolean final result of the check (true/false)
122 * @param array environment_results array of results gathered
124 function print_moodle_environment($result, $environment_results) {
125 /// Get some strings
126 $strname = get_string('name');
127 $strinfo = get_string('info');
128 $strreport = get_string('report');
129 $strstatus = get_string('status');
130 $strok = get_string('ok');
131 $strerror = get_string('error');
132 $strcheck = get_string('check');
133 $strbypassed = get_string('bypassed');
134 $strrestricted = get_string('restricted');
135 $strenvironmenterrortodo = get_string('environmenterrortodo', 'admin');
136 /// Table headers
137 $servertable = new stdClass;//table for server checks
138 $servertable->head = array ($strname, $strinfo, $strreport, $strstatus);
139 $servertable->align = array ('center', 'center', 'left', 'center');
140 $servertable->wrap = array ('nowrap', '', '', 'nowrap');
141 $servertable->size = array ('10', 10, '100%', '10');
142 $servertable->width = '90%';
143 $servertable->class = 'environmenttable generaltable';
145 $serverdata = array('ok'=>array(), 'warn'=>array(), 'error'=>array());
147 $othertable = new stdClass;//table for custom checks
148 $othertable->head = array ($strinfo, $strreport, $strstatus);
149 $othertable->align = array ('center', 'left', 'center');
150 $othertable->wrap = array ('', '', 'nowrap');
151 $othertable->size = array (10, '100%', '10');
152 $othertable->width = '90%';
153 $othertable->class = 'environmenttable generaltable';
155 $otherdata = array('ok'=>array(), 'warn'=>array(), 'error'=>array());
157 /// Iterate over each environment_result
158 $continue = true;
159 foreach ($environment_results as $environment_result) {
160 $errorline = false;
161 $warningline = false;
162 if ($continue) {
163 $type = $environment_result->getPart();
164 $info = $environment_result->getInfo();
165 $status = $environment_result->getStatus();
166 $error_code = $environment_result->getErrorCode();
167 /// Process Report field
168 $rec = new stdClass();
169 /// Something has gone wrong at parsing time
170 if ($error_code) {
171 $stringtouse = 'environmentxmlerror';
172 $rec->error_code = $error_code;
173 $status = $strerror;
174 $errorline = true;
175 $continue = false;
178 if ($continue) {
179 /// We are comparing versions
180 if ($rec->needed = $environment_result->getNeededVersion()) {
181 $rec->current = $environment_result->getCurrentVersion();
182 if ($environment_result->getLevel() == 'required') {
183 $stringtouse = 'environmentrequireversion';
184 } else {
185 $stringtouse = 'environmentrecommendversion';
187 /// We are checking installed & enabled things
188 } else if ($environment_result->getPart() == 'custom_check') {
189 if ($environment_result->getLevel() == 'required') {
190 $stringtouse = 'environmentrequirecustomcheck';
191 } else {
192 $stringtouse = 'environmentrecommendcustomcheck';
194 } else {
195 if ($environment_result->getLevel() == 'required') {
196 $stringtouse = 'environmentrequireinstall';
197 } else {
198 $stringtouse = 'environmentrecommendinstall';
201 /// Calculate the status value
202 if ($environment_result->getBypassStr() != '') { //Handle bypassed result (warning)
203 $status = $strbypassed;
204 $warningline = true;
205 } else if ($environment_result->getRestrictStr() != '') { //Handle restricted result (error)
206 $status = $strrestricted;
207 $errorline = true;
208 } else {
209 if ($status) { //Handle ok result (ok)
210 $status = $strok;
211 } else {
212 if ($environment_result->getLevel() == 'optional') {//Handle check result (warning)
213 $status = $strcheck;
214 $warningline = true;
215 } else { //Handle error result (error)
216 $status = $strcheck;
217 $errorline = true;
223 /// Build the text
224 $linkparts = array();
225 $linkparts[] = 'admin/environment';
226 $linkparts[] = $type;
227 if (!empty($info)){
228 $linkparts[] = $info;
230 $report = doc_link(join($linkparts, '/'), get_string($stringtouse, 'admin', $rec));
233 /// Format error or warning line
234 if ($errorline || $warningline) {
235 $messagetype = $errorline? 'error':'warn';
236 } else {
237 $messagetype = 'ok';
239 $status = '<span class="'.$messagetype.'">'.$status.'</span>';
240 /// Here we'll store all the feedback found
241 $feedbacktext = '';
242 ///Append the feedback if there is some
243 $feedbacktext .= $environment_result->strToReport($environment_result->getFeedbackStr(), $messagetype);
244 ///Append the bypass if there is some
245 $feedbacktext .= $environment_result->strToReport($environment_result->getBypassStr(), 'warn');
246 ///Append the restrict if there is some
247 $feedbacktext .= $environment_result->strToReport($environment_result->getRestrictStr(), 'error');
249 $report .= $feedbacktext;
250 /// Add the row to the table
252 if ($environment_result->getPart() == 'custom_check'){
253 $otherdata[$messagetype][] = array ($info, $report, $status);
254 } else {
255 $serverdata[$messagetype][] = array ($type, $info, $report, $status);
259 //put errors first in
260 $servertable->data = array_merge($serverdata['error'], $serverdata['warn'], $serverdata['ok']);
261 $othertable->data = array_merge($otherdata['error'], $otherdata['warn'], $otherdata['ok']);
263 /// Print table
264 print_heading(get_string('serverchecks', 'admin'));
265 print_table($servertable);
266 if (count($othertable->data)){
267 print_heading(get_string('customcheck', 'admin'));
268 print_table($othertable);
271 /// Finally, if any error has happened, print the summary box
272 if (!$result) {
273 print_simple_box($strenvironmenterrortodo, 'center', '', '', '', 'environmentbox errorbox');
279 * This function will normalize any version to just a serie of numbers
280 * separated by dots. Everything else will be removed.
281 * @param string $version the original version
282 * @return string the normalized version
284 function normalize_version($version) {
286 /// 1.9 Beta 2 should be read 1.9 on enviromental checks, not 1.9.2
287 /// we can discard everything after the first space
288 $version = trim($version);
289 $versionarr = explode(" ",$version);
290 if (!empty($versionarr)) {
291 $version = $versionarr[0];
293 /// Replace everything but numbers and dots by dots
294 $version = preg_replace('/[^\.\d]/', '.', $version);
295 /// Combine multiple dots in one
296 $version = preg_replace('/(\.{2,})/', '.', $version);
297 /// Trim possible leading and trailing dots
298 $version = trim($version, '.');
300 return $version;
305 * This function will load the environment.xml file and xmlize it
306 * @return mixed the xmlized structure or false on error
308 function load_environment_xml() {
310 global $CFG;
312 static $data; //Only load and xmlize once by request
314 if (!empty($data)) {
315 return $data;
318 /// First of all, take a look inside $CFG->dataroot/environment/environment.xml
319 $file = $CFG->dataroot.'/environment/environment.xml';
320 $internalfile = $CFG->dirroot.'/'.$CFG->admin.'/environment.xml';
321 if (!is_file($file) || !is_readable($file) || filemtime($file) < filemtime($internalfile) ||
322 !$contents = file_get_contents($file)) {
323 /// Fallback to fixed $CFG->admin/environment.xml
324 if (!is_file($internalfile) || !is_readable($internalfile) || !$contents = file_get_contents($internalfile)) {
325 return false;
328 /// XML the whole file
329 $data = xmlize($contents);
331 return $data;
336 * This function will return the list of Moodle versions available
337 * @return mixed array of versions. False on error.
339 function get_list_of_environment_versions ($contents) {
341 static $versions = array();
343 if (!empty($versions)) {
344 return $versions;
347 if (isset($contents['COMPATIBILITY_MATRIX']['#']['MOODLE'])) {
348 foreach ($contents['COMPATIBILITY_MATRIX']['#']['MOODLE'] as $version) {
349 $versions[] = $version['@']['version'];
353 return $versions;
358 * This function will return the most recent version in the environment.xml
359 * file previous or equal to the version requested
360 * @param string version top version from which we start to look backwards
361 * @return string more recent version or false if not found
363 function get_latest_version_available ($version) {
365 /// Normalize the version requested
366 $version = normalize_version($version);
368 /// Load xml file
369 if (!$contents = load_environment_xml()) {
370 return false;
373 /// Detect available versions
374 if (!$versions = get_list_of_environment_versions($contents)) {
375 return false;
377 /// First we look for exact version
378 if (in_array($version, $versions)) {
379 return $version;
380 } else {
381 $found_version = false;
382 /// Not exact match, so we are going to iterate over the list searching
383 /// for the latest version before the requested one
384 foreach ($versions as $arrversion) {
385 if (version_compare($arrversion, $version, '<')) {
386 $found_version = $arrversion;
391 return $found_version;
396 * This function will return the xmlized data belonging to one Moodle version
397 * @return mixed the xmlized structure or false on error
399 function get_environment_for_version($version) {
401 /// Normalize the version requested
402 $version = normalize_version($version);
404 /// Load xml file
405 if (!$contents = load_environment_xml()) {
406 return false;
409 /// Detect available versions
410 if (!$versions = get_list_of_environment_versions($contents)) {
411 return false;
414 /// If the version requested is available
415 if (!in_array($version, $versions)) {
416 return false;
419 /// We now we have it. Extract from full contents.
420 $fl_arr = array_flip($versions);
422 return $contents['COMPATIBILITY_MATRIX']['#']['MOODLE'][$fl_arr[$version]];
427 * This function will check for everything (DB, PHP and PHP extensions for now)
428 * returning an array of environment_result objects.
429 * @param string $version xml version we are going to use to test this server
430 * @return array array of results encapsulated in one environment_result object
432 function environment_check($version) {
434 global $CFG;
436 /// Normalize the version requested
437 $version = normalize_version($version);
439 $results = array(); //To store all the results
441 /// Only run the moodle versions checker on upgrade, not on install
442 if (empty($CFG->running_installer)) {
443 $results[] = environment_check_moodle($version);
445 $results[] = environment_check_unicode($version);
446 $results[] = environment_check_database($version);
447 $results[] = environment_check_php($version);
449 $phpext_results = environment_check_php_extensions($version);
450 $results = array_merge($results, $phpext_results);
452 $custom_results = environment_custom_checks($version);
453 $results = array_merge($results, $custom_results);
455 return $results;
460 * This function will check if php extensions requirements are satisfied
461 * @param string $version xml version we are going to use to test this server
462 * @return array array of results encapsulated in one environment_result object
464 function environment_check_php_extensions($version) {
466 $results = array();
468 /// Get the enviroment version we need
469 if (!$data = get_environment_for_version($version)) {
470 /// Error. No version data found
471 $result = new environment_results('php_extension');
472 $result->setStatus(false);
473 $result->setErrorCode(NO_VERSION_DATA_FOUND);
474 return $result;
477 /// Extract the php_extension part
478 if (!isset($data['#']['PHP_EXTENSIONS']['0']['#']['PHP_EXTENSION'])) {
479 /// Error. No PHP section found
480 $result = new environment_results('php_extension');
481 $result->setStatus(false);
482 $result->setErrorCode(NO_PHP_EXTENSIONS_SECTION_FOUND);
483 return $result;
485 /// Iterate over extensions checking them and creating the needed environment_results
486 foreach($data['#']['PHP_EXTENSIONS']['0']['#']['PHP_EXTENSION'] as $extension) {
487 $result = new environment_results('php_extension');
488 /// Check for level
489 $level = get_level($extension);
490 /// Check for extension name
491 if (!isset($extension['@']['name'])) {
492 $result->setStatus(false);
493 $result->setErrorCode(NO_PHP_EXTENSIONS_NAME_FOUND);
494 } else {
495 $extension_name = $extension['@']['name'];
496 /// The name exists. Just check if it's an installed extension
497 if (!extension_loaded($extension_name)) {
498 $result->setStatus(false);
499 } else {
500 $result->setStatus(true);
502 $result->setLevel($level);
503 $result->setInfo($extension_name);
506 /// Do any actions defined in the XML file.
507 process_environment_result($extension, $result);
509 /// Add the result to the array of results
510 $results[] = $result;
514 return $results;
518 * This function will do the custom checks.
519 * @param string $version xml version we are going to use to test this server.
520 * @return array array of results encapsulated in environment_result objects.
522 function environment_custom_checks($version) {
523 global $CFG;
525 $results = array();
527 /// Get the enviroment version we need
528 if (!$data = get_environment_for_version($version)) {
529 /// Error. No version data found - but this will already have been reported.
530 return $results;
533 /// Extract the CUSTOM_CHECKS part
534 if (!isset($data['#']['CUSTOM_CHECKS']['0']['#']['CUSTOM_CHECK'])) {
535 /// No custom checks found - not a problem
536 return $results;
539 /// Iterate over extensions checking them and creating the needed environment_results
540 foreach($data['#']['CUSTOM_CHECKS']['0']['#']['CUSTOM_CHECK'] as $check) {
541 $result = new environment_results('custom_check');
543 /// Check for level
544 $level = get_level($check);
546 /// Check for extension name
547 if (isset($check['@']['file']) && isset($check['@']['function'])) {
548 $file = $CFG->dirroot . '/' . $check['@']['file'];
549 $function = $check['@']['function'];
550 if (is_readable($file)) {
551 include_once($file);
552 if (function_exists($function)) {
553 $result->setLevel($level);
554 $result->setInfo($function);
555 $result = $function($result);
556 } else {
557 $result->setStatus(false);
558 $result->setErrorCode(CUSTOM_CHECK_FUNCTION_MISSING);
560 } else {
561 $result->setStatus(false);
562 $result->setErrorCode(CUSTOM_CHECK_FILE_MISSING);
564 } else {
565 $result->setStatus(false);
566 $result->setErrorCode(NO_CUSTOM_CHECK_FOUND);
569 if (!is_null($result)) {
570 /// Do any actions defined in the XML file.
571 process_environment_result($check, $result);
573 /// Add the result to the array of results
574 $results[] = $result;
578 return $results;
582 * This function will check if Moodle requirements are satisfied
583 * @param string $version xml version we are going to use to test this server
584 * @return object results encapsulated in one environment_result object
586 function environment_check_moodle($version) {
588 $result = new environment_results('moodle');
590 /// Get the enviroment version we need
591 if (!$data = get_environment_for_version($version)) {
592 /// Error. No version data found
593 $result->setStatus(false);
594 $result->setErrorCode(NO_VERSION_DATA_FOUND);
595 return $result;
598 /// Extract the moodle part
599 if (!isset($data['@']['requires'])) {
600 $needed_version = '1.0'; /// Default to 1.0 if no moodle requires is found
601 } else {
602 /// Extract required moodle version
603 $needed_version = $data['@']['requires'];
606 /// Now search the version we are using
607 $current_version = normalize_version(get_config('', 'release'));
609 /// And finally compare them, saving results
610 if (version_compare($current_version, $needed_version, '>=')) {
611 $result->setStatus(true);
612 } else {
613 $result->setStatus(false);
615 $result->setLevel('required');
616 $result->setCurrentVersion($current_version);
617 $result->setNeededVersion($needed_version);
619 return $result;
623 * This function will check if php requirements are satisfied
624 * @param string $version xml version we are going to use to test this server
625 * @return object results encapsulated in one environment_result object
627 function environment_check_php($version) {
629 $result = new environment_results('php');
631 /// Get the enviroment version we need
632 if (!$data = get_environment_for_version($version)) {
633 /// Error. No version data found
634 $result->setStatus(false);
635 $result->setErrorCode(NO_VERSION_DATA_FOUND);
636 return $result;
639 /// Extract the php part
640 if (!isset($data['#']['PHP'])) {
641 /// Error. No PHP section found
642 $result->setStatus(false);
643 $result->setErrorCode(NO_PHP_SECTION_FOUND);
644 return $result;
645 } else {
646 /// Extract level and version
647 $level = get_level($data['#']['PHP']['0']);
648 if (!isset($data['#']['PHP']['0']['@']['version'])) {
649 $result->setStatus(false);
650 $result->setErrorCode(NO_PHP_VERSION_FOUND);
651 return $result;
652 } else {
653 $needed_version = $data['#']['PHP']['0']['@']['version'];
657 /// Now search the version we are using
658 $current_version = normalize_version(phpversion());
660 /// And finally compare them, saving results
661 if (version_compare($current_version, $needed_version, '>=')) {
662 $result->setStatus(true);
663 } else {
664 $result->setStatus(false);
666 $result->setLevel($level);
667 $result->setCurrentVersion($current_version);
668 $result->setNeededVersion($needed_version);
670 /// Do any actions defined in the XML file.
671 process_environment_result($data['#']['PHP'][0], $result);
673 return $result;
678 * This function will check if unicode database requirements are satisfied
679 * @param string $version xml version we are going to use to test this server
680 * @return object results encapsulated in one environment_result object
682 function environment_check_unicode($version) {
683 global $db;
685 $result = new environment_results('unicode');
687 /// Get the enviroment version we need
688 if (!$data = get_environment_for_version($version)) {
689 /// Error. No version data found
690 $result->setStatus(false);
691 $result->setErrorCode(NO_VERSION_DATA_FOUND);
692 return $result;
695 /// Extract the unicode part
697 if (!isset($data['#']['UNICODE'])) {
698 /// Error. No UNICODE section found
699 $result->setStatus(false);
700 $result->setErrorCode(NO_UNICODE_SECTION_FOUND);
701 return $result;
702 } else {
703 /// Extract level
704 $level = get_level($data['#']['UNICODE']['0']);
707 if (!$unicodedb = setup_is_unicodedb()) {
708 $result->setStatus(false);
709 } else {
710 $result->setStatus(true);
713 $result->setLevel($level);
715 /// Do any actions defined in the XML file.
716 process_environment_result($data['#']['UNICODE'][0], $result);
718 return $result;
722 * This function will check if database requirements are satisfied
723 * @param string $version xml version we are going to use to test this server
724 * @return object results encapsulated in one environment_result object
726 function environment_check_database($version) {
728 global $db;
730 $result = new environment_results('database');
732 $vendors = array(); //Array of vendors in version
734 /// Get the enviroment version we need
735 if (!$data = get_environment_for_version($version)) {
736 /// Error. No version data found
737 $result->setStatus(false);
738 $result->setErrorCode(NO_VERSION_DATA_FOUND);
739 return $result;
742 /// Extract the database part
743 if (!isset($data['#']['DATABASE'])) {
744 /// Error. No DATABASE section found
745 $result->setStatus(false);
746 $result->setErrorCode(NO_DATABASE_SECTION_FOUND);
747 return $result;
748 } else {
749 /// Extract level
750 $level = get_level($data['#']['DATABASE']['0']);
753 /// Extract DB vendors. At least 2 are mandatory (mysql & postgres)
754 if (!isset($data['#']['DATABASE']['0']['#']['VENDOR'])) {
755 /// Error. No VENDORS found
756 $result->setStatus(false);
757 $result->setErrorCode(NO_DATABASE_VENDORS_FOUND);
758 return $result;
759 } else {
760 /// Extract vendors
761 foreach ($data['#']['DATABASE']['0']['#']['VENDOR'] as $vendor) {
762 if (isset($vendor['@']['name']) && isset($vendor['@']['version'])) {
763 $vendors[$vendor['@']['name']] = $vendor['@']['version'];
764 $vendorsxml[$vendor['@']['name']] = $vendor;
768 /// Check we have the mysql vendor version
769 if (empty($vendors['mysql'])) {
770 $result->setStatus(false);
771 $result->setErrorCode(NO_DATABASE_VENDOR_MYSQL_FOUND);
772 return $result;
774 /// Check we have the postgres vendor version
775 if (empty($vendors['postgres'])) {
776 $result->setStatus(false);
777 $result->setErrorCode(NO_DATABASE_VENDOR_POSTGRES_FOUND);
778 return $result;
781 /// Now search the version we are using (depending of vendor)
782 $current_vendor = set_dbfamily();
784 $dbinfo = $db->ServerInfo();
785 $current_version = normalize_version($dbinfo['version']);
786 $needed_version = $vendors[$current_vendor];
788 /// Check we have a needed version
789 if (!$needed_version) {
790 $result->setStatus(false);
791 $result->setErrorCode(NO_DATABASE_VENDOR_VERSION_FOUND);
792 return $result;
795 /// And finally compare them, saving results
796 if (version_compare($current_version, $needed_version, '>=')) {
797 $result->setStatus(true);
798 } else {
799 $result->setStatus(false);
801 $result->setLevel($level);
802 $result->setCurrentVersion($current_version);
803 $result->setNeededVersion($needed_version);
804 $result->setInfo($current_vendor);
806 /// Do any actions defined in the XML file.
807 process_environment_result($vendorsxml[$current_vendor], $result);
809 return $result;
814 * This function will post-process the result record by executing the specified
815 * function, modifying it as necessary, also a custom message will be added
816 * to the result object to be printed by the display layer.
817 * Every bypass function must be defined in this file and it'll return
818 * true/false to decide if the original test is bypassed or no. Also
819 * such bypass functions are able to directly handling the result object
820 * although it should be only under exceptional conditions.
822 * @param string xmldata containing the bypass data
823 * @param object result object to be updated
825 function process_environment_bypass($xml, &$result) {
827 /// Only try to bypass if we were in error and it was required
828 if ($result->getStatus() || $result->getLevel() == 'optional') {
829 return;
832 /// It there is bypass info (function and message)
833 if (is_array($xml['#']) && isset($xml['#']['BYPASS'][0]['@']['function']) && isset($xml['#']['BYPASS'][0]['@']['message'])) {
834 $function = $xml['#']['BYPASS'][0]['@']['function'];
835 $message = $xml['#']['BYPASS'][0]['@']['message'];
836 /// Look for the function
837 if (function_exists($function)) {
838 /// Call it, and if bypass = true is returned, apply meesage
839 if ($function($result)) {
840 /// We only set the bypass message if the function itself hasn't defined it before
841 if (empty($result->getBypassStr)) {
842 $result->setBypassStr($message);
850 * This function will post-process the result record by executing the specified
851 * function, modifying it as necessary, also a custom message will be added
852 * to the result object to be printed by the display layer.
853 * Every restrict function must be defined in this file and it'll return
854 * true/false to decide if the original test is restricted or no. Also
855 * such restrict functions are able to directly handling the result object
856 * although it should be only under exceptional conditions.
858 * @param string xmldata containing the restrict data
859 * @param object result object to be updated
861 function process_environment_restrict($xml, &$result) {
863 /// Only try to restrict if we were not in error and it was required
864 if (!$result->getStatus() || $result->getLevel() == 'optional') {
865 return;
867 /// It there is restrict info (function and message)
868 if (is_array($xml['#']) && isset($xml['#']['RESTRICT'][0]['@']['function']) && isset($xml['#']['RESTRICT'][0]['@']['message'])) {
869 $function = $xml['#']['RESTRICT'][0]['@']['function'];
870 $message = $xml['#']['RESTRICT'][0]['@']['message'];
871 /// Look for the function
872 if (function_exists($function)) {
873 /// Call it, and if restrict = true is returned, apply meesage
874 if ($function($result)) {
875 /// We only set the restrict message if the function itself hasn't defined it before
876 if (empty($result->getRestrictStr)) {
877 $result->setRestrictStr($message);
885 * This function will detect if there is some message available to be added to the
886 * result in order to clarify enviromental details.
887 * @param string xmldata containing the feedback data
888 * @param object reult object to be updated
890 function process_environment_messages($xml, &$result) {
892 /// If there is feedback info
893 if (is_array($xml['#']) && isset($xml['#']['FEEDBACK'][0]['#'])) {
894 $feedbackxml = $xml['#']['FEEDBACK'][0]['#'];
896 if (!$result->status and $result->getLevel() == 'required') {
897 if (isset($feedbackxml['ON_ERROR'][0]['@']['message'])) {
898 $result->setFeedbackStr($feedbackxml['ON_ERROR'][0]['@']['message']);
900 } else if (!$result->status and $result->getLevel() == 'optional') {
901 if (isset($feedbackxml['ON_CHECK'][0]['@']['message'])) {
902 $result->setFeedbackStr($feedbackxml['ON_CHECK'][0]['@']['message']);
904 } else {
905 if (isset($feedbackxml['ON_OK'][0]['@']['message'])) {
906 $result->setFeedbackStr($feedbackxml['ON_OK'][0]['@']['message']);
913 //--- Helper Class to return results to caller ---//
917 * This class is used to return the results of the environment
918 * main functions (environment_check_xxxx)
920 class environment_results {
922 var $part; //which are we checking (database, php, php_extension)
923 var $status; //true/false
924 var $error_code; //integer. See constants at the beginning of the file
925 var $level; //required/optional
926 var $current_version; //current version detected
927 var $needed_version; //version needed
928 var $info; //Aux. info (DB vendor, library...)
929 var $feedback_str; //String to show on error|on check|on ok
930 var $bypass_str; //String to show if some bypass has happened
931 var $restrict_str; //String to show if some restrict has happened
934 * Constructor of the environment_result class. Just set default values
936 function environment_results($part) {
937 $this->part=$part;
938 $this->status=false;
939 $this->error_code=NO_ERROR;
940 $this->level='required';
941 $this->current_version='';
942 $this->needed_version='';
943 $this->info='';
944 $this->feedback_str='';
945 $this->bypass_str='';
946 $this->restrict_str='';
950 * Set the status
951 * @param boolean the status (true/false)
953 function setStatus($status) {
954 $this->status=$status;
955 if ($status) {
956 $this->setErrorCode(NO_ERROR);
961 * Set the error_code
962 * @param integer the error code (see constants above)
964 function setErrorCode($error_code) {
965 $this->error_code=$error_code;
969 * Set the level
970 * @param string the level (required, optional)
972 function setLevel($level) {
973 $this->level=$level;
977 * Set the current version
978 * @param string the current version
980 function setCurrentVersion($current_version) {
981 $this->current_version=$current_version;
985 * Set the needed version
986 * @param string the needed version
988 function setNeededVersion($needed_version) {
989 $this->needed_version=$needed_version;
993 * Set the auxiliary info
994 * @param string the auxiliary info
996 function setInfo($info) {
997 $this->info=$info;
1001 * Set the feedback string
1002 * @param mixed the feedback string that will be fetched from the admin lang file.
1003 * pass just the string or pass an array of params for get_string
1004 * You always should put your string in admin.php but a third param is useful
1005 * to pass an $a object / string to get_string
1007 function setFeedbackStr($str) {
1008 $this->feedback_str=$str;
1013 * Set the bypass string
1014 * @param string the bypass string that will be fetched from the admin lang file.
1015 * pass just the string or pass an array of params for get_string
1016 * You always should put your string in admin.php but a third param is useful
1017 * to pass an $a object / string to get_string
1019 function setBypassStr($str) {
1020 $this->bypass_str=$str;
1024 * Set the restrict string
1025 * @param string the restrict string that will be fetched from the admin lang file.
1026 * pass just the string or pass an array of params for get_string
1027 * You always should put your string in admin.php but a third param is useful
1028 * to pass an $a object / string to get_string
1030 function setRestrictStr($str) {
1031 $this->restrict_str=$str;
1035 * Get the status
1036 * @return boolean result
1038 function getStatus() {
1039 return $this->status;
1043 * Get the error code
1044 * @return integer error code
1046 function getErrorCode() {
1047 return $this->error_code;
1051 * Get the level
1052 * @return string level
1054 function getLevel() {
1055 return $this->level;
1059 * Get the current version
1060 * @return string current version
1062 function getCurrentVersion() {
1063 return $this->current_version;
1067 * Get the needed version
1068 * @return string needed version
1070 function getNeededVersion() {
1071 return $this->needed_version;
1075 * Get the aux info
1076 * @return string info
1078 function getInfo() {
1079 return $this->info;
1083 * Get the part this result belongs to
1084 * @return string part
1086 function getPart() {
1087 return $this->part;
1091 * Get the feedback string
1092 * @return mixed feedback string (can be an array of params for get_string or a single string to fetch from
1093 * admin.php lang file).
1095 function getFeedbackStr() {
1096 return $this->feedback_str;
1100 * Get the bypass string
1101 * @return mixed bypass string (can be an array of params for get_string or a single string to fetch from
1102 * admin.php lang file).
1104 function getBypassStr() {
1105 return $this->bypass_str;
1109 * Get the restrict string
1110 * @return mixed restrict string (can be an array of params for get_string or a single string to fetch from
1111 * admin.php lang file).
1113 function getRestrictStr() {
1114 return $this->restrict_str;
1118 * @param mixed $string params for get_string, either a string to fetch from admin.php or an array of
1119 * params for get_string.
1120 * @param string $class css class(es) for message.
1121 * @return string feedback string fetched from lang file wrapped in p tag with class $class or returns
1122 * empty string if $string is empty.
1124 function strToReport($string, $class){
1125 if (!empty($string)){
1126 if (is_array($string)){
1127 $str = call_user_func_array('get_string', $string);
1128 } else {
1129 $str = get_string($string, 'admin');
1131 return '<p class="'.$class.'">'.$str.'</p>';
1132 } else {
1133 return '';
1138 /// Here all the bypass functions are coded to be used by the environment
1139 /// checker. All those functions will receive the result object and will
1140 /// return it modified as needed (status and bypass string)
1143 * This function will bypass MySQL 4.1.16 reqs if:
1144 * - We are using MySQL > 4.1.12, informing about problems with non latin chars in the future
1146 * @param object result object to handle
1147 * @return boolean true/false to determinate if the bypass has to be performed (true) or no (false)
1149 function bypass_mysql416_reqs ($result) {
1150 /// See if we are running MySQL >= 4.1.12
1151 if (version_compare($result->getCurrentVersion(), '4.1.12', '>=')) {
1152 return true;
1155 return false;
1158 /// Here all the restrict functions are coded to be used by the environment
1159 /// checker. All those functions will receive the result object and will
1160 /// return it modified as needed (status and bypass string)
1163 * This function will restrict PHP reqs if:
1164 * - We are using PHP 5.0.x, informing about the buggy version
1166 * @param object result object to handle
1167 * @return boolean true/false to determinate if the restrict has to be performed (true) or no (false)
1169 function restrict_php50_version($result) {
1170 if (version_compare($result->getCurrentVersion(), '5.0.0', '>=')
1171 and version_compare($result->getCurrentVersion(), '5.0.99', '<')) {
1172 return true;
1174 return false;
1178 * @param array $element the element from the environment.xml file that should have
1179 * either a level="required" or level="optional" attribute.
1180 * @read string "required" or "optional".
1182 function get_level($element) {
1183 $level = 'required';
1184 if (isset($element['@']['level'])) {
1185 $level = $element['@']['level'];
1186 if (!in_array($level, array('required', 'optional'))) {
1187 debugging('The level of a check in the environment.xml file must be "required" or "optional".', DEBUG_DEVELOPER);
1188 $level = 'required';
1190 } else {
1191 debugging('Checks in the environment.xml file must have a level="required" or level="optional" attribute.', DEBUG_DEVELOPER);
1193 return $level;
1197 * Once the result has been determined, look in the XML for any
1198 * messages, or other things that should be done depending on the outcome.
1199 * @param array $element the element from the environment.xml file which
1200 * may have children defining what should be done with the outcome.
1201 * @param object $result the result of the test, which may be modified by
1202 * this function as specified in the XML.
1204 function process_environment_result($element, &$result) {
1205 /// Process messages, modifying the $result if needed.
1206 process_environment_messages($element, $result);
1207 /// Process bypass, modifying $result if needed.
1208 process_environment_bypass($element, $result);
1209 /// Process restrict, modifying $result if needed.
1210 process_environment_restrict($element, $result);