Subversion Repositories oidplus

Rev

Rev 592 | Rev 641 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
112 daniel-mar 1
<?php
2
 
3
/*
4
 * OIDplus 2.0
511 daniel-mar 5
 * Copyright 2019 - 2021 Daniel Marschall, ViaThinkSoft
112 daniel-mar 6
 *
7
 * Licensed under the Apache License, Version 2.0 (the "License");
8
 * you may not use this file except in compliance with the License.
9
 * You may obtain a copy of the License at
10
 *
11
 *     http://www.apache.org/licenses/LICENSE-2.0
12
 *
13
 * Unless required by applicable law or agreed to in writing, software
14
 * distributed under the License is distributed on an "AS IS" BASIS,
15
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
 * See the License for the specific language governing permissions and
17
 * limitations under the License.
18
 */
19
 
20
use MatthiasMullie\Minify;
21
 
261 daniel-mar 22
require_once __DIR__ . '/includes/oidplus.inc.php';
462 daniel-mar 23
 
24
error_reporting(OIDplus::baseConfig()->getValue('DEBUG') ? E_ALL : 0);
592 daniel-mar 25
@ini_set('display_errors', OIDplus::baseConfig()->getValue('DEBUG') ? '1' : '0');
112 daniel-mar 26
 
215 daniel-mar 27
$files = array();
112 daniel-mar 28
 
417 daniel-mar 29
$do_minify = OIDplus::baseConfig()->getValue('MINIFY_JS', true);
215 daniel-mar 30
 
597 daniel-mar 31
$files[] = process_file(__DIR__ . '/vendor/components/jquery/jquery.js');
32
$files[] = process_file(__DIR__ . '/vendor/twbs/bootstrap/dist/js/bootstrap.js');
33
$files[] = process_file(__DIR__ . '/vendor/vakata/jstree/dist/jstree.js');
34
$files[] = process_file(__DIR__ . '/vendor/tinymce/tinymce/tinymce.js');
35
$files[] = process_file(__DIR__ . '/vendor/components/jqueryui/jquery-ui.js');
36
$files[] = process_file(__DIR__ . '/vendor/gedmarc/layout/dist/jquery.layout_and_plugins.js');
37
$files[] = process_file(__DIR__ . '/vendor/spamspan/spamspan/spamspan.js');
38
$files[] = process_file(__DIR__ . '/vendor/mikemcl/bignumber.js/bignumber.js');
39
$files[] = process_file(__DIR__ . '/vendor/emn178/js-sha3/src/sha3.js');
417 daniel-mar 40
 
368 daniel-mar 41
# ---
42
 
43
$files[] = 'var DEFAULT_LANGUAGE = '.json_encode(OIDplus::DEFAULT_LANGUAGE).';';
44
 
45
OIDplus::registerAllPlugins('language', 'OIDplusLanguagePlugin', null);
46
$translation_array = OIDplus::getTranslationArray();
47
$files[] = 'var language_messages = '.json_encode($translation_array).';';
48
 
49
//$tbl_prefix = OIDplus::baseConfig()->getValue('OIDPLUS_TABLENAME_PREFIX','');
50
//$files[] = 'var language_tblprefix = '.json_encode($tbl_prefix).';';
51
$files[] = 'var language_tblprefix = "<tableprefix>";'; // hide OIDPLUS_TABLENAME_PREFIX from the client
52
 
564 daniel-mar 53
// The CSRF token is set by index.php
54
$files[] = 'var csrf_token = '.js_escape(isset($_COOKIE['csrf_token']) ? $_COOKIE['csrf_token'] : '').';';
424 daniel-mar 55
 
561 daniel-mar 56
$files[] = 'var samesite_policy = '.js_escape(OIDplus::baseConfig()->getValue('COOKIE_SAMESITE_POLICY','Strict')).';';
57
 
448 daniel-mar 58
$files[] = process_file(__DIR__ . '/includes/oidplus_base.js');
215 daniel-mar 59
 
368 daniel-mar 60
# ---
61
 
420 daniel-mar 62
function process_file($filename) {
462 daniel-mar 63
        global $do_minify;
64
 
65
        $filename_min = preg_replace('/\.[^.]+$/', '.min.js', $filename);
66
        $filename_full = $filename;
67
 
68
        if ($do_minify) {
69
                if (file_exists($filename_min)) {
70
                        $filename = $filename_min;
71
                } else if (file_exists($filename_full)) {
72
                        $filename = $filename_full;
73
                } else {
74
                        return "console.error('Script file not found: $filename');";
75
                }
429 daniel-mar 76
        } else {
462 daniel-mar 77
                if (file_exists($filename_full)) {
78
                        $filename = $filename_full;
79
                } else if (file_exists($filename_min)) {
80
                        $filename = $filename_min;
81
                } else {
82
                        return "console.error('Script file not found: $filename');";
83
                }
84
        }
420 daniel-mar 85
 
490 daniel-mar 86
        $thisdir = __DIR__;
87
        $thisdir = str_replace('\\', '/', $thisdir); // change Windows Backslashes into Web-Slashes
88
        $filename = str_replace('\\', '/', $filename); // change Windows Backslashes into Web-Slashes
89
        $dir = dirname((strpos($filename, $thisdir.'/') === 0) ? substr($filename, strlen($thisdir.'/')) : $filename);
462 daniel-mar 90
        $cont = file_get_contents($filename);
420 daniel-mar 91
 
462 daniel-mar 92
        // TODO: WHY???? DevTools failed to load SourceMap: Could not load content for http://localhost/oidplus/bootstrap.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
93
        $cont = str_replace("//# sourceMappingURL=", "//# sourceMappingURL=".$dir.'/', $cont);
94
 
95
        return $cont."\n\n";
420 daniel-mar 96
}
97
 
98
# ---
99
 
307 daniel-mar 100
$manifests = OIDplus::getAllPluginManifests('*Pages', true);
101
foreach ($manifests as $manifest) {
102
        foreach ($manifest->getJSFiles() as $js_file) {
420 daniel-mar 103
                $files[] = process_file($js_file);
277 daniel-mar 104
        }
105
}
112 daniel-mar 106
 
368 daniel-mar 107
# ---
362 daniel-mar 108
 
417 daniel-mar 109
if ($do_minify) {
368 daniel-mar 110
        $minifier = null;
111
        foreach ($files as $file) {
261 daniel-mar 112
                if (is_null($minifier)) {
113
                        $minifier = new Minify\JS($file);
114
                } else {
115
                        $minifier->add($file);
116
                }
368 daniel-mar 117
        }
118
        $out = is_null($minifier) ? '' : $minifier->minify();
119
} else {
120
        $out = '';
121
        foreach ($files as $file) {
364 daniel-mar 122
                if (file_exists($file)) {
123
                        $out .= file_get_contents($file)."\n";
124
                } else {
125
                        $out .= "$file\n";
126
                }
215 daniel-mar 127
        }
128
}
129
 
368 daniel-mar 130
# ---
218 daniel-mar 131
 
481 daniel-mar 132
if (OIDplus::baseConfig()->getValue('DEBUG')) {
133
        // In debug mode, we might get PHP error messages (see "error_reporting" above),
134
        // so it would be severe if we would allow ETAG! (since $out does not contain the PHP error messages!)
135
        header('Content-Type:application/javascript');
136
        echo $out;
137
} else {
138
        httpOutWithETag($out, 'application/javascript', 'oidplus.js');
139
}