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 * This file contains various javascript related functions,
19 * all functions here are self contained and can be used in ABORT_AFTER_CONFIG scripts.
22 * @copyright 2012 Petr Skoda (skodak) {@link http://skodak.org}
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 defined('MOODLE_INTERNAL') ||
die();
29 * Send javascript file content with as much caching as possible
30 * @param string $jspath
32 * @param string $filename
34 function js_send_cached($jspath, $etag, $filename = 'javascript.php') {
35 require(__DIR__
. '/xsendfilelib.php');
37 // 90 days only - based on Moodle point release cadence being every 3 months.
38 $lifetime = 60 * 60 * 24 * 90;
40 header('Etag: "'.$etag.'"');
41 header('Content-Disposition: inline; filename="'.$filename.'"');
42 header('Last-Modified: '. gmdate('D, d M Y H:i:s', filemtime($jspath)) .' GMT');
43 header('Expires: '. gmdate('D, d M Y H:i:s', time() +
$lifetime) .' GMT');
45 header('Cache-Control: public, max-age='.$lifetime.', immutable');
46 header('Accept-Ranges: none');
47 header('Content-Type: application/javascript; charset=utf-8');
49 if (xsendfile($jspath)) {
53 if (!min_enable_zlib_compression()) {
54 header('Content-Length: '.filesize($jspath));
62 * Send javascript without any caching
64 * @param string $filename
66 function js_send_uncached($js, $filename = 'javascript.php') {
67 header('Content-Disposition: inline; filename="'.$filename.'"');
68 header('Last-Modified: '. gmdate('D, d M Y H:i:s', time()) .' GMT');
69 header('Expires: '. gmdate('D, d M Y H:i:s', time() +
2) .' GMT');
71 header('Accept-Ranges: none');
72 header('Content-Type: application/javascript; charset=utf-8');
73 header('Content-Length: '.strlen($js));
80 * Send file not modified headers
81 * @param int $lastmodified
84 function js_send_unmodified($lastmodified, $etag) {
85 // 90 days only - based on Moodle point release cadence being every 3 months.
86 $lifetime = 60 * 60 * 24 * 90;
87 header('HTTP/1.1 304 Not Modified');
88 header('Expires: '. gmdate('D, d M Y H:i:s', time() +
$lifetime) .' GMT');
89 header('Cache-Control: public, max-age='.$lifetime);
90 header('Content-Type: application/javascript; charset=utf-8');
91 header('Etag: "'.$etag.'"');
93 header('Last-Modified: '. gmdate('D, d M Y H:i:s', $lastmodified) .' GMT');
99 * Create cache file for JS content
100 * @param string $file full file path to cache file
101 * @param string $content JS code
103 function js_write_cache_file_content($file, $content) {
107 if (!file_exists(dirname($file))) {
108 @mkdir
(dirname($file), $CFG->directorypermissions
, true);
111 // Prevent serving of incomplete file from concurrent request,
112 // the rename() should be more atomic than fwrite().
113 ignore_user_abort(true);
114 if ($fp = fopen($file.'.tmp', 'xb')) {
115 fwrite($fp, $content);
117 rename($file.'.tmp', $file);
118 @chmod
($file, $CFG->filepermissions
);
119 @unlink
($file.'.tmp'); // just in case anything fails
121 ignore_user_abort(false);
122 if (connection_aborted()) {
128 * Sends a 404 message about CSS not being found.
130 function js_send_css_not_found() {
131 header('HTTP/1.0 404 not found');
132 die('JS was not found, sorry.');