xref: /dokuwiki/lib/exe/css.php (revision 8c7c53b0321a3cd3116b8d3b2ad27863a38dece7)
1<?php
2/**
3 * DokuWiki StyleSheet creator
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Andreas Gohr <andi@splitbrain.org>
7 */
8use dokuwiki\StyleUtils;
9use dokuwiki\Cache\Cache;
10use dokuwiki\Extension\Event;
11
12if(!defined('DOKU_INC')) define('DOKU_INC', __DIR__ .'/../../');
13if(!defined('NOSESSION')) define('NOSESSION', true); // we do not use a session or authentication here (better caching)
14if(!defined('DOKU_DISABLE_GZIP_OUTPUT')) define('DOKU_DISABLE_GZIP_OUTPUT', 1); // we gzip ourself here
15if(!defined('NL')) define('NL', "\n");
16require_once(DOKU_INC.'inc/init.php');
17
18// Main (don't run when UNIT test)
19if(!defined('SIMPLE_TEST')){
20    header('Content-Type: text/css; charset=utf-8');
21    css_out();
22}
23
24
25// ---------------------- functions ------------------------------
26
27/**
28 * Output all needed Styles
29 *
30 * @author Andreas Gohr <andi@splitbrain.org>
31 */
32function css_out(){
33    global $conf;
34    global $lang;
35    global $config_cascade;
36    global $INPUT;
37
38    if ($INPUT->str('s') == 'feed') {
39        $mediatypes = ['feed'];
40        $type = 'feed';
41    } else {
42        $mediatypes = ['screen', 'all', 'print', 'speech'];
43        $type = '';
44    }
45
46    // decide from where to get the template
47    $tpl = trim(preg_replace('/[^\w-]+/', '', $INPUT->str('t')));
48    if(!$tpl) $tpl = $conf['template'];
49
50    // load style.ini
51    $styleUtil = new StyleUtils($tpl, $INPUT->bool('preview'));
52    $styleini = $styleUtil->cssStyleini();
53
54    // cache influencers
55    $tplinc = tpl_incdir($tpl);
56    $cache_files = getConfigFiles('main');
57    $cache_files[] = $tplinc.'style.ini';
58    $cache_files[] = DOKU_CONF."tpl/$tpl/style.ini";
59    $cache_files[] = __FILE__;
60    if($INPUT->bool('preview')) $cache_files[] = $conf['cachedir'].'/preview.ini';
61
62    // Array of needed files and their web locations, the latter ones
63    // are needed to fix relative paths in the stylesheets
64    $media_files = [];
65    foreach($mediatypes as $mediatype) {
66        $files = [];
67
68        // load core styles
69        $files[DOKU_INC.'lib/styles/'.$mediatype.'.css'] = DOKU_BASE.'lib/styles/';
70
71        // load jQuery-UI theme
72        if ($mediatype == 'screen') {
73            $files[DOKU_INC.'lib/scripts/jquery/jquery-ui-theme/smoothness.css'] =
74                DOKU_BASE.'lib/scripts/jquery/jquery-ui-theme/';
75        }
76        // load plugin styles
77        $files = array_merge($files, css_pluginstyles($mediatype));
78        // load template styles
79        if (isset($styleini['stylesheets'][$mediatype])) {
80            $files = array_merge($files, $styleini['stylesheets'][$mediatype]);
81        }
82        // load user styles
83        if(isset($config_cascade['userstyle'][$mediatype]) && is_array($config_cascade['userstyle'][$mediatype])) {
84            foreach($config_cascade['userstyle'][$mediatype] as $userstyle) {
85                $files[$userstyle] = DOKU_BASE;
86            }
87        }
88
89        // Let plugins decide to either put more styles here or to remove some
90        $media_files[$mediatype] = css_filewrapper($mediatype, $files);
91        $CSSEvt = new Event('CSS_STYLES_INCLUDED', $media_files[$mediatype]);
92
93        // Make it preventable.
94        if ( $CSSEvt->advise_before() ) {
95            $cache_files = array_merge($cache_files, array_keys($media_files[$mediatype]['files']));
96        } else {
97            // unset if prevented. Nothing will be printed for this mediatype.
98            unset($media_files[$mediatype]);
99        }
100
101        // finish event.
102        $CSSEvt->advise_after();
103    }
104
105    // The generated script depends on some dynamic options
106    $cache = new Cache(
107        'styles' .
108        $_SERVER['HTTP_HOST'] .
109        $_SERVER['SERVER_PORT'] .
110        $INPUT->bool('preview') .
111        DOKU_BASE .
112        $tpl .
113        $type,
114        '.css'
115    );
116    $cache->setEvent('CSS_CACHE_USE');
117
118    // check cache age & handle conditional request
119    // This may exit if a cache can be used
120    $cache_ok = $cache->useCache(['files' => $cache_files]);
121    http_cached($cache->cache, $cache_ok);
122
123    // start output buffering
124    ob_start();
125
126    // Fire CSS_STYLES_INCLUDED for one last time to let the
127    // plugins decide whether to include the DW default styles.
128    // This can be done by preventing the Default.
129    $media_files['DW_DEFAULT'] = css_filewrapper('DW_DEFAULT');
130    Event::createAndTrigger('CSS_STYLES_INCLUDED', $media_files['DW_DEFAULT'], 'css_defaultstyles');
131
132    // build the stylesheet
133    foreach ($mediatypes as $mediatype) {
134
135        // Check if there is a wrapper set for this type.
136        if ( !isset($media_files[$mediatype]) ) {
137            continue;
138        }
139
140        $cssData = $media_files[$mediatype];
141
142        // Print the styles.
143        print NL;
144        if ( $cssData['encapsulate'] === true ) print $cssData['encapsulationPrefix'] . ' {';
145        print '/* START '.$cssData['mediatype'].' styles */'.NL;
146
147        // load files
148        foreach($cssData['files'] as $file => $location){
149            $display = str_replace(fullpath(DOKU_INC), '', fullpath($file));
150            print "\n/* XXXXXXXXX $display XXXXXXXXX */\n";
151            print css_loadfile($file, $location);
152        }
153
154        print NL;
155        if ( $cssData['encapsulate'] === true ) print '} /* /@media ';
156        else print '/*';
157        print ' END '.$cssData['mediatype'].' styles */'.NL;
158    }
159
160    // end output buffering and get contents
161    $css = ob_get_contents();
162    ob_end_clean();
163
164    // strip any source maps
165    stripsourcemaps($css);
166
167    // apply style replacements
168    $css = css_applystyle($css, $styleini['replacements']);
169
170    // parse less
171    $css = css_parseless($css);
172
173    // compress whitespace and comments
174    if($conf['compress']){
175        $css = css_compress($css);
176    }
177
178    // embed small images right into the stylesheet
179    if($conf['cssdatauri']){
180        $base = preg_quote(DOKU_BASE, '#');
181        $css = preg_replace_callback('#(url\([ \'"]*)('.$base.')(.*?(?:\.(png|gif)))#i', 'css_datauri', $css);
182    }
183
184    http_cached_finish($cache->cache, $css);
185}
186
187/**
188 * Uses phpless to parse LESS in our CSS
189 *
190 * most of this function is error handling to show a nice useful error when
191 * LESS compilation fails
192 *
193 * @param string $css
194 * @return string
195 */
196function css_parseless($css) {
197    global $conf;
198
199    $less = new lessc();
200    $less->importDir = [DOKU_INC];
201    $less->setPreserveComments(!$conf['compress']);
202
203    if (defined('DOKU_UNITTEST')){
204        $less->importDir[] = TMP_DIR;
205    }
206
207    try {
208        return $less->compile($css);
209    } catch(Exception $e) {
210        // get exception message
211        $msg = str_replace(["\n", "\r", "'"], [], $e->getMessage());
212
213        // try to use line number to find affected file
214        if(preg_match('/line: (\d+)$/', $msg, $m)){
215            $msg = substr($msg, 0, -1* strlen($m[0])); //remove useless linenumber
216            $lno = $m[1];
217
218            // walk upwards to last include
219            $lines = explode("\n", $css);
220            for($i=$lno-1; $i>=0; $i--){
221                if(preg_match('/\/(\* XXXXXXXXX )(.*?)( XXXXXXXXX \*)\//', $lines[$i], $m)){
222                    // we found it, add info to message
223                    $msg .= ' in '.$m[2].' at line '.($lno-$i);
224                    break;
225                }
226            }
227        }
228
229        // something went wrong
230        $error = 'A fatal error occured during compilation of the CSS files. '.
231            'If you recently installed a new plugin or template it '.
232            'might be broken and you should try disabling it again. ['.$msg.']';
233
234        echo ".dokuwiki:before {
235            content: '$error';
236            background-color: red;
237            display: block;
238            background-color: #fcc;
239            border-color: #ebb;
240            color: #000;
241            padding: 0.5em;
242        }";
243
244        exit;
245    }
246}
247
248/**
249 * Does placeholder replacements in the style according to
250 * the ones defined in a templates style.ini file
251 *
252 * This also adds the ini defined placeholders as less variables
253 * (sans the surrounding __ and with a ini_ prefix)
254 *
255 * @author Andreas Gohr <andi@splitbrain.org>
256 *
257 * @param string $css
258 * @param array $replacements  array(placeholder => value)
259 * @return string
260 */
261function css_applystyle($css, $replacements) {
262    // we convert ini replacements to LESS variable names
263    // and build a list of variable: value; pairs
264    $less = '';
265    foreach((array) $replacements as $key => $value) {
266        $lkey = trim($key, '_');
267        $lkey = '@ini_'.$lkey;
268        $less .= "$lkey: $value;\n";
269
270        $replacements[$key] = $lkey;
271    }
272
273    // we now replace all old ini replacements with LESS variables
274    $css = strtr($css, $replacements);
275
276    // now prepend the list of LESS variables as the very first thing
277    $css = $less.$css;
278    return $css;
279}
280
281/**
282 * Wrapper for the files, content and mediatype for the event CSS_STYLES_INCLUDED
283 *
284 * @author Gerry Weißbach <gerry.w@gammaproduction.de>
285 *
286 * @param string $mediatype type ofthe current media files/content set
287 * @param array $files set of files that define the current mediatype
288 * @return array
289 */
290function css_filewrapper($mediatype, $files=[]){
291    return [
292        'files'                 => $files,
293        'mediatype'             => $mediatype,
294        'encapsulate'           => $mediatype != 'all',
295        'encapsulationPrefix'   => '@media '.$mediatype
296    ];
297}
298
299/**
300 * Prints the @media encapsulated default styles of DokuWiki
301 *
302 * @author Gerry Weißbach <gerry.w@gammaproduction.de>
303 *
304 * This function is being called by a CSS_STYLES_INCLUDED event
305 * The event can be distinguished by the mediatype which is:
306 *   DW_DEFAULT
307 */
308function css_defaultstyles(){
309    // print the default classes for interwiki links and file downloads
310    print '@media screen {';
311    css_interwiki();
312    css_filetypes();
313    print '}';
314}
315
316/**
317 * Prints classes for interwikilinks
318 *
319 * Interwiki links have two classes: 'interwiki' and 'iw_$name>' where
320 * $name is the identifier given in the config. All Interwiki links get
321 * an default style with a default icon. If a special icon is available
322 * for an interwiki URL it is set in it's own class. Both classes can be
323 * overwritten in the template or userstyles.
324 *
325 * @author Andreas Gohr <andi@splitbrain.org>
326 */
327function css_interwiki(){
328
329    // default style
330    echo 'a.interwiki {';
331    echo ' background: transparent url('.DOKU_BASE.'lib/images/interwiki.svg) 0 0 no-repeat;';
332    echo ' background-size: 1.2em;';
333    echo ' padding: 0 0 0 1.4em;';
334    echo '}';
335
336    // additional styles when icon available
337    $iwlinks = getInterwiki();
338    foreach (array_keys($iwlinks) as $iw) {
339        $class = preg_replace('/[^_\-a-z0-9]+/i', '_', $iw);
340        foreach (['svg', 'png', 'gif'] as $ext) {
341            $file = 'lib/images/interwiki/' . $iw . '.' . $ext;
342
343            if (file_exists(DOKU_INC . $file)) {
344                echo "a.iw_$class {";
345                echo '  background-image: url(' . DOKU_BASE . $file . ')';
346                echo '}';
347                break;
348            }
349        }
350    }
351}
352
353/**
354 * Prints classes for file download links
355 *
356 * @author Andreas Gohr <andi@splitbrain.org>
357 */
358function css_filetypes(){
359
360    // default style
361    echo '.mediafile {';
362    echo ' background: transparent url('.DOKU_BASE.'lib/images/fileicons/svg/file.svg) 0px 1px no-repeat;';
363    echo ' background-size: 1.2em;';
364    echo ' padding-left: 1.5em;';
365    echo '}';
366
367    // additional styles when icon available
368    // scan directory for all icons
369    $exts = [];
370    if($dh = opendir(DOKU_INC.'lib/images/fileicons/svg')){
371        while(false !== ($file = readdir($dh))){
372            if(preg_match('/(.*?)\.svg$/i', $file, $match)){
373                $exts[] = strtolower($match[1]);
374            }
375        }
376        closedir($dh);
377    }
378    foreach($exts as $ext){
379        $class = preg_replace('/[^_\-a-z0-9]+/', '_', $ext);
380        echo ".mf_$class {";
381        echo '  background-image: url('.DOKU_BASE.'lib/images/fileicons/svg/'.$ext.'.svg)';
382        echo '}';
383    }
384}
385
386/**
387 * Loads a given file and fixes relative URLs with the
388 * given location prefix
389 *
390 * @param string $file file system path
391 * @param string $location
392 * @return string
393 */
394function css_loadfile($file,$location=''){
395    $css_file = new DokuCssFile($file);
396    return $css_file->load($location);
397}
398
399/**
400 *  Helper class to abstract loading of css/less files
401 *
402 *  @author Chris Smith <chris@jalakai.co.uk>
403 */
404class DokuCssFile
405{
406
407    protected $filepath;             // file system path to the CSS/Less file
408    protected $location;             // base url location of the CSS/Less file
409    protected $relative_path;
410
411    public function __construct($file) {
412        $this->filepath = $file;
413    }
414
415    /**
416     * Load the contents of the css/less file and adjust any relative paths/urls (relative to this file) to be
417     * relative to the dokuwiki root: the web root (DOKU_BASE) for most files; the file system root (DOKU_INC)
418     * for less files.
419     *
420     * @param   string   $location   base url for this file
421     * @return  string               the CSS/Less contents of the file
422     */
423    public function load($location='') {
424        if (!file_exists($this->filepath)) return '';
425
426        $css = io_readFile($this->filepath);
427        if (!$location) return $css;
428
429        $this->location = $location;
430
431        $css = preg_replace_callback('#(url\( *)([\'"]?)(.*?)(\2)( *\))#', [$this, 'replacements'], $css);
432        $css = preg_replace_callback('#(@import\s+)([\'"])(.*?)(\2)#', [$this, 'replacements'], $css);
433
434        return $css;
435    }
436
437    /**
438     * Get the relative file system path of this file, relative to dokuwiki's root folder, DOKU_INC
439     *
440     * @return string   relative file system path
441     */
442    protected function getRelativePath(){
443
444        if (is_null($this->relative_path)) {
445            $basedir = [DOKU_INC];
446
447            // during testing, files may be found relative to a second base dir, TMP_DIR
448            if (defined('DOKU_UNITTEST')) {
449                $basedir[] = realpath(TMP_DIR);
450            }
451
452            $basedir = array_map('preg_quote_cb', $basedir);
453            $regex = '/^('.implode('|', $basedir).')/';
454            $this->relative_path = preg_replace($regex, '', dirname($this->filepath));
455        }
456
457        return $this->relative_path;
458    }
459
460    /**
461     * preg_replace callback to adjust relative urls from relative to this file to relative
462     * to the appropriate dokuwiki root location as described in the code
463     *
464     * @param  array    see http://php.net/preg_replace_callback
465     * @return string   see http://php.net/preg_replace_callback
466     */
467    public function replacements($match) {
468
469        if (preg_match('#^(/|data:|https?://)#', $match[3])) { // not a relative url? - no adjustment required
470            return $match[0];
471        } elseif (substr($match[3], -5) == '.less') { // a less file import? - requires a file system location
472            if ($match[3][0] != '/') {
473                $match[3] = $this->getRelativePath() . '/' . $match[3];
474            }
475        } else { // everything else requires a url adjustment
476            $match[3] = $this->location . $match[3];
477        }
478
479        return implode('', array_slice($match, 1));
480    }
481}
482
483/**
484 * Convert local image URLs to data URLs if the filesize is small
485 *
486 * Callback for preg_replace_callback
487 *
488 * @param array $match
489 * @return string
490 */
491function css_datauri($match){
492    global $conf;
493
494    $pre   = unslash($match[1]);
495    $base  = unslash($match[2]);
496    $url   = unslash($match[3]);
497    $ext   = unslash($match[4]);
498
499    $local = DOKU_INC.$url;
500    $size  = @filesize($local);
501    if($size && $size < $conf['cssdatauri']){
502        $data = base64_encode(file_get_contents($local));
503    }
504    if (!empty($data)){
505        $url = 'data:image/'.$ext.';base64,'.$data;
506    }else{
507        $url = $base.$url;
508    }
509    return $pre.$url;
510}
511
512
513/**
514 * Returns a list of possible Plugin Styles (no existance check here)
515 *
516 * @author Andreas Gohr <andi@splitbrain.org>
517 *
518 * @param string $mediatype
519 * @return array
520 */
521function css_pluginstyles($mediatype='screen'){
522    $list = [];
523    $plugins = plugin_list();
524    foreach ($plugins as $p){
525        $list[DOKU_PLUGIN."$p/$mediatype.css"]  = DOKU_BASE."lib/plugins/$p/";
526        $list[DOKU_PLUGIN."$p/$mediatype.less"]  = DOKU_BASE."lib/plugins/$p/";
527        // alternative for screen.css
528        if ($mediatype=='screen') {
529            $list[DOKU_PLUGIN."$p/style.css"]  = DOKU_BASE."lib/plugins/$p/";
530            $list[DOKU_PLUGIN."$p/style.less"]  = DOKU_BASE."lib/plugins/$p/";
531        }
532    }
533    return $list;
534}
535
536/**
537 * Very simple CSS optimizer
538 *
539 * @author Andreas Gohr <andi@splitbrain.org>
540 *
541 * @param string $css
542 * @return string
543 */
544function css_compress($css){
545    // replace quoted strings with placeholder
546    $quote_storage = [];
547
548    $quote_cb = function ($match) use (&$quote_storage) {
549        $quote_storage[] = $match[0];
550        return '"STR'.(count($quote_storage)-1).'"';
551    };
552
553    $css = preg_replace_callback('/(([\'"]).*?(?<!\\\\)\2)/', $quote_cb, $css);
554
555    // strip comments through a callback
556    $css = preg_replace_callback('#(/\*)(.*?)(\*/)#s', 'css_comment_cb', $css);
557
558    // strip (incorrect but common) one line comments
559    $css = preg_replace_callback('/^.*\/\/.*$/m', 'css_onelinecomment_cb', $css);
560
561    // strip whitespaces
562    $css = preg_replace('![\r\n\t ]+!', ' ', $css);
563    $css = preg_replace('/ ?([;,{}\/]) ?/', '\\1', $css);
564    $css = preg_replace('/ ?: /', ':', $css);
565
566    // number compression
567    $css = preg_replace(
568        '/([: ])0+(\.\d+?)0*((?:pt|pc|in|mm|cm|em|ex|px)\b|%)(?=[^\{]*[;\}])/',
569        '$1$2$3',
570        $css
571    ); // "0.1em" to ".1em", "1.10em" to "1.1em"
572    $css = preg_replace(
573        '/([: ])\.(0)+((?:pt|pc|in|mm|cm|em|ex|px)\b|%)(?=[^\{]*[;\}])/',
574        '$1$2',
575        $css
576    ); // ".0em" to "0"
577    $css = preg_replace(
578        '/([: ]0)0*(\.0*)?((?:pt|pc|in|mm|cm|em|ex|px)(?=[^\{]*[;\}])\b|%)/',
579        '$1',
580        $css
581    ); // "0.0em" to "0"
582    $css = preg_replace(
583        '/([: ]\d+)(\.0*)((?:pt|pc|in|mm|cm|em|ex|px)(?=[^\{]*[;\}])\b|%)/',
584        '$1$3',
585        $css
586    ); // "1.0em" to "1em"
587    $css = preg_replace(
588        '/([: ])0+(\d+|\d*\.\d+)((?:pt|pc|in|mm|cm|em|ex|px)(?=[^\{]*[;\}])\b|%)/',
589        '$1$2$3',
590        $css
591    ); // "001em" to "1em"
592
593    // shorten attributes (1em 1em 1em 1em -> 1em)
594    $css = preg_replace(
595        '/(?<![\w\-])((?:margin|padding|border|border-(?:width|radius)):)([\w\.]+)( \2)+(?=[;\}]| !)/',
596        '$1$2',
597        $css
598    ); // "1em 1em 1em 1em" to "1em"
599    $css = preg_replace(
600        '/(?<![\w\-])((?:margin|padding|border|border-(?:width)):)([\w\.]+) ([\w\.]+) \2 \3(?=[;\}]| !)/',
601        '$1$2 $3',
602        $css
603    ); // "1em 2em 1em 2em" to "1em 2em"
604
605    // shorten colors
606    $css = preg_replace(
607        "/#([0-9a-fA-F]{1})\\1([0-9a-fA-F]{1})\\2([0-9a-fA-F]{1})\\3(?=[^\{]*[;\}])/",
608        "#\\1\\2\\3",
609        $css
610    );
611
612    // replace back protected strings
613    $quote_back_cb = function ($match) use (&$quote_storage) {
614        return $quote_storage[$match[1]];
615    };
616
617    $css = preg_replace_callback('/"STR(\d+)"/', $quote_back_cb, $css);
618    $css = trim($css);
619
620    return $css;
621}
622
623/**
624 * Callback for css_compress()
625 *
626 * Keeps short comments (< 5 chars) to maintain typical browser hacks
627 *
628 * @author Andreas Gohr <andi@splitbrain.org>
629 *
630 * @param array $matches
631 * @return string
632 */
633function css_comment_cb($matches){
634    if(strlen($matches[2]) > 4) return '';
635    return $matches[0];
636}
637
638/**
639 * Callback for css_compress()
640 *
641 * Strips one line comments but makes sure it will not destroy url() constructs with slashes
642 *
643 * @param array $matches
644 * @return string
645 */
646function css_onelinecomment_cb($matches) {
647    $line = $matches[0];
648
649    $i = 0;
650    $len = strlen($line);
651
652    while ($i< $len){
653        $nextcom = strpos($line, '//', $i);
654        $nexturl = stripos($line, 'url(', $i);
655
656        if($nextcom === false) {
657            // no more comments, we're done
658            $i = $len;
659            break;
660        }
661
662        if($nexturl === false || $nextcom < $nexturl) {
663            // no url anymore, strip comment and be done
664            $i = $nextcom;
665            break;
666        }
667
668        // we have an upcoming url
669        $i = strpos($line, ')', $nexturl);
670    }
671
672    return substr($line, 0, $i);
673}
674
675//Setup VIM: ex: et ts=4 :
676