123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace OC\Template;
- use OC\SystemConfig;
- use OCP\Files\IAppData;
- use OCP\Files\NotFoundException;
- use OCP\Files\NotPermittedException;
- use OCP\Files\SimpleFS\ISimpleFolder;
- use OCP\ICache;
- use OCP\ICacheFactory;
- use OCP\IURLGenerator;
- use Psr\Log\LoggerInterface;
- class JSCombiner {
- /** @var IAppData */
- protected $appData;
- /** @var IURLGenerator */
- protected $urlGenerator;
- /** @var ICache */
- protected $depsCache;
- /** @var SystemConfig */
- protected $config;
- protected LoggerInterface $logger;
- /** @var ICacheFactory */
- private $cacheFactory;
- public function __construct(IAppData $appData,
- IURLGenerator $urlGenerator,
- ICacheFactory $cacheFactory,
- SystemConfig $config,
- LoggerInterface $logger) {
- $this->appData = $appData;
- $this->urlGenerator = $urlGenerator;
- $this->cacheFactory = $cacheFactory;
- $this->depsCache = $this->cacheFactory->createDistributed('JS-' . md5($this->urlGenerator->getBaseUrl()));
- $this->config = $config;
- $this->logger = $logger;
- }
- /**
- * @param string $root
- * @param string $file
- * @param string $app
- * @return bool
- */
- public function process($root, $file, $app) {
- if ($this->config->getValue('debug') || !$this->config->getValue('installed')) {
- return false;
- }
- $path = explode('/', $root . '/' . $file);
- $fileName = array_pop($path);
- $path = implode('/', $path);
- try {
- $folder = $this->appData->getFolder($app);
- } catch (NotFoundException $e) {
- // creating css appdata folder
- $folder = $this->appData->newFolder($app);
- }
- if ($this->isCached($fileName, $folder)) {
- return true;
- }
- return $this->cache($path, $fileName, $folder);
- }
- /**
- * @param string $fileName
- * @param ISimpleFolder $folder
- * @return bool
- */
- protected function isCached($fileName, ISimpleFolder $folder) {
- $fileName = str_replace('.json', '.js', $fileName);
- if (!$folder->fileExists($fileName)) {
- return false;
- }
- $fileName = $fileName . '.deps';
- try {
- $deps = $this->depsCache->get($folder->getName() . '-' . $fileName);
- $fromCache = true;
- if ($deps === null || $deps === '') {
- $fromCache = false;
- $depFile = $folder->getFile($fileName);
- $deps = $depFile->getContent();
- }
- // check again
- if ($deps === null || $deps === '') {
- $this->logger->info('JSCombiner: deps file empty: ' . $fileName);
- return false;
- }
- $deps = json_decode($deps, true);
- if ($deps === null) {
- return false;
- }
- foreach ($deps as $file => $mtime) {
- if (!file_exists($file) || filemtime($file) > $mtime) {
- return false;
- }
- }
- if ($fromCache === false) {
- $this->depsCache->set($folder->getName() . '-' . $fileName, json_encode($deps));
- }
- return true;
- } catch (NotFoundException $e) {
- return false;
- }
- }
- /**
- * @param string $path
- * @param string $fileName
- * @param ISimpleFolder $folder
- * @return bool
- */
- protected function cache($path, $fileName, ISimpleFolder $folder) {
- $deps = [];
- $fullPath = $path . '/' . $fileName;
- $data = json_decode(file_get_contents($fullPath));
- $deps[$fullPath] = filemtime($fullPath);
- $res = '';
- foreach ($data as $file) {
- $filePath = $path . '/' . $file;
- if (is_file($filePath)) {
- $res .= file_get_contents($filePath);
- $res .= PHP_EOL . PHP_EOL;
- $deps[$filePath] = filemtime($filePath);
- }
- }
- $fileName = str_replace('.json', '.js', $fileName);
- try {
- $cachedfile = $folder->getFile($fileName);
- } catch (NotFoundException $e) {
- $cachedfile = $folder->newFile($fileName);
- }
- $depFileName = $fileName . '.deps';
- try {
- $depFile = $folder->getFile($depFileName);
- } catch (NotFoundException $e) {
- $depFile = $folder->newFile($depFileName);
- }
- try {
- $gzipFile = $folder->getFile($fileName . '.gzip'); # Safari doesn't like .gz
- } catch (NotFoundException $e) {
- $gzipFile = $folder->newFile($fileName . '.gzip'); # Safari doesn't like .gz
- }
- try {
- $cachedfile->putContent($res);
- $deps = json_encode($deps);
- $depFile->putContent($deps);
- $this->depsCache->set($folder->getName() . '-' . $depFileName, $deps);
- $gzipFile->putContent(gzencode($res, 9));
- $this->logger->debug('JSCombiner: successfully cached: ' . $fileName);
- return true;
- } catch (NotPermittedException|NotFoundException $e) {
- $this->logger->error('JSCombiner: unable to cache: ' . $fileName);
- return false;
- }
- }
- /**
- * @param string $appName
- * @param string $fileName
- * @return string
- */
- public function getCachedJS($appName, $fileName) {
- $tmpfileLoc = explode('/', $fileName);
- $fileName = array_pop($tmpfileLoc);
- $fileName = str_replace('.json', '.js', $fileName);
- return substr($this->urlGenerator->linkToRoute('core.Js.getJs', ['fileName' => $fileName, 'appName' => $appName]), strlen(\OC::$WEBROOT) + 1);
- }
- /**
- * @param string $root
- * @param string $file
- * @return string[]
- */
- public function getContent($root, $file) {
- /** @var array $data */
- $data = json_decode(file_get_contents($root . '/' . $file));
- if (!is_array($data)) {
- return [];
- }
- $path = explode('/', $file);
- array_pop($path);
- $path = implode('/', $path);
- $result = [];
- foreach ($data as $f) {
- $result[] = $path . '/' . $f;
- }
- return $result;
- }
- /**
- * Clear cache with combined javascript files
- *
- * @throws NotFoundException
- */
- public function resetCache() {
- $this->cacheFactory->createDistributed('JS-')->clear();
- $appDirectory = $this->appData->getDirectoryListing();
- foreach ($appDirectory as $folder) {
- foreach ($folder->getDirectoryListing() as $file) {
- $file->delete();
- }
- }
- }
- }
|