Merge branch 'MDL-38112-24' of git://github.com/danpoltawski/moodle into MOODLE_24_STABLE
[moodle.git] / lib / setuplib.php
blob7495c2460329d22f3babd37d605982bfe39ce887
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle 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.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * These functions are required very early in the Moodle
19 * setup process, before any of the main libraries are
20 * loaded.
22 * @package core
23 * @subpackage lib
24 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 defined('MOODLE_INTERNAL') || die();
30 // Debug levels - always keep the values in ascending order!
31 /** No warnings and errors at all */
32 define('DEBUG_NONE', 0);
33 /** Fatal errors only */
34 define('DEBUG_MINIMAL', E_ERROR | E_PARSE);
35 /** Errors, warnings and notices */
36 define('DEBUG_NORMAL', E_ERROR | E_PARSE | E_WARNING | E_NOTICE);
37 /** All problems except strict PHP warnings */
38 define('DEBUG_ALL', E_ALL & ~E_STRICT);
39 /** DEBUG_ALL with all debug messages and strict warnings */
40 define('DEBUG_DEVELOPER', E_ALL | E_STRICT);
42 /** Remove any memory limits */
43 define('MEMORY_UNLIMITED', -1);
44 /** Standard memory limit for given platform */
45 define('MEMORY_STANDARD', -2);
46 /**
47 * Large memory limit for given platform - used in cron, upgrade, and other places that need a lot of memory.
48 * Can be overridden with $CFG->extramemorylimit setting.
50 define('MEMORY_EXTRA', -3);
51 /** Extremely large memory limit - not recommended for standard scripts */
52 define('MEMORY_HUGE', -4);
54 /**
55 * Software maturity levels used by the core and plugins
57 define('MATURITY_ALPHA', 50); // internals can be tested using white box techniques
58 define('MATURITY_BETA', 100); // feature complete, ready for preview and testing
59 define('MATURITY_RC', 150); // tested, will be released unless there are fatal bugs
60 define('MATURITY_STABLE', 200); // ready for production deployment
62 /**
63 * Special value that can be used in $plugin->dependencies in version.php files.
65 define('ANY_VERSION', 'any');
68 /**
69 * Simple class. It is usually used instead of stdClass because it looks
70 * more familiar to Java developers ;-) Do not use for type checking of
71 * function parameters. Please use stdClass instead.
73 * @package core
74 * @subpackage lib
75 * @copyright 2009 Petr Skoda {@link http://skodak.org}
76 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
77 * @deprecated since 2.0
79 class object extends stdClass {};
81 /**
82 * Base Moodle Exception class
84 * Although this class is defined here, you cannot throw a moodle_exception until
85 * after moodlelib.php has been included (which will happen very soon).
87 * @package core
88 * @subpackage lib
89 * @copyright 2008 Petr Skoda {@link http://skodak.org}
90 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
92 class moodle_exception extends Exception {
94 /**
95 * @var string The name of the string from error.php to print
97 public $errorcode;
99 /**
100 * @var string The name of module
102 public $module;
105 * @var mixed Extra words and phrases that might be required in the error string
107 public $a;
110 * @var string The url where the user will be prompted to continue. If no url is provided the user will be directed to the site index page.
112 public $link;
115 * @var string Optional information to aid the debugging process
117 public $debuginfo;
120 * Constructor
121 * @param string $errorcode The name of the string from error.php to print
122 * @param string $module name of module
123 * @param string $link The url where the user will be prompted to continue. If no url is provided the user will be directed to the site index page.
124 * @param mixed $a Extra words and phrases that might be required in the error string
125 * @param string $debuginfo optional debugging information
127 function __construct($errorcode, $module='', $link='', $a=NULL, $debuginfo=null) {
128 if (empty($module) || $module == 'moodle' || $module == 'core') {
129 $module = 'error';
132 $this->errorcode = $errorcode;
133 $this->module = $module;
134 $this->link = $link;
135 $this->a = $a;
136 $this->debuginfo = is_null($debuginfo) ? null : (string)$debuginfo;
138 if (get_string_manager()->string_exists($errorcode, $module)) {
139 $message = get_string($errorcode, $module, $a);
140 $haserrorstring = true;
141 } else {
142 $message = $module . '/' . $errorcode;
143 $haserrorstring = false;
146 if (defined('PHPUNIT_TEST') and PHPUNIT_TEST and $debuginfo) {
147 $message = "$message ($debuginfo)";
150 if (!$haserrorstring and defined('PHPUNIT_TEST') and PHPUNIT_TEST) {
151 // Append the contents of $a to $debuginfo so helpful information isn't lost.
152 // This emulates what {@link get_exception_info()} does. Unfortunately that
153 // function is not used by phpunit.
154 $message .= PHP_EOL.'$a contents: '.print_r($a, true);
157 parent::__construct($message, 0);
162 * Course/activity access exception.
164 * This exception is thrown from require_login()
166 * @package core_access
167 * @copyright 2010 Petr Skoda {@link http://skodak.org}
168 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
170 class require_login_exception extends moodle_exception {
172 * Constructor
173 * @param string $debuginfo Information to aid the debugging process
175 function __construct($debuginfo) {
176 parent::__construct('requireloginerror', 'error', '', NULL, $debuginfo);
181 * Web service parameter exception class
182 * @deprecated since Moodle 2.2 - use moodle exception instead
183 * This exception must be thrown to the web service client when a web service parameter is invalid
184 * The error string is gotten from webservice.php
186 class webservice_parameter_exception extends moodle_exception {
188 * Constructor
189 * @param string $errorcode The name of the string from webservice.php to print
190 * @param string $a The name of the parameter
191 * @param string $debuginfo Optional information to aid debugging
193 function __construct($errorcode=null, $a = '', $debuginfo = null) {
194 parent::__construct($errorcode, 'webservice', '', $a, $debuginfo);
199 * Exceptions indicating user does not have permissions to do something
200 * and the execution can not continue.
202 * @package core_access
203 * @copyright 2009 Petr Skoda {@link http://skodak.org}
204 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
206 class required_capability_exception extends moodle_exception {
208 * Constructor
209 * @param context $context The context used for the capability check
210 * @param string $capability The required capability
211 * @param string $errormessage The error message to show the user
212 * @param string $stringfile
214 function __construct($context, $capability, $errormessage, $stringfile) {
215 $capabilityname = get_capability_string($capability);
216 if ($context->contextlevel == CONTEXT_MODULE and preg_match('/:view$/', $capability)) {
217 // we can not go to mod/xx/view.php because we most probably do not have cap to view it, let's go to course instead
218 $paranetcontext = context::instance_by_id(get_parent_contextid($context));
219 $link = get_context_url($paranetcontext);
220 } else {
221 $link = get_context_url($context);
223 parent::__construct($errormessage, $stringfile, $link, $capabilityname);
228 * Exception indicating programming error, must be fixed by a programer. For example
229 * a core API might throw this type of exception if a plugin calls it incorrectly.
231 * @package core
232 * @subpackage lib
233 * @copyright 2008 Petr Skoda {@link http://skodak.org}
234 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
236 class coding_exception extends moodle_exception {
238 * Constructor
239 * @param string $hint short description of problem
240 * @param string $debuginfo detailed information how to fix problem
242 function __construct($hint, $debuginfo=null) {
243 parent::__construct('codingerror', 'debug', '', $hint, $debuginfo);
248 * Exception indicating malformed parameter problem.
249 * This exception is not supposed to be thrown when processing
250 * user submitted data in forms. It is more suitable
251 * for WS and other low level stuff.
253 * @package core
254 * @subpackage lib
255 * @copyright 2009 Petr Skoda {@link http://skodak.org}
256 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
258 class invalid_parameter_exception extends moodle_exception {
260 * Constructor
261 * @param string $debuginfo some detailed information
263 function __construct($debuginfo=null) {
264 parent::__construct('invalidparameter', 'debug', '', null, $debuginfo);
269 * Exception indicating malformed response problem.
270 * This exception is not supposed to be thrown when processing
271 * user submitted data in forms. It is more suitable
272 * for WS and other low level stuff.
274 class invalid_response_exception extends moodle_exception {
276 * Constructor
277 * @param string $debuginfo some detailed information
279 function __construct($debuginfo=null) {
280 parent::__construct('invalidresponse', 'debug', '', null, $debuginfo);
285 * An exception that indicates something really weird happened. For example,
286 * if you do switch ($context->contextlevel), and have one case for each
287 * CONTEXT_... constant. You might throw an invalid_state_exception in the
288 * default case, to just in case something really weird is going on, and
289 * $context->contextlevel is invalid - rather than ignoring this possibility.
291 * @package core
292 * @subpackage lib
293 * @copyright 2009 onwards Martin Dougiamas {@link http://moodle.com}
294 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
296 class invalid_state_exception extends moodle_exception {
298 * Constructor
299 * @param string $hint short description of problem
300 * @param string $debuginfo optional more detailed information
302 function __construct($hint, $debuginfo=null) {
303 parent::__construct('invalidstatedetected', 'debug', '', $hint, $debuginfo);
308 * An exception that indicates incorrect permissions in $CFG->dataroot
310 * @package core
311 * @subpackage lib
312 * @copyright 2010 Petr Skoda {@link http://skodak.org}
313 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
315 class invalid_dataroot_permissions extends moodle_exception {
317 * Constructor
318 * @param string $debuginfo optional more detailed information
320 function __construct($debuginfo = NULL) {
321 parent::__construct('invaliddatarootpermissions', 'error', '', NULL, $debuginfo);
326 * An exception that indicates that file can not be served
328 * @package core
329 * @subpackage lib
330 * @copyright 2010 Petr Skoda {@link http://skodak.org}
331 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
333 class file_serving_exception extends moodle_exception {
335 * Constructor
336 * @param string $debuginfo optional more detailed information
338 function __construct($debuginfo = NULL) {
339 parent::__construct('cannotservefile', 'error', '', NULL, $debuginfo);
344 * Default exception handler, uncaught exceptions are equivalent to error() in 1.9 and earlier
346 * @param Exception $ex
347 * @return void -does not return. Terminates execution!
349 function default_exception_handler($ex) {
350 global $CFG, $DB, $OUTPUT, $USER, $FULLME, $SESSION, $PAGE;
352 // detect active db transactions, rollback and log as error
353 abort_all_db_transactions();
355 if (($ex instanceof required_capability_exception) && !CLI_SCRIPT && !AJAX_SCRIPT && !empty($CFG->autologinguests) && !empty($USER->autologinguest)) {
356 $SESSION->wantsurl = qualified_me();
357 redirect(get_login_url());
360 $info = get_exception_info($ex);
362 if (debugging('', DEBUG_MINIMAL)) {
363 $logerrmsg = "Default exception handler: ".$info->message.' Debug: '.$info->debuginfo."\n".format_backtrace($info->backtrace, true);
364 error_log($logerrmsg);
367 if (is_early_init($info->backtrace)) {
368 echo bootstrap_renderer::early_error($info->message, $info->moreinfourl, $info->link, $info->backtrace, $info->debuginfo, $info->errorcode);
369 } else {
370 try {
371 if ($DB) {
372 // If you enable db debugging and exception is thrown, the print footer prints a lot of rubbish
373 $DB->set_debug(0);
375 echo $OUTPUT->fatal_error($info->message, $info->moreinfourl, $info->link, $info->backtrace, $info->debuginfo);
376 } catch (Exception $out_ex) {
377 // default exception handler MUST not throw any exceptions!!
378 // the problem here is we do not know if page already started or not, we only know that somebody messed up in outputlib or theme
379 // so we just print at least something instead of "Exception thrown without a stack frame in Unknown on line 0":-(
380 if (CLI_SCRIPT or AJAX_SCRIPT) {
381 // just ignore the error and send something back using the safest method
382 echo bootstrap_renderer::early_error($info->message, $info->moreinfourl, $info->link, $info->backtrace, $info->debuginfo, $info->errorcode);
383 } else {
384 echo bootstrap_renderer::early_error_content($info->message, $info->moreinfourl, $info->link, $info->backtrace, $info->debuginfo);
385 $outinfo = get_exception_info($out_ex);
386 echo bootstrap_renderer::early_error_content($outinfo->message, $outinfo->moreinfourl, $outinfo->link, $outinfo->backtrace, $outinfo->debuginfo);
391 exit(1); // General error code
395 * Default error handler, prevents some white screens.
396 * @param int $errno
397 * @param string $errstr
398 * @param string $errfile
399 * @param int $errline
400 * @param array $errcontext
401 * @return bool false means use default error handler
403 function default_error_handler($errno, $errstr, $errfile, $errline, $errcontext) {
404 if ($errno == 4096) {
405 //fatal catchable error
406 throw new coding_exception('PHP catchable fatal error', $errstr);
408 return false;
412 * Unconditionally abort all database transactions, this function
413 * should be called from exception handlers only.
414 * @return void
416 function abort_all_db_transactions() {
417 global $CFG, $DB, $SCRIPT;
419 // default exception handler MUST not throw any exceptions!!
421 if ($DB && $DB->is_transaction_started()) {
422 error_log('Database transaction aborted automatically in ' . $CFG->dirroot . $SCRIPT);
423 // note: transaction blocks should never change current $_SESSION
424 $DB->force_transaction_rollback();
429 * This function encapsulates the tests for whether an exception was thrown in
430 * early init -- either during setup.php or during init of $OUTPUT.
432 * If another exception is thrown then, and if we do not take special measures,
433 * we would just get a very cryptic message "Exception thrown without a stack
434 * frame in Unknown on line 0". That makes debugging very hard, so we do take
435 * special measures in default_exception_handler, with the help of this function.
437 * @param array $backtrace the stack trace to analyse.
438 * @return boolean whether the stack trace is somewhere in output initialisation.
440 function is_early_init($backtrace) {
441 $dangerouscode = array(
442 array('function' => 'header', 'type' => '->'),
443 array('class' => 'bootstrap_renderer'),
444 array('file' => dirname(__FILE__).'/setup.php'),
446 foreach ($backtrace as $stackframe) {
447 foreach ($dangerouscode as $pattern) {
448 $matches = true;
449 foreach ($pattern as $property => $value) {
450 if (!isset($stackframe[$property]) || $stackframe[$property] != $value) {
451 $matches = false;
454 if ($matches) {
455 return true;
459 return false;
463 * Abort execution by throwing of a general exception,
464 * default exception handler displays the error message in most cases.
466 * @param string $errorcode The name of the language string containing the error message.
467 * Normally this should be in the error.php lang file.
468 * @param string $module The language file to get the error message from.
469 * @param string $link The url where the user will be prompted to continue.
470 * If no url is provided the user will be directed to the site index page.
471 * @param object $a Extra words and phrases that might be required in the error string
472 * @param string $debuginfo optional debugging information
473 * @return void, always throws exception!
475 function print_error($errorcode, $module = 'error', $link = '', $a = null, $debuginfo = null) {
476 throw new moodle_exception($errorcode, $module, $link, $a, $debuginfo);
480 * Returns detailed information about specified exception.
481 * @param exception $ex
482 * @return object
484 function get_exception_info($ex) {
485 global $CFG, $DB, $SESSION;
487 if ($ex instanceof moodle_exception) {
488 $errorcode = $ex->errorcode;
489 $module = $ex->module;
490 $a = $ex->a;
491 $link = $ex->link;
492 $debuginfo = $ex->debuginfo;
493 } else {
494 $errorcode = 'generalexceptionmessage';
495 $module = 'error';
496 $a = $ex->getMessage();
497 $link = '';
498 $debuginfo = '';
501 // Append the error code to the debug info to make grepping and googling easier
502 $debuginfo .= PHP_EOL."Error code: $errorcode";
504 $backtrace = $ex->getTrace();
505 $place = array('file'=>$ex->getFile(), 'line'=>$ex->getLine(), 'exception'=>get_class($ex));
506 array_unshift($backtrace, $place);
508 // Be careful, no guarantee moodlelib.php is loaded.
509 if (empty($module) || $module == 'moodle' || $module == 'core') {
510 $module = 'error';
512 // Search for the $errorcode's associated string
513 // If not found, append the contents of $a to $debuginfo so helpful information isn't lost
514 if (function_exists('get_string_manager')) {
515 if (get_string_manager()->string_exists($errorcode, $module)) {
516 $message = get_string($errorcode, $module, $a);
517 } elseif ($module == 'error' && get_string_manager()->string_exists($errorcode, 'moodle')) {
518 // Search in moodle file if error specified - needed for backwards compatibility
519 $message = get_string($errorcode, 'moodle', $a);
520 } else {
521 $message = $module . '/' . $errorcode;
522 $debuginfo .= PHP_EOL.'$a contents: '.print_r($a, true);
524 } else {
525 $message = $module . '/' . $errorcode;
526 $debuginfo .= PHP_EOL.'$a contents: '.print_r($a, true);
529 // Remove some absolute paths from message and debugging info.
530 $searches = array();
531 $replaces = array();
532 $cfgnames = array('tempdir', 'cachedir', 'themedir',
533 'langmenucachefile', 'langcacheroot', 'dataroot', 'dirroot');
534 foreach ($cfgnames as $cfgname) {
535 if (property_exists($CFG, $cfgname)) {
536 $searches[] = $CFG->$cfgname;
537 $replaces[] = "[$cfgname]";
540 if (!empty($searches)) {
541 $message = str_replace($searches, $replaces, $message);
542 $debuginfo = str_replace($searches, $replaces, $debuginfo);
545 // Be careful, no guarantee weblib.php is loaded.
546 if (function_exists('clean_text')) {
547 $message = clean_text($message);
548 } else {
549 $message = htmlspecialchars($message);
552 if (!empty($CFG->errordocroot)) {
553 $errordoclink = $CFG->errordocroot . '/en/';
554 } else {
555 $errordoclink = get_docs_url();
558 if ($module === 'error') {
559 $modulelink = 'moodle';
560 } else {
561 $modulelink = $module;
563 $moreinfourl = $errordoclink . 'error/' . $modulelink . '/' . $errorcode;
565 if (empty($link)) {
566 if (!empty($SESSION->fromurl)) {
567 $link = $SESSION->fromurl;
568 unset($SESSION->fromurl);
569 } else {
570 $link = $CFG->wwwroot .'/';
574 // when printing an error the continue button should never link offsite
575 if (stripos($link, $CFG->wwwroot) === false &&
576 stripos($link, $CFG->httpswwwroot) === false) {
577 $link = $CFG->wwwroot.'/';
580 $info = new stdClass();
581 $info->message = $message;
582 $info->errorcode = $errorcode;
583 $info->backtrace = $backtrace;
584 $info->link = $link;
585 $info->moreinfourl = $moreinfourl;
586 $info->a = $a;
587 $info->debuginfo = $debuginfo;
589 return $info;
593 * Returns the Moodle Docs URL in the users language for a given 'More help' link.
595 * There are three cases:
597 * 1. In the normal case, $path will be a short relative path 'component/thing',
598 * like 'mod/folder/view' 'group/import'. This gets turned into an link to
599 * MoodleDocs in the user's language, and for the appropriate Moodle version.
600 * E.g. 'group/import' may become 'http://docs.moodle.org/2x/en/group/import'.
601 * The 'http://docs.moodle.org' bit comes from $CFG->docroot.
603 * This is the only option that should be used in standard Moodle code. The other
604 * two options have been implemented because they are useful for third-party plugins.
606 * 2. $path may be an absolute URL, starting http:// or https://. In this case,
607 * the link is used as is.
609 * 3. $path may start %%WWWROOT%%, in which case that is replaced by
610 * $CFG->wwwroot to make the link.
612 * @param string $path the place to link to. See above for details.
613 * @return string The MoodleDocs URL in the user's language. for example @link http://docs.moodle.org/2x/en/$path}
615 function get_docs_url($path = null) {
616 global $CFG;
618 // Absolute URLs are used unmodified.
619 if (substr($path, 0, 7) === 'http://' || substr($path, 0, 8) === 'https://') {
620 return $path;
623 // Paths starting %%WWWROOT%% have that replaced by $CFG->wwwroot.
624 if (substr($path, 0, 11) === '%%WWWROOT%%') {
625 return $CFG->wwwroot . substr($path, 11);
628 // Otherwise we do the normal case, and construct a MoodleDocs URL relative to $CFG->docroot.
630 // Check that $CFG->branch has been set up, during installation it won't be.
631 if (empty($CFG->branch)) {
632 // It's not there yet so look at version.php.
633 include($CFG->dirroot.'/version.php');
634 } else {
635 // We can use $CFG->branch and avoid having to include version.php.
636 $branch = $CFG->branch;
638 // ensure branch is valid.
639 if (!$branch) {
640 // We should never get here but in case we do lets set $branch to .
641 // the smart one's will know that this is the current directory
642 // and the smarter ones will know that there is some smart matching
643 // that will ensure people end up at the latest version of the docs.
644 $branch = '.';
646 if (!empty($CFG->docroot)) {
647 return $CFG->docroot . '/' . $branch . '/' . current_language() . '/' . $path;
648 } else {
649 return 'http://docs.moodle.org/'. $branch . '/' . current_language() . '/' . $path;
654 * Formats a backtrace ready for output.
656 * @param array $callers backtrace array, as returned by debug_backtrace().
657 * @param boolean $plaintext if false, generates HTML, if true generates plain text.
658 * @return string formatted backtrace, ready for output.
660 function format_backtrace($callers, $plaintext = false) {
661 // do not use $CFG->dirroot because it might not be available in destructors
662 $dirroot = dirname(dirname(__FILE__));
664 if (empty($callers)) {
665 return '';
668 $from = $plaintext ? '' : '<ul style="text-align: left">';
669 foreach ($callers as $caller) {
670 if (!isset($caller['line'])) {
671 $caller['line'] = '?'; // probably call_user_func()
673 if (!isset($caller['file'])) {
674 $caller['file'] = 'unknownfile'; // probably call_user_func()
676 $from .= $plaintext ? '* ' : '<li>';
677 $from .= 'line ' . $caller['line'] . ' of ' . str_replace($dirroot, '', $caller['file']);
678 if (isset($caller['function'])) {
679 $from .= ': call to ';
680 if (isset($caller['class'])) {
681 $from .= $caller['class'] . $caller['type'];
683 $from .= $caller['function'] . '()';
684 } else if (isset($caller['exception'])) {
685 $from .= ': '.$caller['exception'].' thrown';
687 $from .= $plaintext ? "\n" : '</li>';
689 $from .= $plaintext ? '' : '</ul>';
691 return $from;
695 * This function makes the return value of ini_get consistent if you are
696 * setting server directives through the .htaccess file in apache.
698 * Current behavior for value set from php.ini On = 1, Off = [blank]
699 * Current behavior for value set from .htaccess On = On, Off = Off
700 * Contributed by jdell @ unr.edu
702 * @param string $ini_get_arg The argument to get
703 * @return bool True for on false for not
705 function ini_get_bool($ini_get_arg) {
706 $temp = ini_get($ini_get_arg);
708 if ($temp == '1' or strtolower($temp) == 'on') {
709 return true;
711 return false;
715 * This function verifies the sanity of PHP configuration
716 * and stops execution if anything critical found.
718 function setup_validate_php_configuration() {
719 // this must be very fast - no slow checks here!!!
721 if (ini_get_bool('register_globals')) {
722 print_error('globalswarning', 'admin');
724 if (ini_get_bool('session.auto_start')) {
725 print_error('sessionautostartwarning', 'admin');
727 if (ini_get_bool('magic_quotes_runtime')) {
728 print_error('fatalmagicquotesruntime', 'admin');
733 * Initialise global $CFG variable
734 * @return void
736 function initialise_cfg() {
737 global $CFG, $DB;
739 try {
740 if ($DB) {
741 $localcfg = $DB->get_records_menu('config', array(), '', 'name,value');
742 foreach ($localcfg as $name=>$value) {
743 if (property_exists($CFG, $name)) {
744 // config.php settings always take precedence
745 continue;
747 $CFG->{$name} = $value;
750 } catch (dml_exception $e) {
751 // most probably empty db, going to install soon
756 * Initialises $FULLME and friends. Private function. Should only be called from
757 * setup.php.
759 function initialise_fullme() {
760 global $CFG, $FULLME, $ME, $SCRIPT, $FULLSCRIPT;
762 // Detect common config error.
763 if (substr($CFG->wwwroot, -1) == '/') {
764 print_error('wwwrootslash', 'error');
767 if (CLI_SCRIPT) {
768 initialise_fullme_cli();
769 return;
772 $rurl = setup_get_remote_url();
773 $wwwroot = parse_url($CFG->wwwroot.'/');
775 if (empty($rurl['host'])) {
776 // missing host in request header, probably not a real browser, let's ignore them
778 } else if (!empty($CFG->reverseproxy)) {
779 // $CFG->reverseproxy specifies if reverse proxy server used
780 // Used in load balancing scenarios.
781 // Do not abuse this to try to solve lan/wan access problems!!!!!
783 } else {
784 if (($rurl['host'] !== $wwwroot['host']) or (!empty($wwwroot['port']) and $rurl['port'] != $wwwroot['port'])) {
785 // Explain the problem and redirect them to the right URL
786 if (!defined('NO_MOODLE_COOKIES')) {
787 define('NO_MOODLE_COOKIES', true);
789 // The login/token.php script should call the correct url/port.
790 if (defined('REQUIRE_CORRECT_ACCESS') && REQUIRE_CORRECT_ACCESS) {
791 $wwwrootport = empty($wwwroot['port'])?'':$wwwroot['port'];
792 $calledurl = $rurl['host'];
793 if (!empty($rurl['port'])) {
794 $calledurl .= ':'. $rurl['port'];
796 $correcturl = $wwwroot['host'];
797 if (!empty($wwwrootport)) {
798 $correcturl .= ':'. $wwwrootport;
800 throw new moodle_exception('requirecorrectaccess', 'error', '', null,
801 'You called ' . $calledurl .', you should have called ' . $correcturl);
803 redirect($CFG->wwwroot, get_string('wwwrootmismatch', 'error', $CFG->wwwroot), 3);
807 // Check that URL is under $CFG->wwwroot.
808 if (strpos($rurl['path'], $wwwroot['path']) === 0) {
809 $SCRIPT = substr($rurl['path'], strlen($wwwroot['path'])-1);
810 } else {
811 // Probably some weird external script
812 $SCRIPT = $FULLSCRIPT = $FULLME = $ME = null;
813 return;
816 // $CFG->sslproxy specifies if external SSL appliance is used
817 // (That is, the Moodle server uses http, with an external box translating everything to https).
818 if (empty($CFG->sslproxy)) {
819 if ($rurl['scheme'] === 'http' and $wwwroot['scheme'] === 'https') {
820 print_error('sslonlyaccess', 'error');
822 } else {
823 if ($wwwroot['scheme'] !== 'https') {
824 throw new coding_exception('Must use https address in wwwroot when ssl proxy enabled!');
826 $rurl['scheme'] = 'https'; // make moodle believe it runs on https, squid or something else it doing it
829 // hopefully this will stop all those "clever" admins trying to set up moodle
830 // with two different addresses in intranet and Internet
831 if (!empty($CFG->reverseproxy) && $rurl['host'] === $wwwroot['host']) {
832 print_error('reverseproxyabused', 'error');
835 $hostandport = $rurl['scheme'] . '://' . $wwwroot['host'];
836 if (!empty($wwwroot['port'])) {
837 $hostandport .= ':'.$wwwroot['port'];
840 $FULLSCRIPT = $hostandport . $rurl['path'];
841 $FULLME = $hostandport . $rurl['fullpath'];
842 $ME = $rurl['fullpath'];
846 * Initialises $FULLME and friends for command line scripts.
847 * This is a private method for use by initialise_fullme.
849 function initialise_fullme_cli() {
850 global $CFG, $FULLME, $ME, $SCRIPT, $FULLSCRIPT;
852 // Urls do not make much sense in CLI scripts
853 $backtrace = debug_backtrace();
854 $topfile = array_pop($backtrace);
855 $topfile = realpath($topfile['file']);
856 $dirroot = realpath($CFG->dirroot);
858 if (strpos($topfile, $dirroot) !== 0) {
859 // Probably some weird external script
860 $SCRIPT = $FULLSCRIPT = $FULLME = $ME = null;
861 } else {
862 $relativefile = substr($topfile, strlen($dirroot));
863 $relativefile = str_replace('\\', '/', $relativefile); // Win fix
864 $SCRIPT = $FULLSCRIPT = $relativefile;
865 $FULLME = $ME = null;
870 * Get the URL that PHP/the web server thinks it is serving. Private function
871 * used by initialise_fullme. In your code, use $PAGE->url, $SCRIPT, etc.
872 * @return array in the same format that parse_url returns, with the addition of
873 * a 'fullpath' element, which includes any slasharguments path.
875 function setup_get_remote_url() {
876 $rurl = array();
877 if (isset($_SERVER['HTTP_HOST'])) {
878 list($rurl['host']) = explode(':', $_SERVER['HTTP_HOST']);
879 } else {
880 $rurl['host'] = null;
882 $rurl['port'] = $_SERVER['SERVER_PORT'];
883 $rurl['path'] = $_SERVER['SCRIPT_NAME']; // Script path without slash arguments
884 $rurl['scheme'] = (empty($_SERVER['HTTPS']) or $_SERVER['HTTPS'] === 'off' or $_SERVER['HTTPS'] === 'Off' or $_SERVER['HTTPS'] === 'OFF') ? 'http' : 'https';
886 if (stripos($_SERVER['SERVER_SOFTWARE'], 'apache') !== false) {
887 //Apache server
888 $rurl['fullpath'] = $_SERVER['REQUEST_URI'];
890 } else if (stripos($_SERVER['SERVER_SOFTWARE'], 'iis') !== false) {
891 //IIS - needs a lot of tweaking to make it work
892 $rurl['fullpath'] = $_SERVER['SCRIPT_NAME'];
894 // NOTE: ignore PATH_INFO because it is incorrectly encoded using 8bit filesystem legacy encoding in IIS
895 // since 2.0 we rely on iis rewrite extenssion like Helicon ISAPI_rewrite
896 // example rule: RewriteRule ^([^\?]+?\.php)(\/.+)$ $1\?file=$2 [QSA]
898 if ($_SERVER['QUERY_STRING'] != '') {
899 $rurl['fullpath'] .= '?'.$_SERVER['QUERY_STRING'];
901 $_SERVER['REQUEST_URI'] = $rurl['fullpath']; // extra IIS compatibility
903 /* NOTE: following servers are not fully tested! */
905 } else if (stripos($_SERVER['SERVER_SOFTWARE'], 'lighttpd') !== false) {
906 //lighttpd - not officially supported
907 $rurl['fullpath'] = $_SERVER['REQUEST_URI']; // TODO: verify this is always properly encoded
909 } else if (stripos($_SERVER['SERVER_SOFTWARE'], 'nginx') !== false) {
910 //nginx - not officially supported
911 if (!isset($_SERVER['SCRIPT_NAME'])) {
912 die('Invalid server configuration detected, please try to add "fastcgi_param SCRIPT_NAME $fastcgi_script_name;" to the nginx server configuration.');
914 $rurl['fullpath'] = $_SERVER['REQUEST_URI']; // TODO: verify this is always properly encoded
916 } else if (stripos($_SERVER['SERVER_SOFTWARE'], 'cherokee') !== false) {
917 //cherokee - not officially supported
918 $rurl['fullpath'] = $_SERVER['REQUEST_URI']; // TODO: verify this is always properly encoded
920 } else if (stripos($_SERVER['SERVER_SOFTWARE'], 'zeus') !== false) {
921 //zeus - not officially supported
922 $rurl['fullpath'] = $_SERVER['REQUEST_URI']; // TODO: verify this is always properly encoded
924 } else if (stripos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false) {
925 //LiteSpeed - not officially supported
926 $rurl['fullpath'] = $_SERVER['REQUEST_URI']; // TODO: verify this is always properly encoded
928 } else if ($_SERVER['SERVER_SOFTWARE'] === 'HTTPD') {
929 //obscure name found on some servers - this is definitely not supported
930 $rurl['fullpath'] = $_SERVER['REQUEST_URI']; // TODO: verify this is always properly encoded
932 } else if (strpos($_SERVER['SERVER_SOFTWARE'], 'PHP') === 0) {
933 // built-in PHP Development Server
934 $rurl['fullpath'] = $_SERVER['REQUEST_URI'];
936 } else {
937 throw new moodle_exception('unsupportedwebserver', 'error', '', $_SERVER['SERVER_SOFTWARE']);
940 // sanitize the url a bit more, the encoding style may be different in vars above
941 $rurl['fullpath'] = str_replace('"', '%22', $rurl['fullpath']);
942 $rurl['fullpath'] = str_replace('\'', '%27', $rurl['fullpath']);
944 return $rurl;
948 * Initializes our performance info early.
950 * Pairs up with get_performance_info() which is actually
951 * in moodlelib.php. This function is here so that we can
952 * call it before all the libs are pulled in.
954 * @uses $PERF
956 function init_performance_info() {
958 global $PERF, $CFG, $USER;
960 $PERF = new stdClass();
961 $PERF->logwrites = 0;
962 if (function_exists('microtime')) {
963 $PERF->starttime = microtime();
965 if (function_exists('memory_get_usage')) {
966 $PERF->startmemory = memory_get_usage();
968 if (function_exists('posix_times')) {
969 $PERF->startposixtimes = posix_times();
974 * Indicates whether we are in the middle of the initial Moodle install.
976 * Very occasionally it is necessary avoid running certain bits of code before the
977 * Moodle installation has completed. The installed flag is set in admin/index.php
978 * after Moodle core and all the plugins have been installed, but just before
979 * the person doing the initial install is asked to choose the admin password.
981 * @return boolean true if the initial install is not complete.
983 function during_initial_install() {
984 global $CFG;
985 return empty($CFG->rolesactive);
989 * Function to raise the memory limit to a new value.
990 * Will respect the memory limit if it is higher, thus allowing
991 * settings in php.ini, apache conf or command line switches
992 * to override it.
994 * The memory limit should be expressed with a constant
995 * MEMORY_STANDARD, MEMORY_EXTRA or MEMORY_HUGE.
996 * It is possible to use strings or integers too (eg:'128M').
998 * @param mixed $newlimit the new memory limit
999 * @return bool success
1001 function raise_memory_limit($newlimit) {
1002 global $CFG;
1004 if ($newlimit == MEMORY_UNLIMITED) {
1005 ini_set('memory_limit', -1);
1006 return true;
1008 } else if ($newlimit == MEMORY_STANDARD) {
1009 if (PHP_INT_SIZE > 4) {
1010 $newlimit = get_real_size('128M'); // 64bit needs more memory
1011 } else {
1012 $newlimit = get_real_size('96M');
1015 } else if ($newlimit == MEMORY_EXTRA) {
1016 if (PHP_INT_SIZE > 4) {
1017 $newlimit = get_real_size('384M'); // 64bit needs more memory
1018 } else {
1019 $newlimit = get_real_size('256M');
1021 if (!empty($CFG->extramemorylimit)) {
1022 $extra = get_real_size($CFG->extramemorylimit);
1023 if ($extra > $newlimit) {
1024 $newlimit = $extra;
1028 } else if ($newlimit == MEMORY_HUGE) {
1029 $newlimit = get_real_size('2G');
1031 } else {
1032 $newlimit = get_real_size($newlimit);
1035 if ($newlimit <= 0) {
1036 debugging('Invalid memory limit specified.');
1037 return false;
1040 $cur = ini_get('memory_limit');
1041 if (empty($cur)) {
1042 // if php is compiled without --enable-memory-limits
1043 // apparently memory_limit is set to ''
1044 $cur = 0;
1045 } else {
1046 if ($cur == -1){
1047 return true; // unlimited mem!
1049 $cur = get_real_size($cur);
1052 if ($newlimit > $cur) {
1053 ini_set('memory_limit', $newlimit);
1054 return true;
1056 return false;
1060 * Function to reduce the memory limit to a new value.
1061 * Will respect the memory limit if it is lower, thus allowing
1062 * settings in php.ini, apache conf or command line switches
1063 * to override it
1065 * The memory limit should be expressed with a string (eg:'64M')
1067 * @param string $newlimit the new memory limit
1068 * @return bool
1070 function reduce_memory_limit($newlimit) {
1071 if (empty($newlimit)) {
1072 return false;
1074 $cur = ini_get('memory_limit');
1075 if (empty($cur)) {
1076 // if php is compiled without --enable-memory-limits
1077 // apparently memory_limit is set to ''
1078 $cur = 0;
1079 } else {
1080 if ($cur == -1){
1081 return true; // unlimited mem!
1083 $cur = get_real_size($cur);
1086 $new = get_real_size($newlimit);
1087 // -1 is smaller, but it means unlimited
1088 if ($new < $cur && $new != -1) {
1089 ini_set('memory_limit', $newlimit);
1090 return true;
1092 return false;
1096 * Converts numbers like 10M into bytes.
1098 * @param string $size The size to be converted
1099 * @return int
1101 function get_real_size($size = 0) {
1102 if (!$size) {
1103 return 0;
1105 $scan = array();
1106 $scan['GB'] = 1073741824;
1107 $scan['Gb'] = 1073741824;
1108 $scan['G'] = 1073741824;
1109 $scan['MB'] = 1048576;
1110 $scan['Mb'] = 1048576;
1111 $scan['M'] = 1048576;
1112 $scan['m'] = 1048576;
1113 $scan['KB'] = 1024;
1114 $scan['Kb'] = 1024;
1115 $scan['K'] = 1024;
1116 $scan['k'] = 1024;
1118 while (list($key) = each($scan)) {
1119 if ((strlen($size)>strlen($key))&&(substr($size, strlen($size) - strlen($key))==$key)) {
1120 $size = substr($size, 0, strlen($size) - strlen($key)) * $scan[$key];
1121 break;
1124 return $size;
1128 * Try to disable all output buffering and purge
1129 * all headers.
1131 * @access private to be called only from lib/setup.php !
1132 * @return void
1134 function disable_output_buffering() {
1135 $olddebug = error_reporting(0);
1137 // disable compression, it would prevent closing of buffers
1138 if (ini_get_bool('zlib.output_compression')) {
1139 ini_set('zlib.output_compression', 'Off');
1142 // try to flush everything all the time
1143 ob_implicit_flush(true);
1145 // close all buffers if possible and discard any existing output
1146 // this can actually work around some whitespace problems in config.php
1147 while(ob_get_level()) {
1148 if (!ob_end_clean()) {
1149 // prevent infinite loop when buffer can not be closed
1150 break;
1154 // disable any other output handlers
1155 ini_set('output_handler', '');
1157 error_reporting($olddebug);
1161 * Check whether a major upgrade is needed. That is defined as an upgrade that
1162 * changes something really fundamental in the database, so nothing can possibly
1163 * work until the database has been updated, and that is defined by the hard-coded
1164 * version number in this function.
1166 function redirect_if_major_upgrade_required() {
1167 global $CFG;
1168 $lastmajordbchanges = 2012110201;
1169 if (empty($CFG->version) or (int)$CFG->version < $lastmajordbchanges or
1170 during_initial_install() or !empty($CFG->adminsetuppending)) {
1171 try {
1172 @session_get_instance()->terminate_current();
1173 } catch (Exception $e) {
1174 // Ignore any errors, redirect to upgrade anyway.
1176 $url = $CFG->wwwroot . '/' . $CFG->admin . '/index.php';
1177 @header($_SERVER['SERVER_PROTOCOL'] . ' 303 See Other');
1178 @header('Location: ' . $url);
1179 echo bootstrap_renderer::plain_redirect_message(htmlspecialchars($url));
1180 exit;
1185 * Function to check if a directory exists and by default create it if not exists.
1187 * Previously this was accepting paths only from dataroot, but we now allow
1188 * files outside of dataroot if you supply custom paths for some settings in config.php.
1189 * This function does not verify that the directory is writable.
1191 * NOTE: this function uses current file stat cache,
1192 * please use clearstatcache() before this if you expect that the
1193 * directories may have been removed recently from a different request.
1195 * @param string $dir absolute directory path
1196 * @param boolean $create directory if does not exist
1197 * @param boolean $recursive create directory recursively
1198 * @return boolean true if directory exists or created, false otherwise
1200 function check_dir_exists($dir, $create = true, $recursive = true) {
1201 global $CFG;
1203 umask(0000); // just in case some evil code changed it
1205 if (is_dir($dir)) {
1206 return true;
1209 if (!$create) {
1210 return false;
1213 return mkdir($dir, $CFG->directorypermissions, $recursive);
1217 * Create a directory and make sure it is writable.
1219 * @private
1220 * @param string $dir the full path of the directory to be created
1221 * @param bool $exceptiononerror throw exception if error encountered
1222 * @return string|false Returns full path to directory if successful, false if not; may throw exception
1224 function make_writable_directory($dir, $exceptiononerror = true) {
1225 global $CFG;
1227 if (file_exists($dir) and !is_dir($dir)) {
1228 if ($exceptiononerror) {
1229 throw new coding_exception($dir.' directory can not be created, file with the same name already exists.');
1230 } else {
1231 return false;
1235 umask(0000); // just in case some evil code changed it
1237 if (!file_exists($dir)) {
1238 if (!mkdir($dir, $CFG->directorypermissions, true)) {
1239 if ($exceptiononerror) {
1240 throw new invalid_dataroot_permissions($dir.' can not be created, check permissions.');
1241 } else {
1242 return false;
1247 if (!is_writable($dir)) {
1248 if ($exceptiononerror) {
1249 throw new invalid_dataroot_permissions($dir.' is not writable, check permissions.');
1250 } else {
1251 return false;
1255 return $dir;
1259 * Protect a directory from web access.
1260 * Could be extended in the future to support other mechanisms (e.g. other webservers).
1262 * @private
1263 * @param string $dir the full path of the directory to be protected
1265 function protect_directory($dir) {
1266 // Make sure a .htaccess file is here, JUST IN CASE the files area is in the open and .htaccess is supported
1267 if (!file_exists("$dir/.htaccess")) {
1268 if ($handle = fopen("$dir/.htaccess", 'w')) { // For safety
1269 @fwrite($handle, "deny from all\r\nAllowOverride None\r\nNote: this file is broken intentionally, we do not want anybody to undo it in subdirectory!\r\n");
1270 @fclose($handle);
1276 * Create a directory under dataroot and make sure it is writable.
1277 * Do not use for temporary and cache files - see make_temp_directory() and make_cache_directory().
1279 * @param string $directory the full path of the directory to be created under $CFG->dataroot
1280 * @param bool $exceptiononerror throw exception if error encountered
1281 * @return string|false Returns full path to directory if successful, false if not; may throw exception
1283 function make_upload_directory($directory, $exceptiononerror = true) {
1284 global $CFG;
1286 if (strpos($directory, 'temp/') === 0 or $directory === 'temp') {
1287 debugging('Use make_temp_directory() for creation of temporary directory and $CFG->tempdir to get the location.');
1289 } else if (strpos($directory, 'cache/') === 0 or $directory === 'cache') {
1290 debugging('Use make_cache_directory() for creation of chache directory and $CFG->cachedir to get the location.');
1293 protect_directory($CFG->dataroot);
1294 return make_writable_directory("$CFG->dataroot/$directory", $exceptiononerror);
1298 * Create a directory under tempdir and make sure it is writable.
1299 * Temporary files should be used during the current request only!
1301 * @param string $directory the full path of the directory to be created under $CFG->tempdir
1302 * @param bool $exceptiononerror throw exception if error encountered
1303 * @return string|false Returns full path to directory if successful, false if not; may throw exception
1305 function make_temp_directory($directory, $exceptiononerror = true) {
1306 global $CFG;
1307 if ($CFG->tempdir !== "$CFG->dataroot/temp") {
1308 check_dir_exists($CFG->tempdir, true, true);
1309 protect_directory($CFG->tempdir);
1310 } else {
1311 protect_directory($CFG->dataroot);
1313 return make_writable_directory("$CFG->tempdir/$directory", $exceptiononerror);
1317 * Create a directory under cachedir and make sure it is writable.
1319 * @param string $directory the full path of the directory to be created under $CFG->cachedir
1320 * @param bool $exceptiononerror throw exception if error encountered
1321 * @return string|false Returns full path to directory if successful, false if not; may throw exception
1323 function make_cache_directory($directory, $exceptiononerror = true) {
1324 global $CFG;
1325 if ($CFG->cachedir !== "$CFG->dataroot/cache") {
1326 check_dir_exists($CFG->cachedir, true, true);
1327 protect_directory($CFG->cachedir);
1328 } else {
1329 protect_directory($CFG->dataroot);
1331 return make_writable_directory("$CFG->cachedir/$directory", $exceptiononerror);
1335 * Checks if current user is a web crawler.
1337 * This list can not be made complete, this is not a security
1338 * restriction, we make the list only to help these sites
1339 * especially when automatic guest login is disabled.
1341 * If admin needs security they should enable forcelogin
1342 * and disable guest access!!
1344 * @return bool
1346 function is_web_crawler() {
1347 if (!empty($_SERVER['HTTP_USER_AGENT'])) {
1348 if (strpos($_SERVER['HTTP_USER_AGENT'], 'Googlebot') !== false ) {
1349 return true;
1350 } else if (strpos($_SERVER['HTTP_USER_AGENT'], 'google.com') !== false ) { // Google
1351 return true;
1352 } else if (strpos($_SERVER['HTTP_USER_AGENT'], 'Yahoo! Slurp') !== false ) { // Yahoo
1353 return true;
1354 } else if (strpos($_SERVER['HTTP_USER_AGENT'], '[ZSEBOT]') !== false ) { // Zoomspider
1355 return true;
1356 } else if (stripos($_SERVER['HTTP_USER_AGENT'], 'msnbot') !== false ) { // MSN Search
1357 return true;
1358 } else if (strpos($_SERVER['HTTP_USER_AGENT'], 'bingbot') !== false ) { // Bing
1359 return true;
1360 } else if (strpos($_SERVER['HTTP_USER_AGENT'], 'Yandex') !== false ) {
1361 return true;
1362 } else if (strpos($_SERVER['HTTP_USER_AGENT'], 'AltaVista') !== false ) {
1363 return true;
1364 } else if (stripos($_SERVER['HTTP_USER_AGENT'], 'baiduspider') !== false ) { // Baidu
1365 return true;
1366 } else if (strpos($_SERVER['HTTP_USER_AGENT'], 'Teoma') !== false ) { // Ask.com
1367 return true;
1370 return false;
1374 * This class solves the problem of how to initialise $OUTPUT.
1376 * The problem is caused be two factors
1377 * <ol>
1378 * <li>On the one hand, we cannot be sure when output will start. In particular,
1379 * an error, which needs to be displayed, could be thrown at any time.</li>
1380 * <li>On the other hand, we cannot be sure when we will have all the information
1381 * necessary to correctly initialise $OUTPUT. $OUTPUT depends on the theme, which
1382 * (potentially) depends on the current course, course categories, and logged in user.
1383 * It also depends on whether the current page requires HTTPS.</li>
1384 * </ol>
1386 * So, it is hard to find a single natural place during Moodle script execution,
1387 * which we can guarantee is the right time to initialise $OUTPUT. Instead we
1388 * adopt the following strategy
1389 * <ol>
1390 * <li>We will initialise $OUTPUT the first time it is used.</li>
1391 * <li>If, after $OUTPUT has been initialised, the script tries to change something
1392 * that $OUTPUT depends on, we throw an exception making it clear that the script
1393 * did something wrong.
1394 * </ol>
1396 * The only problem with that is, how do we initialise $OUTPUT on first use if,
1397 * it is going to be used like $OUTPUT->somthing(...)? Well that is where this
1398 * class comes in. Initially, we set up $OUTPUT = new bootstrap_renderer(). Then,
1399 * when any method is called on that object, we initialise $OUTPUT, and pass the call on.
1401 * Note that this class is used before lib/outputlib.php has been loaded, so we
1402 * must be careful referring to classes/functions from there, they may not be
1403 * defined yet, and we must avoid fatal errors.
1405 * @copyright 2009 Tim Hunt
1406 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1407 * @since Moodle 2.0
1409 class bootstrap_renderer {
1411 * Handles re-entrancy. Without this, errors or debugging output that occur
1412 * during the initialisation of $OUTPUT, cause infinite recursion.
1413 * @var boolean
1415 protected $initialising = false;
1418 * Have we started output yet?
1419 * @return boolean true if the header has been printed.
1421 public function has_started() {
1422 return false;
1426 * Constructor - to be used by core code only.
1427 * @param string $method The method to call
1428 * @param array $arguments Arguments to pass to the method being called
1429 * @return string
1431 public function __call($method, $arguments) {
1432 global $OUTPUT, $PAGE;
1434 $recursing = false;
1435 if ($method == 'notification') {
1436 // Catch infinite recursion caused by debugging output during print_header.
1437 $backtrace = debug_backtrace();
1438 array_shift($backtrace);
1439 array_shift($backtrace);
1440 $recursing = is_early_init($backtrace);
1443 $earlymethods = array(
1444 'fatal_error' => 'early_error',
1445 'notification' => 'early_notification',
1448 // If lib/outputlib.php has been loaded, call it.
1449 if (!empty($PAGE) && !$recursing) {
1450 if (array_key_exists($method, $earlymethods)) {
1451 //prevent PAGE->context warnings - exceptions might appear before we set any context
1452 $PAGE->set_context(null);
1454 $PAGE->initialise_theme_and_output();
1455 return call_user_func_array(array($OUTPUT, $method), $arguments);
1458 $this->initialising = true;
1460 // Too soon to initialise $OUTPUT, provide a couple of key methods.
1461 if (array_key_exists($method, $earlymethods)) {
1462 return call_user_func_array(array('bootstrap_renderer', $earlymethods[$method]), $arguments);
1465 throw new coding_exception('Attempt to start output before enough information is known to initialise the theme.');
1469 * Returns nicely formatted error message in a div box.
1470 * @static
1471 * @param string $message error message
1472 * @param string $moreinfourl (ignored in early errors)
1473 * @param string $link (ignored in early errors)
1474 * @param array $backtrace
1475 * @param string $debuginfo
1476 * @return string
1478 public static function early_error_content($message, $moreinfourl, $link, $backtrace, $debuginfo = null) {
1479 global $CFG;
1481 $content = '<div style="margin-top: 6em; margin-left:auto; margin-right:auto; color:#990000; text-align:center; font-size:large; border-width:1px;
1482 border-color:black; background-color:#ffffee; border-style:solid; border-radius: 20px; border-collapse: collapse;
1483 width: 80%; -moz-border-radius: 20px; padding: 15px">
1484 ' . $message . '
1485 </div>';
1486 // Check whether debug is set.
1487 $debug = (!empty($CFG->debug) && $CFG->debug >= DEBUG_DEVELOPER);
1488 // Also check we have it set in the config file. This occurs if the method to read the config table from the
1489 // database fails, reading from the config table is the first database interaction we have.
1490 $debug = $debug || (!empty($CFG->config_php_settings['debug']) && $CFG->config_php_settings['debug'] >= DEBUG_DEVELOPER );
1491 if ($debug) {
1492 if (!empty($debuginfo)) {
1493 $debuginfo = s($debuginfo); // removes all nasty JS
1494 $debuginfo = str_replace("\n", '<br />', $debuginfo); // keep newlines
1495 $content .= '<div class="notifytiny">Debug info: ' . $debuginfo . '</div>';
1497 if (!empty($backtrace)) {
1498 $content .= '<div class="notifytiny">Stack trace: ' . format_backtrace($backtrace, false) . '</div>';
1502 return $content;
1506 * This function should only be called by this class, or from exception handlers
1507 * @static
1508 * @param string $message error message
1509 * @param string $moreinfourl (ignored in early errors)
1510 * @param string $link (ignored in early errors)
1511 * @param array $backtrace
1512 * @param string $debuginfo extra information for developers
1513 * @return string
1515 public static function early_error($message, $moreinfourl, $link, $backtrace, $debuginfo = null, $errorcode = null) {
1516 global $CFG;
1518 if (CLI_SCRIPT) {
1519 echo "!!! $message !!!\n";
1520 if (!empty($CFG->debug) and $CFG->debug >= DEBUG_DEVELOPER) {
1521 if (!empty($debuginfo)) {
1522 echo "\nDebug info: $debuginfo";
1524 if (!empty($backtrace)) {
1525 echo "\nStack trace: " . format_backtrace($backtrace, true);
1528 return;
1530 } else if (AJAX_SCRIPT) {
1531 $e = new stdClass();
1532 $e->error = $message;
1533 $e->stacktrace = NULL;
1534 $e->debuginfo = NULL;
1535 if (!empty($CFG->debug) and $CFG->debug >= DEBUG_DEVELOPER) {
1536 if (!empty($debuginfo)) {
1537 $e->debuginfo = $debuginfo;
1539 if (!empty($backtrace)) {
1540 $e->stacktrace = format_backtrace($backtrace, true);
1543 $e->errorcode = $errorcode;
1544 @header('Content-Type: application/json; charset=utf-8');
1545 echo json_encode($e);
1546 return;
1549 // In the name of protocol correctness, monitoring and performance
1550 // profiling, set the appropriate error headers for machine consumption
1551 if (isset($_SERVER['SERVER_PROTOCOL'])) {
1552 // Avoid it with cron.php. Note that we assume it's HTTP/1.x
1553 // The 503 ode here means our Moodle does not work at all, the error happened too early
1554 @header($_SERVER['SERVER_PROTOCOL'] . ' 503 Service Unavailable');
1557 // better disable any caching
1558 @header('Content-Type: text/html; charset=utf-8');
1559 @header('X-UA-Compatible: IE=edge');
1560 @header('Cache-Control: no-store, no-cache, must-revalidate');
1561 @header('Cache-Control: post-check=0, pre-check=0', false);
1562 @header('Pragma: no-cache');
1563 @header('Expires: Mon, 20 Aug 1969 09:23:00 GMT');
1564 @header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
1566 if (function_exists('get_string')) {
1567 $strerror = get_string('error');
1568 } else {
1569 $strerror = 'Error';
1572 $content = self::early_error_content($message, $moreinfourl, $link, $backtrace, $debuginfo);
1574 return self::plain_page($strerror, $content);
1578 * Early notification message
1579 * @static
1580 * @param string $message
1581 * @param string $classes usually notifyproblem or notifysuccess
1582 * @return string
1584 public static function early_notification($message, $classes = 'notifyproblem') {
1585 return '<div class="' . $classes . '">' . $message . '</div>';
1589 * Page should redirect message.
1590 * @static
1591 * @param string $encodedurl redirect url
1592 * @return string
1594 public static function plain_redirect_message($encodedurl) {
1595 $message = '<div style="margin-top: 3em; margin-left:auto; margin-right:auto; text-align:center;">' . get_string('pageshouldredirect') . '<br /><a href="'.
1596 $encodedurl .'">'. get_string('continue') .'</a></div>';
1597 return self::plain_page(get_string('redirect'), $message);
1601 * Early redirection page, used before full init of $PAGE global
1602 * @static
1603 * @param string $encodedurl redirect url
1604 * @param string $message redirect message
1605 * @param int $delay time in seconds
1606 * @return string redirect page
1608 public static function early_redirect_message($encodedurl, $message, $delay) {
1609 $meta = '<meta http-equiv="refresh" content="'. $delay .'; url='. $encodedurl .'" />';
1610 $content = self::early_error_content($message, null, null, null);
1611 $content .= self::plain_redirect_message($encodedurl);
1613 return self::plain_page(get_string('redirect'), $content, $meta);
1617 * Output basic html page.
1618 * @static
1619 * @param string $title page title
1620 * @param string $content page content
1621 * @param string $meta meta tag
1622 * @return string html page
1624 protected static function plain_page($title, $content, $meta = '') {
1625 if (function_exists('get_string') && function_exists('get_html_lang')) {
1626 $htmllang = get_html_lang();
1627 } else {
1628 $htmllang = '';
1631 return '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
1632 <html xmlns="http://www.w3.org/1999/xhtml" ' . $htmllang . '>
1633 <head>
1634 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
1635 '.$meta.'
1636 <title>' . $title . '</title>
1637 </head><body>' . $content . '</body></html>';