MDL-41806 Add assessors to moodle_url class
[moodle.git] / theme / javascript.php
blobe1b9606e0e3a5381137559cacf68c051568d5c2f
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 the one huge CSS of each theme.
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
33 require_once("$CFG->dirroot/lib/jslib.php");
35 if ($slashargument = min_get_slash_argument()) {
36 $slashargument = ltrim($slashargument, '/');
37 if (substr_count($slashargument, '/') < 2) {
38 image_not_found();
40 // image must be last because it may contain "/"
41 list($themename, $rev, $type) = explode('/', $slashargument, 3);
42 $themename = min_clean_param($themename, 'SAFEDIR');
43 $rev = min_clean_param($rev, 'INT');
44 $type = min_clean_param($type, 'SAFEDIR');
46 } else {
47 $themename = min_optional_param('theme', 'standard', 'SAFEDIR');
48 $rev = min_optional_param('rev', -1, 'INT');
49 $type = min_optional_param('type', 'head', 'RAW');
52 if ($type !== 'head' and $type !== 'footer') {
53 header('HTTP/1.0 404 not found');
54 die('Theme was not found, sorry.');
57 if (file_exists("$CFG->dirroot/theme/$themename/config.php")) {
58 // exists
59 } else if (!empty($CFG->themedir) and file_exists("$CFG->themedir/$themename/config.php")) {
60 // exists
61 } else {
62 header('HTTP/1.0 404 not found');
63 die('Theme was not found, sorry.');
66 $candidate = "$CFG->localcachedir/theme/$rev/$themename/javascript_$type.js";
67 $etag = sha1("$rev/$themename/$type");
69 if ($rev > 0 and file_exists($candidate)) {
70 if (!empty($_SERVER['HTTP_IF_NONE_MATCH']) || !empty($_SERVER['HTTP_IF_MODIFIED_SINCE'])) {
71 // we do not actually need to verify the etag value because our files
72 // never change in cache because we increment the rev parameter
73 js_send_unmodified(filemtime($candidate), $etag);
75 js_send_cached($candidate, $etag);
78 //=================================================================================
79 // ok, now we need to start normal moodle script, we need to load all libs and $DB
80 define('ABORT_AFTER_CONFIG_CANCEL', true);
82 define('NO_MOODLE_COOKIES', true); // Session not used here
83 define('NO_UPGRADE_CHECK', true); // Ignore upgrade check
85 require("$CFG->dirroot/lib/setup.php");
87 $theme = theme_config::load($themename);
88 $themerev = theme_get_revision();
90 if ($themerev <= 0 or $rev != $themerev) {
91 // Do not send caching headers if they do not request current revision,
92 // we do not want to pollute browser caches with outdated JS.
93 js_send_uncached($theme->javascript_content($type));
96 make_localcache_directory('theme', false);
98 js_write_cache_file_content($candidate, core_minify::js_files($theme->javascript_files($type)));
99 // Verify nothing failed in cache file creation.
100 clearstatcache();
101 if (file_exists($candidate)) {
102 js_send_cached($candidate, $etag);
105 js_send_uncached($theme->javascript_content($type));