Subversion Repositories oidplus

Rev

Rev 1050 | Rev 1131 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. <?php
  2.  
  3. /*
  4.  * OIDplus 2.0
  5.  * Copyright 2019 - 2022 Daniel Marschall, ViaThinkSoft
  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 ViaThinkSoft\OIDplus\OIDplus;
  21. use ViaThinkSoft\OIDplus\OIDplusLanguagePlugin;
  22. use MatthiasMullie\Minify;
  23.  
  24. require_once __DIR__ . '/includes/oidplus.inc.php';
  25.  
  26. error_reporting(OIDplus::baseConfig()->getValue('DEBUG') ? E_ALL : 0);
  27. @ini_set('display_errors', OIDplus::baseConfig()->getValue('DEBUG') ? '1' : '0');
  28.  
  29. $files = array();
  30.  
  31. $do_minify = OIDplus::baseConfig()->getValue('MINIFY_JS', true);
  32.  
  33. $files[] = process_file(__DIR__ . '/vendor/components/jquery/jquery.js');
  34. if (isInternetExplorer()) {
  35.         // There are several JS IE11 incompatibilities in Bootstrap 5:
  36.         // - "const getUID = prefix => {" which is another syntax of "getUID: function getUID(prefix) {"
  37.         // - "Template strings" `...`
  38.         // - let {.....} = ....
  39.         // (more?)
  40.         // We don't include bootstrap.js for Internet Explorer.
  41.         // Therefore, the page is still displayed, although without fancy JS stuff of bootstrap
  42.         // Use bootstrap 4.5.0 JS as fallback (Note that the CSS is still 5.x!)
  43.         $files[] = process_file(__DIR__ . '/vendor/bootstrap4.min.js');
  44.         $files[] = process_file(__DIR__ . '/vendor/ie11CustomProperties.min.js');
  45. } else {
  46.         $files[] = process_file(__DIR__ . '/vendor/twbs/bootstrap/dist/js/bootstrap.js');
  47. }
  48. $files[] = process_file(__DIR__ . '/vendor/vakata/jstree/dist/jstree.js');
  49. $files[] = process_file(__DIR__ . '/vendor/tinymce/tinymce/tinymce.js');
  50. $files[] = process_file(__DIR__ . '/vendor/components/jqueryui/jquery-ui.js');
  51. $files[] = process_file(__DIR__ . '/vendor/gedmarc/layout/dist/jquery.layout_and_plugins.js');
  52. $files[] = process_file(__DIR__ . '/vendor/spamspan/spamspan/spamspan.js');
  53. $files[] = process_file(__DIR__ . '/vendor/emn178/js-sha3/src/sha3.js');
  54. if (!isInternetExplorer()) {
  55.         // Non IE gets Toast instead of alert() for some message types
  56.         // (BS5 Utils is not compatible with Internet Explorer)
  57.         $files[] = process_file(__DIR__ . '/vendor/script47/bs5-utils/dist/js/Bs5Utils.js');
  58. }
  59.  
  60. # ---
  61.  
  62. $files[] = 'var DEFAULT_LANGUAGE = '.json_encode(OIDplus::getDefaultLang()).';';
  63.  
  64. OIDplus::registerAllPlugins('language', OIDplusLanguagePlugin::class, null);
  65. $translation_array = OIDplus::getTranslationArray();
  66. $files[] = 'var language_messages = '.json_encode($translation_array).';';
  67.  
  68. //$tbl_prefix = OIDplus::baseConfig()->getValue('TABLENAME_PREFIX','');
  69. //$files[] = 'var language_tblprefix = '.json_encode($tbl_prefix).';';
  70. $files[] = 'var language_tblprefix = "<tableprefix>";'; // hide TABLENAME_PREFIX from the client
  71.  
  72. $files[] = 'var oidplus_webpath = '.js_escape(OIDplus::webpath(null, OIDplus::PATH_RELATIVE_TO_ROOT)).';';
  73.  
  74. // The CSRF token is set by index.php
  75. // TODO: can there race-conditions if we set csrf_token here? Or should we set it as inline-script in index.php ?
  76. $files[] = 'var csrf_token = '.js_escape(isset($_COOKIE['csrf_token']) ? $_COOKIE['csrf_token'] : '').';';
  77.  
  78. $files[] = 'var samesite_policy = '.js_escape(OIDplus::baseConfig()->getValue('COOKIE_SAMESITE_POLICY','Strict')).';';
  79.  
  80. $files[] = process_file(__DIR__ . '/includes/oidplus_functions.js');
  81. $files[] = process_file(__DIR__ . '/includes/oidplus_language.js');
  82. $files[] = process_file(__DIR__ . '/includes/oidplus_base.js');
  83.  
  84. # ---
  85.  
  86. function process_file($filename) {
  87.         global $do_minify;
  88.  
  89.         $filename_min = preg_replace('/\.[^.]+$/', '.min.js', $filename);
  90.         $filename_full = $filename;
  91.  
  92.         if ($do_minify) {
  93.                 if (file_exists($filename_min)) {
  94.                         $filename = $filename_min;
  95.                 } else if (file_exists($filename_full)) {
  96.                         $filename = $filename_full;
  97.                 } else {
  98.                         return "console.error('Script file not found: $filename');";
  99.                 }
  100.         } else {
  101.                 if (file_exists($filename_full)) {
  102.                         $filename = $filename_full;
  103.                 } else if (file_exists($filename_min)) {
  104.                         $filename = $filename_min;
  105.                 } else {
  106.                         return "console.error('Script file not found: $filename');";
  107.                 }
  108.         }
  109.  
  110.         $thisdir = __DIR__;
  111.         $thisdir = str_replace('\\', '/', $thisdir); // change Windows Backslashes into Web-Slashes
  112.         $filename = str_replace('\\', '/', $filename); // change Windows Backslashes into Web-Slashes
  113.         $dir = dirname((strpos($filename, $thisdir.'/') === 0) ? substr($filename, strlen($thisdir.'/')) : $filename);
  114.         $cont = file_get_contents($filename);
  115.  
  116.         // 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"
  117.         $cont = str_replace("//# sourceMappingURL=", "//# sourceMappingURL=".$dir.'/', $cont);
  118.  
  119.         return $cont."\n\n";
  120. }
  121.  
  122. # ---
  123.  
  124. $manifests = OIDplus::getAllPluginManifests(implode(',',OIDplus::INTERACTIVE_PLUGIN_TYPES), true); // due to interface gridGeneratorLinks (1.3.6.1.4.1.37476.2.5.2.3.6) this plugin type can also have CSS
  125. foreach ($manifests as $manifest) {
  126.         foreach ($manifest->getJSFiles() as $js_file) {
  127.                 $files[] = process_file($js_file);
  128.         }
  129. }
  130.  
  131. # ---
  132.  
  133. if ($do_minify) {
  134.         $minifier = null;
  135.         foreach ($files as $file) {
  136.                 if (is_null($minifier)) {
  137.                         $minifier = new Minify\JS($file);
  138.                 } else {
  139.                         $minifier->add($file);
  140.                 }
  141.         }
  142.         $out = is_null($minifier) ? '' : $minifier->minify(); /** @phpstan-ignore-line */
  143. } else {
  144.         $out = '';
  145.         foreach ($files as $file) {
  146.                 if (file_exists($file)) {
  147.                         $out .= file_get_contents($file)."\n";
  148.                 } else {
  149.                         $out .= "$file\n";
  150.                 }
  151.         }
  152. }
  153.  
  154. # ---
  155.  
  156. if (OIDplus::baseConfig()->getValue('DEBUG')) {
  157.         // In debug mode, we might get PHP error messages (see "error_reporting" above),
  158.         // so it would be severe if we would allow ETAG! (since $out does not contain the PHP error messages!)
  159.         header('Content-Type:application/javascript');
  160.         echo $out;
  161. } else {
  162.         httpOutWithETag($out, 'application/javascript', 'oidplus.js');
  163. }
  164.