MDL-41806 Add assessors to moodle_url class
[moodle.git] / theme / yui_image.php
blobf7cf0abde96323e5857d203c8a72cff997a8448e
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 * This file is responsible for serving of yui images
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
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');
40 $etag = sha1($path);
41 $parts = explode('/', $path);
42 $version = array_shift($parts);
43 if ($version == 'moodle' && count($parts) >= 3) {
44 $frankenstyle = array_shift($parts);
45 $module = array_shift($parts);
46 $image = array_pop($parts);
47 $subdir = join('/', $parts);
48 $dir = core_component::get_component_directory($frankenstyle);
50 // For shifted YUI modules, we need the YUI module name in frankenstyle format.
51 $frankenstylemodulename = join('-', array($version, $frankenstyle, $module));
53 // By default, try and use the /yui/build directory.
54 $imagepath = $dir . '/yui/build/' . $frankenstylemodulename . '/assets/skins/sam/' . $image;
56 // If the shifted versions don't exist, fall back to the non-shifted file.
57 if (!file_exists($imagepath) or !is_file($imagepath)) {
58 $imagepath = $dir . '/yui/' . $module . '/assets/skins/sam/' . $image;
60 } else if ($version == 'gallery' && count($parts)==3) {
61 list($module, $version, $image) = $parts;
62 $imagepath = "$CFG->dirroot/lib/yui/gallery/$module/$version/assets/skins/sam/$image";
63 } else if (count($parts) == 1 && ($version == $CFG->yui3version || $version == $CFG->yui2version)) {
64 list($image) = $parts;
65 if ($version == $CFG->yui3version) {
66 $imagepath = "$CFG->dirroot/lib/yuilib/$CFG->yui3version/build/assets/skins/sam/$image";
67 } else {
68 $imagepath = "$CFG->dirroot/lib/yuilib/2in3/$CFG->yui2version/build/assets/skins/sam/$image";
70 } else {
71 yui_image_not_found();
74 if (!file_exists($imagepath)) {
75 yui_image_not_found();
78 $pathinfo = pathinfo($imagepath);
79 $imagename = $pathinfo['filename'].'.'.$pathinfo['extension'];
81 switch($pathinfo['extension']) {
82 case 'gif' : $mimetype = 'image/gif'; break;
83 case 'png' : $mimetype = 'image/png'; break;
84 case 'jpg' : $mimetype = 'image/jpeg'; break;
85 case 'jpeg' : $mimetype = 'image/jpeg'; break;
86 case 'ico' : $mimetype = 'image/vnd.microsoft.icon'; break;
87 default: $mimetype = 'document/unknown';
90 // if they are requesting a revision that's not -1, and they have supplied an
91 // If-Modified-Since header, we can send back a 304 Not Modified since the
92 // content never changes (the rev number is increased any time the content changes)
93 if (strpos($path, '/-1/') === false and (!empty($_SERVER['HTTP_IF_NONE_MATCH']) || !empty($_SERVER['HTTP_IF_MODIFIED_SINCE']))) {
94 $lifetime = 60*60*24*360; // 1 year, we do not change YUI versions often, there are a few custom yui modules
95 header('HTTP/1.1 304 Not Modified');
96 header('Last-Modified: '. gmdate('D, d M Y H:i:s', filemtime($imagepath)) .' GMT');
97 header('Expires: '. gmdate('D, d M Y H:i:s', time() + $lifetime) .' GMT');
98 header('Cache-Control: public, max-age='.$lifetime);
99 header('Content-Type: '.$mimetype);
100 header('Etag: "'.$etag.'"');
101 die;
104 yui_image_cached($imagepath, $imagename, $mimetype, $etag);
107 function yui_image_cached($imagepath, $imagename, $mimetype, $etag) {
108 global $CFG;
109 require("$CFG->dirroot/lib/xsendfilelib.php");
111 $lifetime = 60*60*24*360; // 1 year, we do not change YUI versions often, there are a few custom yui modules
113 header('Content-Disposition: inline; filename="'.$imagename.'"');
114 header('Last-Modified: '. gmdate('D, d M Y H:i:s', filemtime($imagepath)) .' GMT');
115 header('Expires: '. gmdate('D, d M Y H:i:s', time() + $lifetime) .' GMT');
116 header('Pragma: ');
117 header('Cache-Control: public, max-age=315360000');
118 header('Accept-Ranges: none');
119 header('Content-Type: '.$mimetype);
120 header('Content-Length: '.filesize($imagepath));
121 header('Etag: "'.$etag.'"');
123 if (xsendfile($imagepath)) {
124 die;
127 // no need to gzip already compressed images ;-)
129 readfile($imagepath);
130 die;
133 function yui_image_not_found() {
134 header('HTTP/1.0 404 not found');
135 die('Image was not found, sorry.');