Merge branch 'MDL-58454-master' of git://github.com/junpataleta/moodle
[moodle.git] / lib / classes / scss.php
blob22810801e15e26f77f0c8f1350068f616e798b01
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Moodle implementation of SCSS.
20 * @package core
21 * @copyright 2016 Frédéric Massart
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 defined('MOODLE_INTERNAL') || die();
27 /**
28 * Moodle SCSS compiler class.
30 * @package core
31 * @copyright 2016 Frédéric Massart
32 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
34 class core_scss extends \Leafo\ScssPhp\Compiler {
36 /** @var string The path to the SCSS file. */
37 protected $scssfile;
38 /** @var array Bits of SCSS content to prepend. */
39 protected $scssprepend = array();
40 /** @var array Bits of SCSS content. */
41 protected $scsscontent = array();
43 /**
44 * Add variables.
46 * @param array $scss Associative array of variables and their values.
47 * @return void
49 public function add_variables(array $variables) {
50 $this->setVariables($variables);
53 /**
54 * Append raw SCSS to what's to compile.
56 * @param string $scss SCSS code.
57 * @return void
59 public function append_raw_scss($scss) {
60 $this->scsscontent[] = $scss;
63 /**
64 * Prepend raw SCSS to what's to compile.
66 * @param string $scss SCSS code.
67 * @return void
69 public function prepend_raw_scss($scss) {
70 $this->scssprepend[] = $scss;
73 /**
74 * Set the file to compile from.
76 * The purpose of this method is to provide a way to import the
77 * content of a file without messing with the import directories.
79 * @param string $filepath The path to the file.
80 * @return void
82 public function set_file($filepath) {
83 $this->scssfile = $filepath;
84 $this->setImportPaths([dirname($filepath)]);
87 /**
88 * Compiles to CSS.
90 * @return string
92 public function to_css() {
93 $content = implode(';', $this->scssprepend);
94 if (!empty($this->scssfile)) {
95 $content .= file_get_contents($this->scssfile);
97 $content .= implode(';', $this->scsscontent);
98 return $this->compile($content);
102 * Compile scss.
104 * Overrides ScssPHP's implementation, using the SassC compiler if it is available.
106 * @param string $code SCSS to compile.
107 * @param string $path Path to SCSS to compile.
109 * @return string The compiled CSS.
111 public function compile($code, $path = null) {
112 global $CFG;
114 $pathtosassc = trim($CFG->pathtosassc ?? '');
116 if (!empty($pathtosassc) && is_executable($pathtosassc) && !is_dir($pathtosassc)) {
117 $process = proc_open(
118 $pathtosassc . ' -I' . implode(':', $this->importPaths) . ' -s',
120 ['pipe', 'r'], // Set the process stdin pipe to read mode.
121 ['pipe', 'w'], // Set the process stdout pipe to write mode.
122 ['pipe', 'w'] // Set the process stderr pipe to write mode.
124 $pipes // Pipes become available in $pipes (pass by reference).
126 if (is_resource($process)) {
127 fwrite($pipes[0], $code); // Write the raw scss to the sassc process stdin.
128 fclose($pipes[0]);
130 $stdout = stream_get_contents($pipes[1]);
131 $stderr = stream_get_contents($pipes[2]);
133 fclose($pipes[1]);
134 fclose($pipes[2]);
136 // The proc_close function returns the process exit status. Anything other than 0 is bad.
137 if (proc_close($process) !== 0) {
138 throw new coding_exception($stderr);
141 // Compiled CSS code will be available from stdout.
142 return $stdout;
146 return parent::compile($code, $path);
150 * Compile child; returns a value to halt execution
152 * @param array $child
153 * @param \Leafo\ScssPhp\Formatter\OutputBlock $out
155 * @return array|null
157 protected function compileChild($child, \Leafo\ScssPhp\Formatter\OutputBlock $out) {
158 switch($child[0]) {
159 case \Leafo\ScssPhp\Type::T_SCSSPHP_IMPORT_ONCE:
160 case \Leafo\ScssPhp\Type::T_IMPORT:
161 list(, $rawpath) = $child;
162 $rawpath = $this->reduce($rawpath);
163 $path = $this->compileStringContent($rawpath);
164 if ($path = $this->findImport($path)) {
165 if ($this->is_valid_file($path)) {
166 return parent::compileChild($child, $out);
167 } else {
168 // Sneaky stuff, don't let non scss file in.
169 debugging("Can't import scss file - " . $path, DEBUG_DEVELOPER);
172 break;
173 default:
174 return parent::compileChild($child, $out);
179 * Is the given file valid for import ?
181 * @param $path
182 * @return bool
184 protected function is_valid_file($path) {
185 global $CFG;
187 $realpath = realpath($path);
189 // Additional theme directory.
190 $addthemedirectory = core_component::get_plugin_types()['theme'];
191 $addrealroot = realpath($addthemedirectory);
193 // Original theme directory.
194 $themedirectory = $CFG->dirroot . "/theme";
195 $realroot = realpath($themedirectory);
197 // File should end in .scss and must be in sites theme directory, else ignore it.
198 $pathvalid = $realpath !== false;
199 $pathvalid = $pathvalid && (substr($path, -5) === '.scss');
200 $pathvalid = $pathvalid && (strpos($realpath, $realroot) === 0 || strpos($realpath, $addrealroot) === 0);
201 return $pathvalid;