2 // This file is part of Moodle - http://moodle.org/
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.
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/>.
18 * jQuery serving script.
20 * Do not include jQuery scripts or CSS directly, always use
21 * $PAGE->requires->jquery() or $PAGE->requires->jquery_plugin('xx', 'yy').
24 * @copyright 2013 Petr Skoda {@link http://skodak.org}
25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 // Disable moodle specific debug messages and any errors in output,
29 // comment out when debugging or better look into error log!
30 define('NO_DEBUG_DISPLAY', true);
32 // We need just the values from config.php and minlib.php.
33 define('ABORT_AFTER_CONFIG', true);
34 require('../config.php'); // This stops immediately at the beginning of lib/setup.php.
36 if ($slashargument = min_get_slash_argument()) {
37 $path = ltrim($slashargument, '/');
39 $path = min_optional_param('file', '', 'SAFEPATH');
40 $path = ltrim($path, '/');
43 if (strpos($path, '/') === false) {
44 jquery_file_not_found();
47 list($component, $path) = explode('/', $path, 2);
49 if (empty($path) or empty($component)) {
50 jquery_file_not_found();
53 // Find the jQuery dir for this component.
54 if ($component === 'core') {
55 $componentdir = "$CFG->dirroot/lib";
57 } else if (strpos($component, 'theme_')) {
58 if (!empty($CFG->themedir
)) {
59 $componentdir = "$CFG->themedir/$component";
61 $componentdir = "$CFG->dirroot/theme/$component";
65 $componentdir = core_component
::get_component_directory($component);
68 if (!file_exists($componentdir) or !file_exists("$componentdir/jquery/plugins.php")) {
69 jquery_file_not_found();
72 $file = realpath("$componentdir/jquery/$path");
74 if (!$file or is_dir($file)) {
75 jquery_file_not_found();
78 $etag = sha1("$component/$path");
79 $lifetime = 60*60*24*120; // 120 days should be enough.
80 $pathinfo = pathinfo($path);
82 if (empty($pathinfo['extension'])) {
83 jquery_file_not_found();
86 $filename = $pathinfo['filename'].'.'.$pathinfo['extension'];
88 switch($pathinfo['extension']) {
89 case 'gif' : $mimetype = 'image/gif';
91 case 'png' : $mimetype = 'image/png';
93 case 'jpg' : $mimetype = 'image/jpeg';
95 case 'jpeg' : $mimetype = 'image/jpeg';
97 case 'ico' : $mimetype = 'image/vnd.microsoft.icon';
99 case 'svg' : $mimetype = 'image/svg+xml';
101 case 'js' : $mimetype = 'application/javascript';
103 case 'css' : $mimetype = 'text/css';
105 case 'php' : jquery_file_not_found();
107 default : $mimetype = 'document/unknown';
110 if (!empty($_SERVER['HTTP_IF_NONE_MATCH']) ||
!empty($_SERVER['HTTP_IF_MODIFIED_SINCE'])) {
111 // We do not actually need to verify the etag value because these files
112 // never change, devs need to change file names on update!
113 header('HTTP/1.1 304 Not Modified');
114 header('Expires: '. gmdate('D, d M Y H:i:s', time() +
$lifetime) .' GMT');
115 header('Cache-Control: public, max-age='.$lifetime);
116 header('Content-Type: '.$mimetype);
117 header('Etag: "'.$etag.'"');
121 require_once("$CFG->dirroot/lib/xsendfilelib.php");
123 header('Etag: "'.$etag.'"');
124 header('Content-Disposition: inline; filename="'.$filename.'"');
125 header('Last-Modified: '. gmdate('D, d M Y H:i:s', filemtime($file)) .' GMT');
126 header('Expires: '. gmdate('D, d M Y H:i:s', time() +
$lifetime) .' GMT');
128 header('Cache-Control: public, max-age='.$lifetime);
129 header('Accept-Ranges: none');
130 header('Content-Type: '.$mimetype);
132 if (xsendfile($file)) {
136 if ($mimetype === 'text/css' or $mimetype === 'application/javascript') {
137 if (!min_enable_zlib_compression()) {
138 header('Content-Length: '.filesize($file));
141 // No need to compress images.
142 header('Content-Length: '.filesize($file));
150 function jquery_file_not_found() {
151 // Note: we can not disclose the exact file path here, sorry.
152 header('HTTP/1.0 404 not found');
153 die('File was not found, sorry.');