2009-12-16 18:00:58 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Minimalistic library, usable even when no other moodle libs are loaded.
|
|
|
|
*
|
|
|
|
* The only library that gets loaded if you define ABORT_AFTER_CONFIG
|
|
|
|
* before including main config.php. You can resume normal script operation
|
|
|
|
* if you define ABORT_AFTER_CONFIG_CANCEL and require the setup.php
|
|
|
|
*
|
2010-07-25 13:35:05 +00:00
|
|
|
* @package core
|
|
|
|
* @copyright 2009 Petr Skoda (skodak)
|
2009-12-16 18:00:58 +00:00
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Minimalistic parameter validation function.
|
|
|
|
* Can not use optional param because moodlelib.php is not loaded yet
|
|
|
|
* @param string $name
|
|
|
|
* @param mixed $default
|
|
|
|
* @param string $type
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
function min_optional_param($name, $default, $type) {
|
|
|
|
$value = $default;
|
|
|
|
if (isset($_GET[$name])) {
|
|
|
|
$value = $_GET[$name];
|
|
|
|
|
|
|
|
} else if (isset($_GET['amp;'.$name])) {
|
2010-05-22 18:59:12 +00:00
|
|
|
// very, very, very ugly hack, unfortunately $OUTPUT->pix_url() is not used properly in javascript code :-(
|
2009-12-16 18:00:58 +00:00
|
|
|
$value = $_GET['amp;'.$name];
|
|
|
|
}
|
2009-12-25 19:51:40 +00:00
|
|
|
|
2009-12-25 22:37:04 +00:00
|
|
|
return min_clean_param($value, $type);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Minimalistic parameter cleaning function.
|
|
|
|
* Can not use optional param because moodlelib.php is not loaded yet
|
|
|
|
* @param string $name
|
|
|
|
* @param mixed $default
|
|
|
|
* @param string $type
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
function min_clean_param($value, $type) {
|
2009-12-16 18:00:58 +00:00
|
|
|
switch($type) {
|
2011-07-15 15:00:49 +02:00
|
|
|
case 'RAW': $value = iconv('UTF-8', 'UTF-8//IGNORE', $value);
|
|
|
|
break;
|
2009-12-25 19:51:40 +00:00
|
|
|
case 'INT': $value = (int)$value;
|
|
|
|
break;
|
|
|
|
case 'SAFEDIR': $value = preg_replace('/[^a-zA-Z0-9_-]/', '', $value);
|
|
|
|
break;
|
|
|
|
case 'SAFEPATH': $value = preg_replace('/[^a-zA-Z0-9\/\._-]/', '', $value);
|
|
|
|
$value = preg_replace('/\.+/', '.', $value);
|
|
|
|
$value = preg_replace('#/+#', '/', $value);
|
|
|
|
break;
|
2010-05-22 18:59:12 +00:00
|
|
|
default: die("Coding error: incorrect parameter type specified ($type).");
|
2009-12-16 18:00:58 +00:00
|
|
|
}
|
2009-12-25 19:51:40 +00:00
|
|
|
|
2009-12-16 18:00:58 +00:00
|
|
|
return $value;
|
2010-01-05 20:18:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method tries to enable output compression if possible.
|
|
|
|
* This function must be called before any output or headers.
|
|
|
|
*
|
|
|
|
* (IE6 is not supported at all.)
|
|
|
|
*
|
|
|
|
* @return boolean, true if compression enabled
|
|
|
|
*/
|
|
|
|
function min_enable_zlib_compression() {
|
2010-07-25 13:35:05 +00:00
|
|
|
|
2010-01-05 20:18:15 +00:00
|
|
|
if (headers_sent()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// zlib.output_compression is preferred over ob_gzhandler()
|
2012-04-28 18:00:06 +02:00
|
|
|
if (!empty($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6') !== false) {
|
|
|
|
@ini_set('zlib.output_compression', 'Off');
|
|
|
|
if (function_exists('apache_setenv')) {
|
|
|
|
@apache_setenv('no-gzip', 1);
|
2010-01-05 20:18:15 +00:00
|
|
|
}
|
2012-04-28 18:00:06 +02:00
|
|
|
return false;
|
2010-01-05 20:18:15 +00:00
|
|
|
}
|
2010-07-25 13:35:05 +00:00
|
|
|
|
2010-01-05 20:18:15 +00:00
|
|
|
@ini_set('output_handler', '');
|
2010-01-12 11:12:59 +00:00
|
|
|
|
|
|
|
/*
|
2010-05-22 18:59:12 +00:00
|
|
|
* docs clearly say 'on' means enable and number means size of buffer,
|
2010-01-12 11:12:59 +00:00
|
|
|
* but unfortunately some PHP version break when we set 'on' here.
|
|
|
|
* 1 probably sets chunk size to 4096. our CSS and JS scripts are much bigger,
|
|
|
|
* so let's try some bigger sizes.
|
|
|
|
*/
|
|
|
|
@ini_set('zlib.output_compression', 65536);
|
2010-07-25 13:35:05 +00:00
|
|
|
|
2010-01-05 20:18:15 +00:00
|
|
|
return true;
|
2009-12-25 22:37:04 +00:00
|
|
|
}
|