331 lines
9.3 KiB
PHP
331 lines
9.3 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2016, John Molakvoæ (skjnldsv@protonmail.com)
|
|
*
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
|
* @author Julius Haertl <jus@bitgrid.net>
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
*
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
namespace OC\Template;
|
|
|
|
use Leafo\ScssPhp\Compiler;
|
|
use Leafo\ScssPhp\Exception\ParserException;
|
|
use Leafo\ScssPhp\Formatter\Crunched;
|
|
use Leafo\ScssPhp\Formatter\Expanded;
|
|
use OC\Files\AppData\Factory;
|
|
use OCP\Files\IAppData;
|
|
use OCP\Files\NotFoundException;
|
|
use OCP\Files\NotPermittedException;
|
|
use OCP\Files\SimpleFS\ISimpleFile;
|
|
use OCP\Files\SimpleFS\ISimpleFolder;
|
|
use OCP\ICache;
|
|
use OCP\IConfig;
|
|
use OCP\ILogger;
|
|
use OCP\IURLGenerator;
|
|
|
|
class SCSSCacher {
|
|
|
|
/** @var ILogger */
|
|
protected $logger;
|
|
|
|
/** @var IAppData */
|
|
protected $appData;
|
|
|
|
/** @var IURLGenerator */
|
|
protected $urlGenerator;
|
|
|
|
/** @var IConfig */
|
|
protected $config;
|
|
|
|
/** @var string */
|
|
protected $serverRoot;
|
|
|
|
/** @var ICache */
|
|
protected $depsCache;
|
|
|
|
/**
|
|
* @param ILogger $logger
|
|
* @param Factory $appDataFactory
|
|
* @param IURLGenerator $urlGenerator
|
|
* @param IConfig $config
|
|
* @param \OC_Defaults $defaults
|
|
* @param string $serverRoot
|
|
* @param ICache $depsCache
|
|
*/
|
|
public function __construct(ILogger $logger,
|
|
Factory $appDataFactory,
|
|
IURLGenerator $urlGenerator,
|
|
IConfig $config,
|
|
\OC_Defaults $defaults,
|
|
$serverRoot,
|
|
ICache $depsCache) {
|
|
$this->logger = $logger;
|
|
$this->appData = $appDataFactory->get('css');
|
|
$this->urlGenerator = $urlGenerator;
|
|
$this->config = $config;
|
|
$this->defaults = $defaults;
|
|
$this->serverRoot = $serverRoot;
|
|
$this->depsCache = $depsCache;
|
|
}
|
|
|
|
/**
|
|
* Process the caching process if needed
|
|
* @param string $root Root path to the nextcloud installation
|
|
* @param string $file
|
|
* @param string $app The app name
|
|
* @return boolean
|
|
*/
|
|
public function process($root, $file, $app) {
|
|
$path = explode('/', $root . '/' . $file);
|
|
|
|
$fileNameSCSS = array_pop($path);
|
|
$fileNameCSS = $this->prependBaseurlPrefix(str_replace('.scss', '.css', $fileNameSCSS));
|
|
|
|
$path = implode('/', $path);
|
|
$webDir = $this->getWebDir($path, $app, $this->serverRoot, \OC::$WEBROOT);
|
|
|
|
try {
|
|
$folder = $this->appData->getFolder($app);
|
|
} catch(NotFoundException $e) {
|
|
// creating css appdata folder
|
|
$folder = $this->appData->newFolder($app);
|
|
}
|
|
|
|
if(!$this->variablesChanged() && $this->isCached($fileNameCSS, $folder)) {
|
|
return true;
|
|
}
|
|
|
|
return $this->cache($path, $fileNameCSS, $fileNameSCSS, $folder, $webDir);
|
|
}
|
|
|
|
/**
|
|
* @param $appName
|
|
* @param $fileName
|
|
* @return ISimpleFile
|
|
*/
|
|
public function getCachedCSS($appName, $fileName) {
|
|
$folder = $this->appData->getFolder($appName);
|
|
return $folder->getFile($this->prependBaseurlPrefix($fileName));
|
|
}
|
|
|
|
/**
|
|
* Check if the file is cached or not
|
|
* @param string $fileNameCSS
|
|
* @param ISimpleFolder $folder
|
|
* @return boolean
|
|
*/
|
|
private function isCached($fileNameCSS, ISimpleFolder $folder) {
|
|
try {
|
|
$cachedFile = $folder->getFile($fileNameCSS);
|
|
if ($cachedFile->getSize() > 0) {
|
|
$depFileName = $fileNameCSS . '.deps';
|
|
$deps = $this->depsCache->get($folder->getName() . '-' . $depFileName);
|
|
if ($deps === null) {
|
|
$depFile = $folder->getFile($depFileName);
|
|
$deps = $depFile->getContent();
|
|
//Set to memcache for next run
|
|
$this->depsCache->set($folder->getName() . '-' . $depFileName, $deps);
|
|
}
|
|
$deps = json_decode($deps, true);
|
|
|
|
foreach ($deps as $file=>$mtime) {
|
|
if (!file_exists($file) || filemtime($file) > $mtime) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
} catch(NotFoundException $e) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Check if the variables file has changed
|
|
* @return bool
|
|
*/
|
|
private function variablesChanged() {
|
|
$injectedVariables = $this->getInjectedVariables();
|
|
if($this->config->getAppValue('core', 'scss.variables') !== md5($injectedVariables)) {
|
|
$this->resetCache();
|
|
$this->config->setAppValue('core', 'scss.variables', md5($injectedVariables));
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Cache the file with AppData
|
|
* @param string $path
|
|
* @param string $fileNameCSS
|
|
* @param string $fileNameSCSS
|
|
* @param ISimpleFolder $folder
|
|
* @param string $webDir
|
|
* @return boolean
|
|
*/
|
|
private function cache($path, $fileNameCSS, $fileNameSCSS, ISimpleFolder $folder, $webDir) {
|
|
$scss = new Compiler();
|
|
$scss->setImportPaths([
|
|
$path,
|
|
$this->serverRoot . '/core/css/',
|
|
]);
|
|
// Continue after throw
|
|
$scss->setIgnoreErrors(true);
|
|
if($this->config->getSystemValue('debug')) {
|
|
// Debug mode
|
|
$scss->setFormatter(Expanded::class);
|
|
$scss->setLineNumberStyle(Compiler::LINE_COMMENTS);
|
|
} else {
|
|
// Compression
|
|
$scss->setFormatter(Crunched::class);
|
|
}
|
|
|
|
try {
|
|
$cachedfile = $folder->getFile($fileNameCSS);
|
|
} catch(NotFoundException $e) {
|
|
$cachedfile = $folder->newFile($fileNameCSS);
|
|
}
|
|
|
|
$depFileName = $fileNameCSS . '.deps';
|
|
try {
|
|
$depFile = $folder->getFile($depFileName);
|
|
} catch (NotFoundException $e) {
|
|
$depFile = $folder->newFile($depFileName);
|
|
}
|
|
|
|
// Compile
|
|
try {
|
|
$compiledScss = $scss->compile(
|
|
'@import "variables.scss";' .
|
|
$this->getInjectedVariables() .
|
|
'@import "'.$fileNameSCSS.'";');
|
|
} catch(ParserException $e) {
|
|
$this->logger->error($e, ['app' => 'core']);
|
|
return false;
|
|
}
|
|
|
|
// Gzip file
|
|
try {
|
|
$gzipFile = $folder->getFile($fileNameCSS . '.gzip'); # Safari doesn't like .gz
|
|
} catch (NotFoundException $e) {
|
|
$gzipFile = $folder->newFile($fileNameCSS . '.gzip'); # Safari doesn't like .gz
|
|
}
|
|
|
|
try {
|
|
$data = $this->rebaseUrls($compiledScss, $webDir);
|
|
$cachedfile->putContent($data);
|
|
$deps = json_encode($scss->getParsedFiles());
|
|
$depFile->putContent($deps);
|
|
$this->depsCache->set($folder->getName() . '-' . $depFileName, $deps);
|
|
$gzipFile->putContent(gzencode($data, 9));
|
|
$this->logger->debug($webDir.'/'.$fileNameSCSS.' compiled and successfully cached', ['app' => 'core']);
|
|
return true;
|
|
} catch(NotPermittedException $e) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Reset scss cache by deleting all generated css files
|
|
* We need to regenerate all files when variables change
|
|
*/
|
|
private function resetCache() {
|
|
$appDirectory = $this->appData->getDirectoryListing();
|
|
if(empty($appDirectory)){
|
|
return;
|
|
}
|
|
foreach ($appDirectory as $folder) {
|
|
foreach ($folder->getDirectoryListing() as $file) {
|
|
if (substr($file->getName(), -3) === "css" || substr($file->getName(), -4) === "deps") {
|
|
$file->delete();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return string SCSS code for variables from OC_Defaults
|
|
*/
|
|
private function getInjectedVariables() {
|
|
$variables = '';
|
|
foreach ($this->defaults->getScssVariables() as $key => $value) {
|
|
$variables .= '$' . $key . ': ' . $value . ';';
|
|
}
|
|
return $variables;
|
|
}
|
|
|
|
/**
|
|
* Add the correct uri prefix to make uri valid again
|
|
* @param string $css
|
|
* @param string $webDir
|
|
* @return string
|
|
*/
|
|
private function rebaseUrls($css, $webDir) {
|
|
$re = '/url\([\'"]([\.\w?=\/-]*)[\'"]\)/x';
|
|
$subst = 'url(\''.$webDir.'/$1\')';
|
|
return preg_replace($re, $subst, $css);
|
|
}
|
|
|
|
/**
|
|
* Return the cached css file uri
|
|
* @param string $appName the app name
|
|
* @param string $fileName
|
|
* @return string
|
|
*/
|
|
public function getCachedSCSS($appName, $fileName) {
|
|
$tmpfileLoc = explode('/', $fileName);
|
|
$fileName = array_pop($tmpfileLoc);
|
|
$fileName = $this->prependBaseurlPrefix(str_replace('.scss', '.css', $fileName));
|
|
|
|
return substr($this->urlGenerator->linkToRoute('core.Css.getCss', array('fileName' => $fileName, 'appName' => $appName)), strlen(\OC::$WEBROOT) + 1);
|
|
}
|
|
|
|
/**
|
|
* Prepend hashed base url to the css file
|
|
* @param $cssFile
|
|
* @return string
|
|
*/
|
|
private function prependBaseurlPrefix($cssFile) {
|
|
return md5($this->urlGenerator->getBaseUrl()) . '-' . $cssFile;
|
|
}
|
|
|
|
/**
|
|
* Get WebDir root
|
|
* @param string $path the css file path
|
|
* @param string $appName the app name
|
|
* @param string $serverRoot the server root path
|
|
* @param string $webRoot the nextcloud installation root path
|
|
* @return string the webDir
|
|
*/
|
|
private function getWebDir($path, $appName, $serverRoot, $webRoot) {
|
|
// Detect if path is within server root AND if path is within an app path
|
|
if ( strpos($path, $serverRoot) === false && $appWebPath = \OC_App::getAppWebPath($appName)) {
|
|
// Get the file path within the app directory
|
|
$appDirectoryPath = explode($appName, $path)[1];
|
|
// Remove the webroot
|
|
return str_replace($webRoot, '', $appWebPath.$appDirectoryPath);
|
|
}
|
|
return $webRoot.substr($path, strlen($serverRoot));
|
|
}
|
|
}
|