ee89461eb467a69a100506e2379c46fd3a87f92f
[moodle.git] / theme / yui_image.php
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.
13 //
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  * This file is responsible for serving of yui images
19  *
20  * @package   core
21  * @copyright 2009 Petr Skoda (skodak)  {@link http://skodak.org}
22  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23  */
26 // disable moodle specific debug messages and any errors in output,
27 // comment out when debugging or better look into error log!
28 define('NO_DEBUG_DISPLAY', true);
30 // we need just the values from config.php and minlib.php
31 define('ABORT_AFTER_CONFIG', true);
32 require('../config.php'); // this stops immediately at the beginning of lib/setup.php
34 if ($slashargument = min_get_slash_argument()) {
35     $path = ltrim($slashargument, '/');
36 } else {
37     $path = min_optional_param('file', '', 'SAFEPATH');
38 }
40 $etag = sha1($path);
41 $parts = explode('/', $path);
42 $version = array_shift($parts);
43 if ($version === 'm') {
44     $version = 'moodle';
45 }
46 if ($version == 'moodle' && count($parts) >= 3) {
47     $frankenstyle = array_shift($parts);
48     $module = array_shift($parts);
49     $image = array_pop($parts);
50     $subdir = join('/', $parts);
51     $dir = core_component::get_component_directory($frankenstyle);
53     // For shifted YUI modules, we need the YUI module name in frankenstyle format.
54     $frankenstylemodulename = join('-', array($version, $frankenstyle, $module));
56     // By default, try and use the /yui/build directory.
57     $imagepath = $dir . '/yui/build/' . $frankenstylemodulename . '/assets/skins/sam/' . $image;
59     // If the shifted versions don't exist, fall back to the non-shifted file.
60     if (!file_exists($imagepath) or !is_file($imagepath)) {
61         $imagepath = $dir . '/yui/' . $module . '/assets/skins/sam/' . $image;
62     }
63 } else if ($version == 'gallery' && count($parts) >= 3) {
64     list($revision, $module, , , , $image) = $parts;
65     $imagepath = "$CFG->dirroot/lib/yuilib/gallery/$module/assets/skins/sam/$image";
66 } else if (count($parts) == 1 && ($version == $CFG->yui3version || $version == $CFG->yui2version)) {
67     list($image) = $parts;
68     if ($version == $CFG->yui3version) {
69         $imagepath = "$CFG->dirroot/lib/yuilib/$CFG->yui3version/assets/skins/sam/$image";
70     } else  {
71         $imagepath = "$CFG->dirroot/lib/yuilib/2in3/$CFG->yui2version/build/assets/skins/sam/$image";
72     }
73 } else {
74     yui_image_not_found();
75 }
77 if (!file_exists($imagepath)) {
78     yui_image_not_found();
79 }
81 $pathinfo = pathinfo($imagepath);
82 $imagename = $pathinfo['filename'].'.'.$pathinfo['extension'];
84 switch($pathinfo['extension']) {
85     case 'gif'  : $mimetype = 'image/gif'; break;
86     case 'png'  : $mimetype = 'image/png'; break;
87     case 'jpg'  : $mimetype = 'image/jpeg'; break;
88     case 'jpeg' : $mimetype = 'image/jpeg'; break;
89     case 'ico'  : $mimetype = 'image/vnd.microsoft.icon'; break;
90     default: $mimetype = 'document/unknown';
91 }
93 // if they are requesting a revision that's not -1, and they have supplied an
94 // If-Modified-Since header, we can send back a 304 Not Modified since the
95 // content never changes (the rev number is increased any time the content changes)
96 if (strpos($path, '/-1/') === false and (!empty($_SERVER['HTTP_IF_NONE_MATCH']) || !empty($_SERVER['HTTP_IF_MODIFIED_SINCE']))) {
97     $lifetime = 60*60*24*360; // 1 year, we do not change YUI versions often, there are a few custom yui modules
98     header('HTTP/1.1 304 Not Modified');
99     header('Last-Modified: '. gmdate('D, d M Y H:i:s', filemtime($imagepath)) .' GMT');
100     header('Expires: '. gmdate('D, d M Y H:i:s', time() + $lifetime) .' GMT');
101     header('Cache-Control: public, max-age='.$lifetime);
102     header('Content-Type: '.$mimetype);
103     header('Etag: "'.$etag.'"');
104     die;
107 yui_image_cached($imagepath, $imagename, $mimetype, $etag);
110 function yui_image_cached($imagepath, $imagename, $mimetype, $etag) {
111     global $CFG;
112     require("$CFG->dirroot/lib/xsendfilelib.php");
114     $lifetime = 60*60*24*360; // 1 year, we do not change YUI versions often, there are a few custom yui modules
116     header('Content-Disposition: inline; filename="'.$imagename.'"');
117     header('Last-Modified: '. gmdate('D, d M Y H:i:s', filemtime($imagepath)) .' GMT');
118     header('Expires: '. gmdate('D, d M Y H:i:s', time() + $lifetime) .' GMT');
119     header('Pragma: ');
120     header('Cache-Control: public, max-age=315360000');
121     header('Accept-Ranges: none');
122     header('Content-Type: '.$mimetype);
123     header('Content-Length: '.filesize($imagepath));
124     header('Etag: "'.$etag.'"');
126     if (xsendfile($imagepath)) {
127         die;
128     }
130     // no need to gzip already compressed images ;-)
132     readfile($imagepath);
133     die;
136 function yui_image_not_found() {
137     header('HTTP/1.0 404 not found');
138     die('Image was not found, sorry.');