Merge branch 'MDL-64012' of https://github.com/timhunt/moodle
[moodle.git] / lib / configonlylib.php
blob670d69b8edeb3b89ed6e44ed9caa31bbe231e582
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * Minimalistic library, usable even when no other moodle libs are loaded.
21 * The only library that gets loaded if you define ABORT_AFTER_CONFIG
22 * before including main config.php. You can resume normal script operation
23 * if you define ABORT_AFTER_CONFIG_CANCEL and require the setup.php
25 * @package core
26 * @copyright 2009 Petr Skoda (skodak)
27 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
30 /**
31 * Minimalistic parameter validation function.
32 * Can not use optional param because moodlelib.php is not loaded yet
33 * @param string $name
34 * @param mixed $default
35 * @param string $type
36 * @return mixed
38 function min_optional_param($name, $default, $type) {
39 if (isset($_GET[$name])) {
40 $value = $_GET[$name];
42 } else if (isset($_GET['amp;'.$name])) {
43 // very, very, very ugly hack, unfortunately $OUTPUT->pix_url() is not used properly in javascript code :-(
44 $value = $_GET['amp;'.$name];
46 } else if (isset($_POST[$name])) {
47 $value = $_POST[$name];
49 } else {
50 return $default;
53 return min_clean_param($value, $type);
56 /**
57 * Minimalistic parameter cleaning function.
59 * Note: Can not use optional param because moodlelib.php is not loaded yet.
61 * @param string $value
62 * @param string $type
63 * @return mixed
65 function min_clean_param($value, $type) {
66 switch($type) {
67 case 'RAW': $value = min_fix_utf8((string)$value);
68 break;
69 case 'INT': $value = (int)$value;
70 break;
71 case 'SAFEDIR': $value = preg_replace('/[^a-zA-Z0-9_-]/', '', $value);
72 break;
73 case 'SAFEPATH': $value = preg_replace('/[^a-zA-Z0-9\/\._-]/', '', $value);
74 $value = preg_replace('/\.+/', '.', $value);
75 $value = preg_replace('#/+#', '/', $value);
76 break;
77 default: die("Coding error: incorrect parameter type specified ($type).");
80 return $value;
83 /**
84 * Minimalistic UTF-8 sanitisation.
86 * Note: This duplicates fix_utf8() intentionally for now.
88 * @param string $value
89 * @return string
91 function min_fix_utf8($value) {
92 // No null bytes expected in our data, so let's remove it.
93 $value = str_replace("\0", '', $value);
95 static $buggyiconv = null;
96 if ($buggyiconv === null) {
97 set_error_handler(function () {
98 return true;
99 });
100 $buggyiconv = (!function_exists('iconv') or iconv('UTF-8', 'UTF-8//IGNORE', '100'.chr(130).'€') !== '100€');
101 restore_error_handler();
104 if ($buggyiconv) {
105 if (function_exists('mb_convert_encoding')) {
106 $subst = mb_substitute_character();
107 mb_substitute_character('');
108 $result = mb_convert_encoding($value, 'utf-8', 'utf-8');
109 mb_substitute_character($subst);
111 } else {
112 // Warn admins on admin/index.php page.
113 $result = $value;
116 } else {
117 $result = @iconv('UTF-8', 'UTF-8//IGNORE', $value);
120 return $result;
124 * This method tries to enable output compression if possible.
125 * This function must be called before any output or headers.
127 * (IE6 is not supported at all.)
129 * @return boolean, true if compression enabled
131 function min_enable_zlib_compression() {
133 if (headers_sent()) {
134 return false;
137 // zlib.output_compression is preferred over ob_gzhandler()
138 if (!empty($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6') !== false) {
139 ini_set('zlib.output_compression', 'Off');
140 if (function_exists('apache_setenv')) {
141 apache_setenv('no-gzip', 1);
143 return false;
146 ini_set('output_handler', '');
149 * docs clearly say 'on' means enable and number means size of buffer,
150 * but unfortunately some PHP version break when we set 'on' here.
151 * 1 probably sets chunk size to 4096. our CSS and JS scripts are much bigger,
152 * so let's try some bigger sizes.
154 ini_set('zlib.output_compression', 65536);
156 return true;
160 * Returns the slashargument part of the URL.
162 * Note: ".php" is NOT allowed in slasharguments,
163 * it is intended for ASCII characters only.
165 * @param boolean $clean - Should we do cleaning on this path argument. If you set this
166 * to false you MUST be very careful and do the cleaning manually.
167 * @return string
169 function min_get_slash_argument($clean = true) {
170 // Note: This code has to work in the same cases as normal get_file_argument(),
171 // but at the same time it may be simpler because we do not have to deal
172 // with encodings and other tricky stuff.
174 $relativepath = '';
176 if (!empty($_GET['file']) and strpos($_GET['file'], '/') === 0) {
177 // Server is using url rewriting, most probably IIS.
178 // Always clean the result of this function as it may be used in unsafe calls to send_file.
179 $relativepath = $_GET['file'];
180 if ($clean) {
181 $relativepath = min_clean_param($relativepath, 'SAFEPATH');
184 return $relativepath;
186 } else if (stripos($_SERVER['SERVER_SOFTWARE'], 'iis') !== false) {
187 if (isset($_SERVER['PATH_INFO']) and $_SERVER['PATH_INFO'] !== '') {
188 $relativepath = urldecode($_SERVER['PATH_INFO']);
191 } else {
192 if (isset($_SERVER['PATH_INFO'])) {
193 $relativepath = $_SERVER['PATH_INFO'];
197 $matches = null;
198 if (preg_match('|^.+\.php(.*)$|i', $relativepath, $matches)) {
199 $relativepath = $matches[1];
202 // Always clean the result of this function as it may be used in unsafe calls to send_file.
203 if ($clean) {
204 $relativepath = min_clean_param($relativepath, 'SAFEPATH');
206 return $relativepath;