Subversion Repositories oidplus

Rev

Rev 652 | Rev 693 | 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');
652 daniel-mar 32
if (isInternetExplorer()) {
33
        // There are several JS IE11 incompatibilities in Bootstrap 5:
641 daniel-mar 34
        // - "const getUID = prefix => {" which is another syntax of "getUID: function getUID(prefix) {"
35
        // - "Template strings" `...`
36
        // - let {.....} = ....
37
        // (more?)
38
        // We don't include bootstrap.js for Internet Explorer.
39
        // Therefore, the page is still displayed, although without fancy JS stuff of bootstrap
40
        // Use bootstrap 4.5.0 JS as fallback (Note that the CSS is still 5.x!)
41
        $files[] = process_file(__DIR__ . '/vendor/bootstrap4.min.js');
42
        $files[] = process_file(__DIR__ . '/vendor/ie11CustomProperties.min.js');
652 daniel-mar 43
} else {
44
        $files[] = process_file(__DIR__ . '/vendor/twbs/bootstrap/dist/js/bootstrap.js');
641 daniel-mar 45
}
597 daniel-mar 46
$files[] = process_file(__DIR__ . '/vendor/vakata/jstree/dist/jstree.js');
47
$files[] = process_file(__DIR__ . '/vendor/tinymce/tinymce/tinymce.js');
48
$files[] = process_file(__DIR__ . '/vendor/components/jqueryui/jquery-ui.js');
49
$files[] = process_file(__DIR__ . '/vendor/gedmarc/layout/dist/jquery.layout_and_plugins.js');
50
$files[] = process_file(__DIR__ . '/vendor/spamspan/spamspan/spamspan.js');
51
$files[] = process_file(__DIR__ . '/vendor/mikemcl/bignumber.js/bignumber.js');
52
$files[] = process_file(__DIR__ . '/vendor/emn178/js-sha3/src/sha3.js');
417 daniel-mar 53
 
368 daniel-mar 54
# ---
55
 
56
$files[] = 'var DEFAULT_LANGUAGE = '.json_encode(OIDplus::DEFAULT_LANGUAGE).';';
57
 
58
OIDplus::registerAllPlugins('language', 'OIDplusLanguagePlugin', null);
59
$translation_array = OIDplus::getTranslationArray();
60
$files[] = 'var language_messages = '.json_encode($translation_array).';';
61
 
62
//$tbl_prefix = OIDplus::baseConfig()->getValue('OIDPLUS_TABLENAME_PREFIX','');
63
//$files[] = 'var language_tblprefix = '.json_encode($tbl_prefix).';';
64
$files[] = 'var language_tblprefix = "<tableprefix>";'; // hide OIDPLUS_TABLENAME_PREFIX from the client
65
 
564 daniel-mar 66
// The CSRF token is set by index.php
67
$files[] = 'var csrf_token = '.js_escape(isset($_COOKIE['csrf_token']) ? $_COOKIE['csrf_token'] : '').';';
424 daniel-mar 68
 
561 daniel-mar 69
$files[] = 'var samesite_policy = '.js_escape(OIDplus::baseConfig()->getValue('COOKIE_SAMESITE_POLICY','Strict')).';';
70
 
448 daniel-mar 71
$files[] = process_file(__DIR__ . '/includes/oidplus_base.js');
215 daniel-mar 72
 
368 daniel-mar 73
# ---
74
 
420 daniel-mar 75
function process_file($filename) {
462 daniel-mar 76
        global $do_minify;
77
 
78
        $filename_min = preg_replace('/\.[^.]+$/', '.min.js', $filename);
79
        $filename_full = $filename;
80
 
81
        if ($do_minify) {
82
                if (file_exists($filename_min)) {
83
                        $filename = $filename_min;
84
                } else if (file_exists($filename_full)) {
85
                        $filename = $filename_full;
86
                } else {
87
                        return "console.error('Script file not found: $filename');";
88
                }
429 daniel-mar 89
        } else {
462 daniel-mar 90
                if (file_exists($filename_full)) {
91
                        $filename = $filename_full;
92
                } else if (file_exists($filename_min)) {
93
                        $filename = $filename_min;
94
                } else {
95
                        return "console.error('Script file not found: $filename');";
96
                }
97
        }
420 daniel-mar 98
 
490 daniel-mar 99
        $thisdir = __DIR__;
100
        $thisdir = str_replace('\\', '/', $thisdir); // change Windows Backslashes into Web-Slashes
101
        $filename = str_replace('\\', '/', $filename); // change Windows Backslashes into Web-Slashes
102
        $dir = dirname((strpos($filename, $thisdir.'/') === 0) ? substr($filename, strlen($thisdir.'/')) : $filename);
462 daniel-mar 103
        $cont = file_get_contents($filename);
420 daniel-mar 104
 
673 daniel-mar 105
        // 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"
462 daniel-mar 106
        $cont = str_replace("//# sourceMappingURL=", "//# sourceMappingURL=".$dir.'/', $cont);
107
 
108
        return $cont."\n\n";
420 daniel-mar 109
}
110
 
111
# ---
112
 
307 daniel-mar 113
$manifests = OIDplus::getAllPluginManifests('*Pages', true);
114
foreach ($manifests as $manifest) {
115
        foreach ($manifest->getJSFiles() as $js_file) {
420 daniel-mar 116
                $files[] = process_file($js_file);
277 daniel-mar 117
        }
118
}
112 daniel-mar 119
 
368 daniel-mar 120
# ---
362 daniel-mar 121
 
417 daniel-mar 122
if ($do_minify) {
368 daniel-mar 123
        $minifier = null;
124
        foreach ($files as $file) {
261 daniel-mar 125
                if (is_null($minifier)) {
126
                        $minifier = new Minify\JS($file);
127
                } else {
128
                        $minifier->add($file);
129
                }
368 daniel-mar 130
        }
131
        $out = is_null($minifier) ? '' : $minifier->minify();
132
} else {
133
        $out = '';
134
        foreach ($files as $file) {
364 daniel-mar 135
                if (file_exists($file)) {
136
                        $out .= file_get_contents($file)."\n";
137
                } else {
138
                        $out .= "$file\n";
139
                }
215 daniel-mar 140
        }
141
}
142
 
368 daniel-mar 143
# ---
218 daniel-mar 144
 
481 daniel-mar 145
if (OIDplus::baseConfig()->getValue('DEBUG')) {
146
        // In debug mode, we might get PHP error messages (see "error_reporting" above),
147
        // so it would be severe if we would allow ETAG! (since $out does not contain the PHP error messages!)
148
        header('Content-Type:application/javascript');
149
        echo $out;
150
} else {
151
        httpOutWithETag($out, 'application/javascript', 'oidplus.js');
652 daniel-mar 152
}