summaryrefslogtreecommitdiffstats
path: root/lib/private/Template/SCSSCacher.php
blob: 43160a9c1696e530d7338fd0ef9e0803bf8ed793 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?php
/**
 * @copyright Copyright (c) 2016, John Molakvoæ (skjnldsv@protonmail.com)
 *
 * @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 OCP\Files\NotFoundException;

class SCSSCacher {

	protected $root;
	protected $folder;
	protected $file;
	protected $fileName;
	protected $fileLoc;
	protected $fileCache;
	protected $rootCssLoc;

	/** @var \OCP\ILogger */
	protected $logger;
	protected $appData;

	/**
	 * @param \OCP\ILogger $logger
	 * @param string $root
	 * @param string $file
	 */
	public function __construct(\OCP\ILogger $logger, $root, $file, $appData) {
		$this->logger = $logger;
		$this->appData = $appData;
		$this->root = $root;
		$this->file = explode('/', $root.'/'.$file);

		$this->fileNameSCSS = array_pop($this->file);
		$this->fileNameCSS = str_replace('.scss', '.css', $this->fileNameSCSS);
		$this->fileLoc = implode('/', $this->file);

		// base uri to css file
		$this->rootCssLoc = explode('/', $file);
		array_pop($this->rootCssLoc);
		$this->rootCssLoc = implode('/', $this->rootCssLoc);

		try {
			$this->folder = $this->appData->getFolder('css');
		} catch(NotFoundException $e) {
			// creating css appdata folder
			$this->folder = $this->appData->newFolder('css');
		}
	}

	public function process() {

		if($this->is_cached()) {
			return true;
		} else {
			return $this->cache();
		}
		return false;
	}

	private function is_cached() {
		try{
			$cachedfile = $this->folder->getFile($this->fileNameCSS);
			if( $cachedfile->getMTime() > filemtime($this->fileLoc.'/'.$this->fileNameSCSS)
				&& $cachedfile->getSize() > 0 ) {
				return true;
			}
		} catch(NotFoundException $e) {
			return false;
		}
        return false;
	}

	private function cache() {
		$scss = new Compiler();
		$scss->setImportPaths($this->fileLoc);
		if(\OC::$server->getSystemConfig()->getValue('debug')) {
			// Debug mode
			$scss->setFormatter('Leafo\ScssPhp\Formatter\Expanded');
			$scss->setLineNumberStyle(Compiler::LINE_COMMENTS);
		} else {
			// Compression
			$scss->setFormatter('Leafo\ScssPhp\Formatter\Crunched');
		}

		try {
			$cachedfile = $this->folder->getFile($this->fileNameCSS);
		} catch(NotFoundException $e) {
			$cachedfile = $this->folder->newFile($this->fileNameCSS);
		}

		try {
			$compiledScss = $scss->compile('@import "'.$this->fileNameSCSS.'";');
		} catch(ParserException $e) {
			$this->logger->error($e, ['app' => 'SCSSPHP']);
			return false;
		}

		if($cachedfile->putContent($this->rebaseUrls($compiledScss))) {
			$this->logger->debug($root.'/'.$file.' compiled and successfully cached', ['app' => 'SCSSPHP']);
			return true;
		}
		return false;
	}

	private function rebaseUrls($css) {
		$re = '/url\([\'"](.*)[\'"]\)/x';
		$subst = 'url(\'../'.$this->rootCssLoc.'/$1\')';
		return preg_replace($re, $subst, $css);
	}

	public function getCachedSCSS() {
		return $this->fileCache;
	}
}