JSResourceLocator.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Bart Visscher <bartv@thisnet.nl>
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Joas Schilling <coding@schilljs.com>
  8. * @author Kyle Fazzari <kyrofa@ubuntu.com>
  9. * @author Morris Jobke <hey@morrisjobke.de>
  10. * @author Roeland Jago Douma <roeland@famdouma.nl>
  11. * @author Thomas Müller <thomas.mueller@tmit.eu>
  12. *
  13. * @license AGPL-3.0
  14. *
  15. * This code is free software: you can redistribute it and/or modify
  16. * it under the terms of the GNU Affero General Public License, version 3,
  17. * as published by the Free Software Foundation.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU Affero General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU Affero General Public License, version 3,
  25. * along with this program. If not, see <http://www.gnu.org/licenses/>
  26. *
  27. */
  28. namespace OC\Template;
  29. use Psr\Log\LoggerInterface;
  30. class JSResourceLocator extends ResourceLocator {
  31. /** @var JSCombiner */
  32. protected $jsCombiner;
  33. public function __construct(LoggerInterface $logger, JSCombiner $JSCombiner) {
  34. parent::__construct($logger);
  35. $this->jsCombiner = $JSCombiner;
  36. }
  37. /**
  38. * @param string $script
  39. */
  40. public function doFind($script) {
  41. $theme_dir = 'themes/'.$this->theme.'/';
  42. // Extracting the appId and the script file name
  43. $app = substr($script, 0, strpos($script, '/'));
  44. $scriptName = basename($script);
  45. if (strpos($script, '/l10n/') !== false) {
  46. // For language files we try to load them all, so themes can overwrite
  47. // single l10n strings without having to translate all of them.
  48. $found = 0;
  49. $found += $this->appendIfExist($this->serverroot, 'core/'.$script.'.js');
  50. $found += $this->appendIfExist($this->serverroot, $theme_dir.'core/'.$script.'.js');
  51. $found += $this->appendIfExist($this->serverroot, $script.'.js');
  52. $found += $this->appendIfExist($this->serverroot, $theme_dir.$script.'.js');
  53. $found += $this->appendIfExist($this->serverroot, 'apps/'.$script.'.js');
  54. $found += $this->appendIfExist($this->serverroot, $theme_dir.'apps/'.$script.'.js');
  55. if ($found) {
  56. return;
  57. }
  58. } elseif ($this->appendIfExist($this->serverroot, $theme_dir.'apps/'.$script.'.js')
  59. || $this->appendIfExist($this->serverroot, $theme_dir.$script.'.js')
  60. || $this->appendIfExist($this->serverroot, $script.'.js')
  61. || $this->appendIfExist($this->serverroot, $theme_dir . "dist/$app-$scriptName.js")
  62. || $this->appendIfExist($this->serverroot, "dist/$app-$scriptName.js")
  63. || $this->appendIfExist($this->serverroot, 'apps/'.$script.'.js')
  64. || $this->cacheAndAppendCombineJsonIfExist($this->serverroot, $script.'.json')
  65. || $this->appendIfExist($this->serverroot, $theme_dir.'core/'.$script.'.js')
  66. || $this->appendIfExist($this->serverroot, 'core/'.$script.'.js')
  67. || (strpos($scriptName, '/') === -1 && ($this->appendIfExist($this->serverroot, $theme_dir . "dist/core-$scriptName.js")
  68. || $this->appendIfExist($this->serverroot, "dist/core-$scriptName.js")))
  69. || $this->cacheAndAppendCombineJsonIfExist($this->serverroot, 'core/'.$script.'.json')
  70. ) {
  71. return;
  72. }
  73. $script = substr($script, strpos($script, '/') + 1);
  74. $app_path = \OC_App::getAppPath($app);
  75. $app_url = \OC_App::getAppWebPath($app);
  76. if ($app_path !== false) {
  77. // Account for the possibility of having symlinks in app path. Only
  78. // do this if $app_path is set, because an empty argument to realpath
  79. // gets turned into cwd.
  80. $app_path = realpath($app_path);
  81. }
  82. // missing translations files fill be ignored
  83. if (strpos($script, 'l10n/') === 0) {
  84. $this->appendIfExist($app_path, $script . '.js', $app_url);
  85. return;
  86. }
  87. if ($app_path === false && $app_url === false) {
  88. $this->logger->error('Could not find resource {resource} to load', [
  89. 'resource' => $app . '/' . $script . '.js',
  90. 'app' => 'jsresourceloader',
  91. ]);
  92. return;
  93. }
  94. if (!$this->cacheAndAppendCombineJsonIfExist($app_path, $script.'.json', $app)) {
  95. $this->append($app_path, $script . '.js', $app_url);
  96. }
  97. }
  98. /**
  99. * @param string $script
  100. */
  101. public function doFindTheme($script) {
  102. }
  103. protected function cacheAndAppendCombineJsonIfExist($root, $file, $app = 'core') {
  104. if (is_file($root.'/'.$file)) {
  105. if ($this->jsCombiner->process($root, $file, $app)) {
  106. $this->append($this->serverroot, $this->jsCombiner->getCachedJS($app, $file), false, false);
  107. } else {
  108. // Add all the files from the json
  109. $files = $this->jsCombiner->getContent($root, $file);
  110. $app_url = \OC_App::getAppWebPath($app);
  111. foreach ($files as $jsFile) {
  112. $this->append($root, $jsFile, $app_url);
  113. }
  114. }
  115. return true;
  116. }
  117. return false;
  118. }
  119. }