xref: /dokuwiki/lib/exe/css.php (revision 26dfc2323f8f70cb69aac4c8c51bf7997809f2ca)
178a6aeb1SAndreas Gohr<?php
278a6aeb1SAndreas Gohr/**
378a6aeb1SAndreas Gohr * DokuWiki StyleSheet creator
478a6aeb1SAndreas Gohr *
578a6aeb1SAndreas Gohr * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
678a6aeb1SAndreas Gohr * @author     Andreas Gohr <andi@splitbrain.org>
778a6aeb1SAndreas Gohr */
85a5ec053SGerrit Uitslag
9e3c3abf1SAndreas Gohruse dokuwiki\StyleUtils;
100db5771eSMichael Großeuse dokuwiki\Cache\Cache;
11e1d9dcc8SAndreas Gohruse dokuwiki\Extension\Event;
120db5771eSMichael Große
13e1d9dcc8SAndreas Gohrif (!defined('DOKU_INC')) define('DOKU_INC', __DIR__ . '/../../');
141c2d1019SAndreas Gohrif (!defined('NOSESSION')) define('NOSESSION', true); // we do not use a session or authentication here (better caching)
1598bda4fdSAndreas Gohrif (!defined('DOKU_DISABLE_GZIP_OUTPUT')) define('DOKU_DISABLE_GZIP_OUTPUT', 1); // we gzip ourself here
166c47a78cSAnika Henkeif (!defined('NL')) define('NL', "\n");
1778a6aeb1SAndreas Gohrrequire_once(DOKU_INC . 'inc/init.php');
1878a6aeb1SAndreas Gohr
1978a6aeb1SAndreas Gohr// Main (don't run when UNIT test)
2078a6aeb1SAndreas Gohrif (!defined('SIMPLE_TEST')) {
2178a6aeb1SAndreas Gohr    header('Content-Type: text/css; charset=utf-8');
2278a6aeb1SAndreas Gohr    css_out();
2378a6aeb1SAndreas Gohr}
2478a6aeb1SAndreas Gohr
2578a6aeb1SAndreas Gohr
2678a6aeb1SAndreas Gohr// ---------------------- functions ------------------------------
2778a6aeb1SAndreas Gohr
2878a6aeb1SAndreas Gohr/**
2978a6aeb1SAndreas Gohr * Output all needed Styles
3078a6aeb1SAndreas Gohr *
3178a6aeb1SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
3278a6aeb1SAndreas Gohr */
33d868eb89SAndreas Gohrfunction css_out()
34d868eb89SAndreas Gohr{
3578a6aeb1SAndreas Gohr    global $conf;
3678a6aeb1SAndreas Gohr    global $lang;
3709edb711SAndreas Gohr    global $config_cascade;
38bfd0f597STom N Harris    global $INPUT;
3909edb711SAndreas Gohr
40de4634ecSGerry Weißbach    if ($INPUT->str('s') == 'feed') {
41e3c3abf1SAndreas Gohr        $mediatypes = ['feed'];
42de4634ecSGerry Weißbach        $type = 'feed';
43de4634ecSGerry Weißbach    } else {
44e3c3abf1SAndreas Gohr        $mediatypes = ['screen', 'all', 'print', 'speech'];
45de4634ecSGerry Weißbach        $type = '';
46de4634ecSGerry Weißbach    }
47de4634ecSGerry Weißbach
4820a2375aSAndreas Gohr    // decide from where to get the template
4920a2375aSAndreas Gohr    $tpl = trim(preg_replace('/[^\w-]+/', '', $INPUT->str('t')));
505a5ec053SGerrit Uitslag    if (!$tpl) {
515a5ec053SGerrit Uitslag        $tpl = $conf['template'];
525a5ec053SGerrit Uitslag    }
5320a2375aSAndreas Gohr
5414cd40ecSChang Zhao    // load style.ini
55e3c3abf1SAndreas Gohr    $styleUtil = new StyleUtils($tpl, $INPUT->bool('preview'));
564593dbd2SAnna Dabrowska    $styleini = $styleUtil->cssStyleini();
5720a2375aSAndreas Gohr
58afb2c082SAndreas Gohr    // cache influencers
59259571aaSMichal Koutný    $tplinc = tpl_incdir($tpl);
60afb2c082SAndreas Gohr    $cache_files = getConfigFiles('main');
61afb2c082SAndreas Gohr    $cache_files[] = $tplinc . 'style.ini';
62afb2c082SAndreas Gohr    $cache_files[] = DOKU_CONF . "tpl/$tpl/style.ini";
63afb2c082SAndreas Gohr    $cache_files[] = __FILE__;
645a5ec053SGerrit Uitslag    if ($INPUT->bool('preview')) {
655a5ec053SGerrit Uitslag        $cache_files[] = $conf['cachedir'] . '/preview.ini';
665a5ec053SGerrit Uitslag    }
67afb2c082SAndreas Gohr
6878a6aeb1SAndreas Gohr    // Array of needed files and their web locations, the latter ones
6978a6aeb1SAndreas Gohr    // are needed to fix relative paths in the stylesheets
70e3c3abf1SAndreas Gohr    $media_files = [];
7114977bd2SMichael Hamann    foreach ($mediatypes as $mediatype) {
72e3c3abf1SAndreas Gohr        $files = [];
733e32b194SGerry Weißbach
74318cd03eSAnika Henke        // load core styles
75ef36714bSGerry Weißbach        $files[DOKU_INC . 'lib/styles/' . $mediatype . '.css'] = DOKU_BASE . 'lib/styles/';
76af4684acSAndreas Gohr
7743576758SAndreas Gohr        // load jQuery-UI theme
786c47a78cSAnika Henke        if ($mediatype == 'screen') {
7964159a61SAndreas Gohr            $files[DOKU_INC . 'lib/scripts/jquery/jquery-ui-theme/smoothness.css'] =
8064159a61SAndreas Gohr                DOKU_BASE . 'lib/scripts/jquery/jquery-ui-theme/';
816c47a78cSAnika Henke        }
82318cd03eSAnika Henke        // load plugin styles
83ef36714bSGerry Weißbach        $files = array_merge($files, css_pluginstyles($mediatype));
84318cd03eSAnika Henke        // load template styles
85afb2c082SAndreas Gohr        if (isset($styleini['stylesheets'][$mediatype])) {
86ef36714bSGerry Weißbach            $files = array_merge($files, $styleini['stylesheets'][$mediatype]);
8709edb711SAndreas Gohr        }
88318cd03eSAnika Henke        // load user styles
89e3c3abf1SAndreas Gohr        if (isset($config_cascade['userstyle'][$mediatype]) && is_array($config_cascade['userstyle'][$mediatype])) {
907b909d5eSGerrit Uitslag            foreach ($config_cascade['userstyle'][$mediatype] as $userstyle) {
91ef36714bSGerry Weißbach                $files[$userstyle] = DOKU_BASE;
927b909d5eSGerrit Uitslag            }
93318cd03eSAnika Henke        }
9478a6aeb1SAndreas Gohr
95ef36714bSGerry Weißbach        // Let plugins decide to either put more styles here or to remove some
963e32b194SGerry Weißbach        $media_files[$mediatype] = css_filewrapper($mediatype, $files);
97e1d9dcc8SAndreas Gohr        $CSSEvt = new Event('CSS_STYLES_INCLUDED', $media_files[$mediatype]);
98ef36714bSGerry Weißbach
99ef36714bSGerry Weißbach        // Make it preventable.
100ef36714bSGerry Weißbach        if ($CSSEvt->advise_before()) {
101ef36714bSGerry Weißbach            $cache_files = array_merge($cache_files, array_keys($media_files[$mediatype]['files']));
102ef36714bSGerry Weißbach        } else {
103ef36714bSGerry Weißbach            // unset if prevented. Nothing will be printed for this mediatype.
104ef36714bSGerry Weißbach            unset($media_files[$mediatype]);
10514977bd2SMichael Hamann        }
1066619f42eSAdrian Lang
107ef36714bSGerry Weißbach        // finish event.
108ef36714bSGerry Weißbach        $CSSEvt->advise_after();
109ef36714bSGerry Weißbach    }
110ef36714bSGerry Weißbach
111ef36714bSGerry Weißbach    // The generated script depends on some dynamic options
1120db5771eSMichael Große    $cache = new Cache(
11364159a61SAndreas Gohr        'styles' .
11464159a61SAndreas Gohr        $_SERVER['HTTP_HOST'] .
11564159a61SAndreas Gohr        $_SERVER['SERVER_PORT'] .
11664159a61SAndreas Gohr        $INPUT->bool('preview') .
11764159a61SAndreas Gohr        DOKU_BASE .
11864159a61SAndreas Gohr        $tpl .
11964159a61SAndreas Gohr        $type,
12064159a61SAndreas Gohr        '.css'
12164159a61SAndreas Gohr    );
122dc7da772SMichael Große    $cache->setEvent('CSS_CACHE_USE');
123ef36714bSGerry Weißbach
12438f56bffSBen Coburn    // check cache age & handle conditional request
1256619f42eSAdrian Lang    // This may exit if a cache can be used
126e3c3abf1SAndreas Gohr    $cache_ok = $cache->useCache(['files' => $cache_files]);
127e7c68c4dSGerry Weißbach    http_cached($cache->cache, $cache_ok);
12878a6aeb1SAndreas Gohr
1293899c2ecSMichael Hamann    // start output buffering
1303899c2ecSMichael Hamann    ob_start();
1313899c2ecSMichael Hamann
132ef36714bSGerry Weißbach    // Fire CSS_STYLES_INCLUDED for one last time to let the
133ef36714bSGerry Weißbach    // plugins decide whether to include the DW default styles.
134ef36714bSGerry Weißbach    // This can be done by preventing the Default.
135ef36714bSGerry Weißbach    $media_files['DW_DEFAULT'] = css_filewrapper('DW_DEFAULT');
136cbb44eabSAndreas Gohr    Event::createAndTrigger('CSS_STYLES_INCLUDED', $media_files['DW_DEFAULT'], 'css_defaultstyles');
137ef36714bSGerry Weißbach
1386c47a78cSAnika Henke    // build the stylesheet
13914977bd2SMichael Hamann    foreach ($mediatypes as $mediatype) {
140ef36714bSGerry Weißbach        // Check if there is a wrapper set for this type.
141ef36714bSGerry Weißbach        if (!isset($media_files[$mediatype])) {
142ef36714bSGerry Weißbach            continue;
14378a6aeb1SAndreas Gohr        }
14478a6aeb1SAndreas Gohr
145ef36714bSGerry Weißbach        $cssData = $media_files[$mediatype];
146ef36714bSGerry Weißbach
147ef36714bSGerry Weißbach        // Print the styles.
148*26dfc232SAndreas Gohr        echo NL;
1495a5ec053SGerrit Uitslag        if ($cssData['encapsulate'] === true) {
150*26dfc232SAndreas Gohr            echo $cssData['encapsulationPrefix'] . ' {';
1515a5ec053SGerrit Uitslag        }
152*26dfc232SAndreas Gohr        echo '/* START ' . $cssData['mediatype'] . ' styles */' . NL;
153ef36714bSGerry Weißbach
1546c47a78cSAnika Henke        // load files
155ef36714bSGerry Weißbach        foreach ($cssData['files'] as $file => $location) {
15672a66eb7SAndreas Gohr            $display = str_replace(fullpath(DOKU_INC), '', fullpath($file));
157*26dfc232SAndreas Gohr            echo "\n/* XXXXXXXXX $display XXXXXXXXX */\n";
158*26dfc232SAndreas Gohr            echo css_loadfile($file, $location);
1596c47a78cSAnika Henke        }
160ef36714bSGerry Weißbach
161*26dfc232SAndreas Gohr        echo NL;
1625a5ec053SGerrit Uitslag        if ($cssData['encapsulate'] === true) {
163*26dfc232SAndreas Gohr            echo '} /* /@media ';
1645a5ec053SGerrit Uitslag        } else {
165*26dfc232SAndreas Gohr            echo '/*';
1665a5ec053SGerrit Uitslag        }
167*26dfc232SAndreas Gohr        echo ' END ' . $cssData['mediatype'] . ' styles */' . NL;
1686c47a78cSAnika Henke    }
169ef36714bSGerry Weißbach
17078a6aeb1SAndreas Gohr    // end output buffering and get contents
17178a6aeb1SAndreas Gohr    $css = ob_get_contents();
17278a6aeb1SAndreas Gohr    ob_end_clean();
17378a6aeb1SAndreas Gohr
174f8fb2d18SAndreas Gohr    // strip any source maps
175f8fb2d18SAndreas Gohr    stripsourcemaps($css);
176f8fb2d18SAndreas Gohr
1776e69c1baSAndreas Gohr    // apply style replacements
178afb2c082SAndreas Gohr    $css = css_applystyle($css, $styleini['replacements']);
1796e69c1baSAndreas Gohr
18072a66eb7SAndreas Gohr    // parse less
18172a66eb7SAndreas Gohr    $css = css_parseless($css);
182d4a1ece8SAndreas Gohr
18378a6aeb1SAndreas Gohr    // compress whitespace and comments
18478a6aeb1SAndreas Gohr    if ($conf['compress']) {
18578a6aeb1SAndreas Gohr        $css = css_compress($css);
18678a6aeb1SAndreas Gohr    }
18778a6aeb1SAndreas Gohr
188809d3ba5SAndreas Gohr    // embed small images right into the stylesheet
189809d3ba5SAndreas Gohr    if ($conf['cssdatauri']) {
190809d3ba5SAndreas Gohr        $base = preg_quote(DOKU_BASE, '#');
191809d3ba5SAndreas Gohr        $css = preg_replace_callback('#(url\([ \'"]*)(' . $base . ')(.*?(?:\.(png|gif)))#i', 'css_datauri', $css);
192809d3ba5SAndreas Gohr    }
193809d3ba5SAndreas Gohr
1946619f42eSAdrian Lang    http_cached_finish($cache->cache, $css);
19578a6aeb1SAndreas Gohr}
19678a6aeb1SAndreas Gohr
19778a6aeb1SAndreas Gohr/**
19872a66eb7SAndreas Gohr * Uses phpless to parse LESS in our CSS
19972a66eb7SAndreas Gohr *
20072a66eb7SAndreas Gohr * most of this function is error handling to show a nice useful error when
20172a66eb7SAndreas Gohr * LESS compilation fails
20272a66eb7SAndreas Gohr *
203253d4b48SGerrit Uitslag * @param string $css
20472a66eb7SAndreas Gohr * @return string
20572a66eb7SAndreas Gohr */
206d868eb89SAndreas Gohrfunction css_parseless($css)
207d868eb89SAndreas Gohr{
2087d247a3cSGerrit Uitslag    global $conf;
2097d247a3cSGerrit Uitslag
21072a66eb7SAndreas Gohr    $less = new lessc();
211e3c3abf1SAndreas Gohr    $less->importDir = [DOKU_INC];
2127d247a3cSGerrit Uitslag    $less->setPreserveComments(!$conf['compress']);
21330f686ebSChristopher Smith
21430f686ebSChristopher Smith    if (defined('DOKU_UNITTEST')) {
21530f686ebSChristopher Smith        $less->importDir[] = TMP_DIR;
21630f686ebSChristopher Smith    }
21730f686ebSChristopher Smith
21872a66eb7SAndreas Gohr    try {
21972a66eb7SAndreas Gohr        return $less->compile($css);
22072a66eb7SAndreas Gohr    } catch (Exception $e) {
22172a66eb7SAndreas Gohr        // get exception message
222e3c3abf1SAndreas Gohr        $msg = str_replace(["\n", "\r", "'"], [], $e->getMessage());
22372a66eb7SAndreas Gohr
22472a66eb7SAndreas Gohr        // try to use line number to find affected file
22572a66eb7SAndreas Gohr        if (preg_match('/line: (\d+)$/', $msg, $m)) {
22672a66eb7SAndreas Gohr            $msg = substr($msg, 0, -1 * strlen($m[0])); //remove useless linenumber
22772a66eb7SAndreas Gohr            $lno = $m[1];
22872a66eb7SAndreas Gohr
22972a66eb7SAndreas Gohr            // walk upwards to last include
23072a66eb7SAndreas Gohr            $lines = explode("\n", $css);
23172a66eb7SAndreas Gohr            for ($i = $lno - 1; $i >= 0; $i--) {
23272a66eb7SAndreas Gohr                if (preg_match('/\/(\* XXXXXXXXX )(.*?)( XXXXXXXXX \*)\//', $lines[$i], $m)) {
23372a66eb7SAndreas Gohr                    // we found it, add info to message
23472a66eb7SAndreas Gohr                    $msg .= ' in ' . $m[2] . ' at line ' . ($lno - $i);
23572a66eb7SAndreas Gohr                    break;
23672a66eb7SAndreas Gohr                }
23772a66eb7SAndreas Gohr            }
23872a66eb7SAndreas Gohr        }
23972a66eb7SAndreas Gohr
24072a66eb7SAndreas Gohr        // something went wrong
24172a66eb7SAndreas Gohr        $error = 'A fatal error occured during compilation of the CSS files. ' .
24272a66eb7SAndreas Gohr            'If you recently installed a new plugin or template it ' .
24372a66eb7SAndreas Gohr            'might be broken and you should try disabling it again. [' . $msg . ']';
24472a66eb7SAndreas Gohr
24572a66eb7SAndreas Gohr        echo ".dokuwiki:before {
24672a66eb7SAndreas Gohr            content: '$error';
24772a66eb7SAndreas Gohr            background-color: red;
24872a66eb7SAndreas Gohr            display: block;
24972a66eb7SAndreas Gohr            background-color: #fcc;
25072a66eb7SAndreas Gohr            border-color: #ebb;
25172a66eb7SAndreas Gohr            color: #000;
25272a66eb7SAndreas Gohr            padding: 0.5em;
25372a66eb7SAndreas Gohr        }";
25472a66eb7SAndreas Gohr
25572a66eb7SAndreas Gohr        exit;
25672a66eb7SAndreas Gohr    }
25772a66eb7SAndreas Gohr}
25872a66eb7SAndreas Gohr
25972a66eb7SAndreas Gohr/**
2606e69c1baSAndreas Gohr * Does placeholder replacements in the style according to
2616e69c1baSAndreas Gohr * the ones defined in a templates style.ini file
2626e69c1baSAndreas Gohr *
263d4a1ece8SAndreas Gohr * This also adds the ini defined placeholders as less variables
264d4a1ece8SAndreas Gohr * (sans the surrounding __ and with a ini_ prefix)
265d4a1ece8SAndreas Gohr *
266253d4b48SGerrit Uitslag * @param string $css
267253d4b48SGerrit Uitslag * @param array $replacements array(placeholder => value)
268253d4b48SGerrit Uitslag * @return string
2695a5ec053SGerrit Uitslag *
2705a5ec053SGerrit Uitslag * @author Andreas Gohr <andi@splitbrain.org>
2716e69c1baSAndreas Gohr */
272d868eb89SAndreas Gohrfunction css_applystyle($css, $replacements)
273d868eb89SAndreas Gohr{
274cbe37079SAndreas Gohr    // we convert ini replacements to LESS variable names
275cbe37079SAndreas Gohr    // and build a list of variable: value; pairs
276d4a1ece8SAndreas Gohr    $less = '';
277afb2c082SAndreas Gohr    foreach ((array)$replacements as $key => $value) {
278cbe37079SAndreas Gohr        $lkey = trim($key, '_');
279cbe37079SAndreas Gohr        $lkey = '@ini_' . $lkey;
280cbe37079SAndreas Gohr        $less .= "$lkey: $value;\n";
281cbe37079SAndreas Gohr
282afb2c082SAndreas Gohr        $replacements[$key] = $lkey;
283d4a1ece8SAndreas Gohr    }
284c51b334eSAndreas Gohr
285cbe37079SAndreas Gohr    // we now replace all old ini replacements with LESS variables
286afb2c082SAndreas Gohr    $css = strtr($css, $replacements);
287cbe37079SAndreas Gohr
288cbe37079SAndreas Gohr    // now prepend the list of LESS variables as the very first thing
289c51b334eSAndreas Gohr    $css = $less . $css;
2906e69c1baSAndreas Gohr    return $css;
2916e69c1baSAndreas Gohr}
2926e69c1baSAndreas Gohr
2936e69c1baSAndreas Gohr/**
294ef36714bSGerry Weißbach * Wrapper for the files, content and mediatype for the event CSS_STYLES_INCLUDED
295ef36714bSGerry Weißbach *
296ef36714bSGerry Weißbach * @param string $mediatype type ofthe current media files/content set
297ef36714bSGerry Weißbach * @param array $files set of files that define the current mediatype
298ef36714bSGerry Weißbach * @return array
2995a5ec053SGerrit Uitslag *
3005a5ec053SGerrit Uitslag * @author Gerry Weißbach <gerry.w@gammaproduction.de>
301ef36714bSGerry Weißbach */
302d868eb89SAndreas Gohrfunction css_filewrapper($mediatype, $files = [])
303d868eb89SAndreas Gohr{
304e3c3abf1SAndreas Gohr    return [
305ef36714bSGerry Weißbach        'files' => $files,
306ef36714bSGerry Weißbach        'mediatype' => $mediatype,
307cf35519cSGerry Weißbach        'encapsulate' => $mediatype != 'all',
308ef36714bSGerry Weißbach        'encapsulationPrefix' => '@media ' . $mediatype
309e3c3abf1SAndreas Gohr    ];
310ef36714bSGerry Weißbach}
311ef36714bSGerry Weißbach
312ef36714bSGerry Weißbach/**
313ef36714bSGerry Weißbach * Prints the @media encapsulated default styles of DokuWiki
314ef36714bSGerry Weißbach *
315ef36714bSGerry Weißbach * This function is being called by a CSS_STYLES_INCLUDED event
316ef36714bSGerry Weißbach * The event can be distinguished by the mediatype which is:
317ef36714bSGerry Weißbach *   DW_DEFAULT
3185a5ec053SGerrit Uitslag *
3195a5ec053SGerrit Uitslag * @author Gerry Weißbach <gerry.w@gammaproduction.de>
320ef36714bSGerry Weißbach */
321d868eb89SAndreas Gohrfunction css_defaultstyles()
322d868eb89SAndreas Gohr{
323ef36714bSGerry Weißbach    // print the default classes for interwiki links and file downloads
324*26dfc232SAndreas Gohr    echo '@media screen {';
325ef36714bSGerry Weißbach    css_interwiki();
326ef36714bSGerry Weißbach    css_filetypes();
327*26dfc232SAndreas Gohr    echo '}';
328ef36714bSGerry Weißbach}
329ef36714bSGerry Weißbach
330ef36714bSGerry Weißbach/**
3311c2d1019SAndreas Gohr * Prints classes for interwikilinks
3321c2d1019SAndreas Gohr *
3331c2d1019SAndreas Gohr * Interwiki links have two classes: 'interwiki' and 'iw_$name>' where
3341c2d1019SAndreas Gohr * $name is the identifier given in the config. All Interwiki links get
3351c2d1019SAndreas Gohr * an default style with a default icon. If a special icon is available
3361c2d1019SAndreas Gohr * for an interwiki URL it is set in it's own class. Both classes can be
3371c2d1019SAndreas Gohr * overwritten in the template or userstyles.
3381c2d1019SAndreas Gohr *
3391c2d1019SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
3401c2d1019SAndreas Gohr */
341d868eb89SAndreas Gohrfunction css_interwiki()
342d868eb89SAndreas Gohr{
3431c2d1019SAndreas Gohr
3441c2d1019SAndreas Gohr    // default style
3451c2d1019SAndreas Gohr    echo 'a.interwiki {';
3464ef5d38dSAndreas Gohr    echo ' background: transparent url(' . DOKU_BASE . 'lib/images/interwiki.svg) 0 0 no-repeat;';
3471e519eb5SAndreas Gohr    echo ' background-size: 1.2em;';
3481e519eb5SAndreas Gohr    echo ' padding: 0 0 0 1.4em;';
3491c2d1019SAndreas Gohr    echo '}';
3501c2d1019SAndreas Gohr
3511c2d1019SAndreas Gohr    // additional styles when icon available
3521c2d1019SAndreas Gohr    $iwlinks = getInterwiki();
3531c2d1019SAndreas Gohr    foreach (array_keys($iwlinks) as $iw) {
3549d2ddea4SAndreas Gohr        $class = preg_replace('/[^_\-a-z0-9]+/i', '_', $iw);
3551e519eb5SAndreas Gohr        foreach (['svg', 'png', 'gif'] as $ext) {
3561e519eb5SAndreas Gohr            $file = 'lib/images/interwiki/' . $iw . '.' . $ext;
3571e519eb5SAndreas Gohr
3581e519eb5SAndreas Gohr            if (file_exists(DOKU_INC . $file)) {
3599d2ddea4SAndreas Gohr                echo "a.iw_$class {";
3601e519eb5SAndreas Gohr                echo '  background-image: url(' . DOKU_BASE . $file . ')';
3611c2d1019SAndreas Gohr                echo '}';
3621e519eb5SAndreas Gohr                break;
3631e519eb5SAndreas Gohr            }
3641c2d1019SAndreas Gohr        }
3651c2d1019SAndreas Gohr    }
366d15166e5SAndreas Gohr}
3671c2d1019SAndreas Gohr
368d15166e5SAndreas Gohr/**
369d15166e5SAndreas Gohr * Prints classes for file download links
370d15166e5SAndreas Gohr *
371d15166e5SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
372d15166e5SAndreas Gohr */
373d868eb89SAndreas Gohrfunction css_filetypes()
374d868eb89SAndreas Gohr{
375d15166e5SAndreas Gohr
376d15166e5SAndreas Gohr    // default style
377035e07f1SKate Arzamastseva    echo '.mediafile {';
37824115d42SAndreas Gohr    echo ' background: transparent url(' . DOKU_BASE . 'lib/images/fileicons/svg/file.svg) 0px 1px no-repeat;';
37924115d42SAndreas Gohr    echo ' background-size: 1.2em;';
38024115d42SAndreas Gohr    echo ' padding-left: 1.5em;';
381d15166e5SAndreas Gohr    echo '}';
382d15166e5SAndreas Gohr
383d15166e5SAndreas Gohr    // additional styles when icon available
38427bf7924STom N Harris    // scan directory for all icons
385e3c3abf1SAndreas Gohr    $exts = [];
38624115d42SAndreas Gohr    if ($dh = opendir(DOKU_INC . 'lib/images/fileicons/svg')) {
38727bf7924STom N Harris        while (false !== ($file = readdir($dh))) {
38824115d42SAndreas Gohr            if (preg_match('/(.*?)\.svg$/i', $file, $match)) {
38924115d42SAndreas Gohr                $exts[] = strtolower($match[1]);
390d15166e5SAndreas Gohr            }
3911c2d1019SAndreas Gohr        }
39227bf7924STom N Harris        closedir($dh);
39327bf7924STom N Harris    }
39424115d42SAndreas Gohr    foreach ($exts as $ext) {
39527bf7924STom N Harris        $class = preg_replace('/[^_\-a-z0-9]+/', '_', $ext);
396035e07f1SKate Arzamastseva        echo ".mf_$class {";
39724115d42SAndreas Gohr        echo '  background-image: url(' . DOKU_BASE . 'lib/images/fileicons/svg/' . $ext . '.svg)';
39827bf7924STom N Harris        echo '}';
39927bf7924STom N Harris    }
40027bf7924STom N Harris}
4011c2d1019SAndreas Gohr
4021c2d1019SAndreas Gohr/**
40378a6aeb1SAndreas Gohr * Loads a given file and fixes relative URLs with the
40478a6aeb1SAndreas Gohr * given location prefix
405253d4b48SGerrit Uitslag *
406253d4b48SGerrit Uitslag * @param string $file file system path
407253d4b48SGerrit Uitslag * @param string $location
408253d4b48SGerrit Uitslag * @return string
40978a6aeb1SAndreas Gohr */
410d868eb89SAndreas Gohrfunction css_loadfile($file, $location = '')
411d868eb89SAndreas Gohr{
41212ffbbc3SChristopher Smith    $css_file = new DokuCssFile($file);
41312ffbbc3SChristopher Smith    return $css_file->load($location);
41412ffbbc3SChristopher Smith}
41512ffbbc3SChristopher Smith
4161e2c5948SChristopher Smith/**
4171e2c5948SChristopher Smith * Helper class to abstract loading of css/less files
4181e2c5948SChristopher Smith *
4191e2c5948SChristopher Smith * @author Chris Smith <chris@jalakai.co.uk>
4201e2c5948SChristopher Smith */
4218c7c53b0SAndreas Gohrclass DokuCssFile
4228c7c53b0SAndreas Gohr{
42312ffbbc3SChristopher Smith
4241e2c5948SChristopher Smith    protected $filepath;             // file system path to the CSS/Less file
4251e2c5948SChristopher Smith    protected $location;             // base url location of the CSS/Less file
426e3c3abf1SAndreas Gohr    protected $relative_path;
42712ffbbc3SChristopher Smith
428d868eb89SAndreas Gohr    public function __construct($file)
429d868eb89SAndreas Gohr    {
43012ffbbc3SChristopher Smith        $this->filepath = $file;
43112ffbbc3SChristopher Smith    }
43212ffbbc3SChristopher Smith
4331e2c5948SChristopher Smith    /**
4341e2c5948SChristopher Smith     * Load the contents of the css/less file and adjust any relative paths/urls (relative to this file) to be
4351e2c5948SChristopher Smith     * relative to the dokuwiki root: the web root (DOKU_BASE) for most files; the file system root (DOKU_INC)
4361e2c5948SChristopher Smith     * for less files.
4371e2c5948SChristopher Smith     *
4381e2c5948SChristopher Smith     * @param string $location base url for this file
4391e2c5948SChristopher Smith     * @return string the CSS/Less contents of the file
4401e2c5948SChristopher Smith     */
441d868eb89SAndreas Gohr    public function load($location = '')
442d868eb89SAndreas Gohr    {
44379e79377SAndreas Gohr        if (!file_exists($this->filepath)) return '';
44412ffbbc3SChristopher Smith
44512ffbbc3SChristopher Smith        $css = io_readFile($this->filepath);
44678a6aeb1SAndreas Gohr        if (!$location) return $css;
44778a6aeb1SAndreas Gohr
44812ffbbc3SChristopher Smith        $this->location = $location;
449de737055SChristopher Smith
450e3c3abf1SAndreas Gohr        $css = preg_replace_callback('#(url\( *)([\'"]?)(.*?)(\2)( *\))#', [$this, 'replacements'], $css);
451e3c3abf1SAndreas Gohr        $css = preg_replace_callback('#(@import\s+)([\'"])(.*?)(\2)#', [$this, 'replacements'], $css);
452809d3ba5SAndreas Gohr
45378a6aeb1SAndreas Gohr        return $css;
45478a6aeb1SAndreas Gohr    }
45578a6aeb1SAndreas Gohr
4561e2c5948SChristopher Smith    /**
4571e2c5948SChristopher Smith     * Get the relative file system path of this file, relative to dokuwiki's root folder, DOKU_INC
4581e2c5948SChristopher Smith     *
4591e2c5948SChristopher Smith     * @return string   relative file system path
4601e2c5948SChristopher Smith     */
461d868eb89SAndreas Gohr    protected function getRelativePath()
462d868eb89SAndreas Gohr    {
46312ffbbc3SChristopher Smith
46412ffbbc3SChristopher Smith        if (is_null($this->relative_path)) {
465e3c3abf1SAndreas Gohr            $basedir = [DOKU_INC];
4661e2c5948SChristopher Smith
4671e2c5948SChristopher Smith            // during testing, files may be found relative to a second base dir, TMP_DIR
46812ffbbc3SChristopher Smith            if (defined('DOKU_UNITTEST')) {
46912ffbbc3SChristopher Smith                $basedir[] = realpath(TMP_DIR);
47012ffbbc3SChristopher Smith            }
47112ffbbc3SChristopher Smith
47273f25ac0SAndreas Gohr            $basedir = array_map('preg_quote_cb', $basedir);
473e3c3abf1SAndreas Gohr            $regex = '/^(' . implode('|', $basedir) . ')/';
47412ffbbc3SChristopher Smith            $this->relative_path = preg_replace($regex, '', dirname($this->filepath));
47512ffbbc3SChristopher Smith        }
47612ffbbc3SChristopher Smith
47712ffbbc3SChristopher Smith        return $this->relative_path;
47812ffbbc3SChristopher Smith    }
47912ffbbc3SChristopher Smith
4801e2c5948SChristopher Smith    /**
4811e2c5948SChristopher Smith     * preg_replace callback to adjust relative urls from relative to this file to relative
4821e2c5948SChristopher Smith     * to the appropriate dokuwiki root location as described in the code
4831e2c5948SChristopher Smith     *
4845a5ec053SGerrit Uitslag     * @param array $match see http://php.net/preg_replace_callback
4851e2c5948SChristopher Smith     * @return string   see http://php.net/preg_replace_callback
4861e2c5948SChristopher Smith     */
487d868eb89SAndreas Gohr    public function replacements($match)
488d868eb89SAndreas Gohr    {
489de737055SChristopher Smith
490e24a74c0SAndreas Gohr        if (preg_match('#^(/|data:|https?://)#', $match[3])) { // not a relative url? - no adjustment required
491de737055SChristopher Smith            return $match[0];
492e24a74c0SAndreas Gohr        } elseif (substr($match[3], -5) == '.less') { // a less file import? - requires a file system location
4935312cb0bSSyntaxseed            if ($match[3][0] != '/') {
49412ffbbc3SChristopher Smith                $match[3] = $this->getRelativePath() . '/' . $match[3];
495de737055SChristopher Smith            }
496e24a74c0SAndreas Gohr        } else { // everything else requires a url adjustment
49712ffbbc3SChristopher Smith            $match[3] = $this->location . $match[3];
498de737055SChristopher Smith        }
499de737055SChristopher Smith
500e3c3abf1SAndreas Gohr        return implode('', array_slice($match, 1));
501de737055SChristopher Smith    }
50212ffbbc3SChristopher Smith}
503de737055SChristopher Smith
504809d3ba5SAndreas Gohr/**
5054eb5f931SChristopher Smith * Convert local image URLs to data URLs if the filesize is small
506809d3ba5SAndreas Gohr *
507809d3ba5SAndreas Gohr * Callback for preg_replace_callback
508253d4b48SGerrit Uitslag *
509253d4b48SGerrit Uitslag * @param array $match
510253d4b48SGerrit Uitslag * @return string
511809d3ba5SAndreas Gohr */
512d868eb89SAndreas Gohrfunction css_datauri($match)
513d868eb89SAndreas Gohr{
51428f4004cSAndreas Gohr    global $conf;
51528f4004cSAndreas Gohr
516809d3ba5SAndreas Gohr    $pre = unslash($match[1]);
517809d3ba5SAndreas Gohr    $base = unslash($match[2]);
518809d3ba5SAndreas Gohr    $url = unslash($match[3]);
519809d3ba5SAndreas Gohr    $ext = unslash($match[4]);
520809d3ba5SAndreas Gohr
521809d3ba5SAndreas Gohr    $local = DOKU_INC . $url;
522809d3ba5SAndreas Gohr    $size = @filesize($local);
52328f4004cSAndreas Gohr    if ($size && $size < $conf['cssdatauri']) {
524809d3ba5SAndreas Gohr        $data = base64_encode(file_get_contents($local));
525809d3ba5SAndreas Gohr    }
5268f34cf3dSMichael Große    if (!empty($data)) {
5276a5d6817SAnika Henke        $url = 'data:image/' . $ext . ';base64,' . $data;
528809d3ba5SAndreas Gohr    } else {
529809d3ba5SAndreas Gohr        $url = $base . $url;
530809d3ba5SAndreas Gohr    }
531809d3ba5SAndreas Gohr    return $pre . $url;
532809d3ba5SAndreas Gohr}
533809d3ba5SAndreas Gohr
53415c394afSAndreas Gohr
53578a6aeb1SAndreas Gohr/**
53678a6aeb1SAndreas Gohr * Returns a list of possible Plugin Styles (no existance check here)
53778a6aeb1SAndreas Gohr *
538253d4b48SGerrit Uitslag * @param string $mediatype
539253d4b48SGerrit Uitslag * @return array
5405a5ec053SGerrit Uitslag * @author Andreas Gohr <andi@splitbrain.org>
5415a5ec053SGerrit Uitslag *
54278a6aeb1SAndreas Gohr */
543d868eb89SAndreas Gohrfunction css_pluginstyles($mediatype = 'screen')
544d868eb89SAndreas Gohr{
545e3c3abf1SAndreas Gohr    $list = [];
54678a6aeb1SAndreas Gohr    $plugins = plugin_list();
54778a6aeb1SAndreas Gohr    foreach ($plugins as $p) {
548318cd03eSAnika Henke        $list[DOKU_PLUGIN . "$p/$mediatype.css"] = DOKU_BASE . "lib/plugins/$p/";
549d4a1ece8SAndreas Gohr        $list[DOKU_PLUGIN . "$p/$mediatype.less"] = DOKU_BASE . "lib/plugins/$p/";
550318cd03eSAnika Henke        // alternative for screen.css
551318cd03eSAnika Henke        if ($mediatype == 'screen') {
55278a6aeb1SAndreas Gohr            $list[DOKU_PLUGIN . "$p/style.css"] = DOKU_BASE . "lib/plugins/$p/";
553d4a1ece8SAndreas Gohr            $list[DOKU_PLUGIN . "$p/style.less"] = DOKU_BASE . "lib/plugins/$p/";
55478a6aeb1SAndreas Gohr        }
55578a6aeb1SAndreas Gohr    }
55678a6aeb1SAndreas Gohr    return $list;
55778a6aeb1SAndreas Gohr}
55878a6aeb1SAndreas Gohr
55978a6aeb1SAndreas Gohr/**
56078a6aeb1SAndreas Gohr * Very simple CSS optimizer
56178a6aeb1SAndreas Gohr *
562253d4b48SGerrit Uitslag * @param string $css
563253d4b48SGerrit Uitslag * @return string
5645a5ec053SGerrit Uitslag * @author Andreas Gohr <andi@splitbrain.org>
5655a5ec053SGerrit Uitslag *
56678a6aeb1SAndreas Gohr */
567d868eb89SAndreas Gohrfunction css_compress($css)
568d868eb89SAndreas Gohr{
569ba234b18SPhy    // replace quoted strings with placeholder
570ba234b18SPhy    $quote_storage = [];
571ba234b18SPhy
572ba234b18SPhy    $quote_cb = function ($match) use (&$quote_storage) {
573ba234b18SPhy        $quote_storage[] = $match[0];
5745fdc2ff2SPhy        return '"STR' . (count($quote_storage) - 1) . '"';
575ba234b18SPhy    };
576ba234b18SPhy
5775fdc2ff2SPhy    $css = preg_replace_callback('/(([\'"]).*?(?<!\\\\)\2)/', $quote_cb, $css);
578ba234b18SPhy
579fd7c2db0SAndreas Gohr    // strip comments through a callback
580fd7c2db0SAndreas Gohr    $css = preg_replace_callback('#(/\*)(.*?)(\*/)#s', 'css_comment_cb', $css);
581fd7c2db0SAndreas Gohr
582247c1c5dSAndreas Gohr    // strip (incorrect but common) one line comments
583fe5a50c3SAndreas Gohr    $css = preg_replace_callback('/^.*\/\/.*$/m', 'css_onelinecomment_cb', $css);
584247c1c5dSAndreas Gohr
58578a6aeb1SAndreas Gohr    // strip whitespaces
58678a6aeb1SAndreas Gohr    $css = preg_replace('![\r\n\t ]+!', ' ', $css);
587f5379589SChristopher Smith    $css = preg_replace('/ ?([;,{}\/]) ?/', '\\1', $css);
588f5379589SChristopher Smith    $css = preg_replace('/ ?: /', ':', $css);
58978a6aeb1SAndreas Gohr
590205907a7Sfurun    // number compression
59164159a61SAndreas Gohr    $css = preg_replace(
59264159a61SAndreas Gohr        '/([: ])0+(\.\d+?)0*((?:pt|pc|in|mm|cm|em|ex|px)\b|%)(?=[^\{]*[;\}])/',
59364159a61SAndreas Gohr        '$1$2$3',
59464159a61SAndreas Gohr        $css
59564159a61SAndreas Gohr    ); // "0.1em" to ".1em", "1.10em" to "1.1em"
59664159a61SAndreas Gohr    $css = preg_replace(
59764159a61SAndreas Gohr        '/([: ])\.(0)+((?:pt|pc|in|mm|cm|em|ex|px)\b|%)(?=[^\{]*[;\}])/',
59864159a61SAndreas Gohr        '$1$2',
59964159a61SAndreas Gohr        $css
60064159a61SAndreas Gohr    ); // ".0em" to "0"
60164159a61SAndreas Gohr    $css = preg_replace(
60264159a61SAndreas Gohr        '/([: ]0)0*(\.0*)?((?:pt|pc|in|mm|cm|em|ex|px)(?=[^\{]*[;\}])\b|%)/',
60364159a61SAndreas Gohr        '$1',
60464159a61SAndreas Gohr        $css
60564159a61SAndreas Gohr    ); // "0.0em" to "0"
60664159a61SAndreas Gohr    $css = preg_replace(
60764159a61SAndreas Gohr        '/([: ]\d+)(\.0*)((?:pt|pc|in|mm|cm|em|ex|px)(?=[^\{]*[;\}])\b|%)/',
60864159a61SAndreas Gohr        '$1$3',
60964159a61SAndreas Gohr        $css
61064159a61SAndreas Gohr    ); // "1.0em" to "1em"
61164159a61SAndreas Gohr    $css = preg_replace(
61264159a61SAndreas Gohr        '/([: ])0+(\d+|\d*\.\d+)((?:pt|pc|in|mm|cm|em|ex|px)(?=[^\{]*[;\}])\b|%)/',
61364159a61SAndreas Gohr        '$1$2$3',
61464159a61SAndreas Gohr        $css
61564159a61SAndreas Gohr    ); // "001em" to "1em"
616205907a7Sfurun
617205907a7Sfurun    // shorten attributes (1em 1em 1em 1em -> 1em)
61864159a61SAndreas Gohr    $css = preg_replace(
61964159a61SAndreas Gohr        '/(?<![\w\-])((?:margin|padding|border|border-(?:width|radius)):)([\w\.]+)( \2)+(?=[;\}]| !)/',
62064159a61SAndreas Gohr        '$1$2',
62164159a61SAndreas Gohr        $css
62264159a61SAndreas Gohr    ); // "1em 1em 1em 1em" to "1em"
62364159a61SAndreas Gohr    $css = preg_replace(
62464159a61SAndreas Gohr        '/(?<![\w\-])((?:margin|padding|border|border-(?:width)):)([\w\.]+) ([\w\.]+) \2 \3(?=[;\}]| !)/',
62564159a61SAndreas Gohr        '$1$2 $3',
62664159a61SAndreas Gohr        $css
62764159a61SAndreas Gohr    ); // "1em 2em 1em 2em" to "1em 2em"
628205907a7Sfurun
62978a6aeb1SAndreas Gohr    // shorten colors
63064159a61SAndreas Gohr    $css = preg_replace(
63164159a61SAndreas Gohr        "/#([0-9a-fA-F]{1})\\1([0-9a-fA-F]{1})\\2([0-9a-fA-F]{1})\\3(?=[^\{]*[;\}])/",
63264159a61SAndreas Gohr        "#\\1\\2\\3",
63364159a61SAndreas Gohr        $css
63464159a61SAndreas Gohr    );
63578a6aeb1SAndreas Gohr
636ba234b18SPhy    // replace back protected strings
637ba234b18SPhy    $quote_back_cb = function ($match) use (&$quote_storage) {
638ba234b18SPhy        return $quote_storage[$match[1]];
639ba234b18SPhy    };
640ba234b18SPhy
6415fdc2ff2SPhy    $css = preg_replace_callback('/"STR(\d+)"/', $quote_back_cb, $css);
6422f5645efSPhy    $css = trim($css);
643ba234b18SPhy
64478a6aeb1SAndreas Gohr    return $css;
64578a6aeb1SAndreas Gohr}
64678a6aeb1SAndreas Gohr
647c00aef76SAndreas Gohr/**
648c00aef76SAndreas Gohr * Callback for css_compress()
649c00aef76SAndreas Gohr *
650c00aef76SAndreas Gohr * Keeps short comments (< 5 chars) to maintain typical browser hacks
651c00aef76SAndreas Gohr *
652253d4b48SGerrit Uitslag * @param array $matches
653253d4b48SGerrit Uitslag * @return string
6545a5ec053SGerrit Uitslag *
6555a5ec053SGerrit Uitslag * @author Andreas Gohr <andi@splitbrain.org>
6565a5ec053SGerrit Uitslag *
657c00aef76SAndreas Gohr */
658d868eb89SAndreas Gohrfunction css_comment_cb($matches)
659d868eb89SAndreas Gohr{
660c00aef76SAndreas Gohr    if (strlen($matches[2]) > 4) return '';
661c00aef76SAndreas Gohr    return $matches[0];
662c00aef76SAndreas Gohr}
66378a6aeb1SAndreas Gohr
664fe5a50c3SAndreas Gohr/**
665fe5a50c3SAndreas Gohr * Callback for css_compress()
666fe5a50c3SAndreas Gohr *
667fe5a50c3SAndreas Gohr * Strips one line comments but makes sure it will not destroy url() constructs with slashes
668fe5a50c3SAndreas Gohr *
669253d4b48SGerrit Uitslag * @param array $matches
670fe5a50c3SAndreas Gohr * @return string
671fe5a50c3SAndreas Gohr */
672d868eb89SAndreas Gohrfunction css_onelinecomment_cb($matches)
673d868eb89SAndreas Gohr{
674fe5a50c3SAndreas Gohr    $line = $matches[0];
675fe5a50c3SAndreas Gohr
676fe5a50c3SAndreas Gohr    $i = 0;
677fe5a50c3SAndreas Gohr    $len = strlen($line);
678918a4468SAndreas Gohr
679fe5a50c3SAndreas Gohr    while ($i < $len) {
680fe5a50c3SAndreas Gohr        $nextcom = strpos($line, '//', $i);
681fe5a50c3SAndreas Gohr        $nexturl = stripos($line, 'url(', $i);
682fe5a50c3SAndreas Gohr
683fe5a50c3SAndreas Gohr        if ($nextcom === false) {
684fe5a50c3SAndreas Gohr            // no more comments, we're done
685918a4468SAndreas Gohr            $i = $len;
686fe5a50c3SAndreas Gohr            break;
687fe5a50c3SAndreas Gohr        }
688fe5a50c3SAndreas Gohr
689918a4468SAndreas Gohr        if ($nexturl === false || $nextcom < $nexturl) {
690918a4468SAndreas Gohr            // no url anymore, strip comment and be done
691918a4468SAndreas Gohr            $i = $nextcom;
692918a4468SAndreas Gohr            break;
693918a4468SAndreas Gohr        }
694918a4468SAndreas Gohr
695918a4468SAndreas Gohr        // we have an upcoming url
696918a4468SAndreas Gohr        $i = strpos($line, ')', $nexturl);
697918a4468SAndreas Gohr    }
698918a4468SAndreas Gohr
699918a4468SAndreas Gohr    return substr($line, 0, $i);
700fe5a50c3SAndreas Gohr}
701fe5a50c3SAndreas Gohr
702e3776c06SMichael Hamann//Setup VIM: ex: et ts=4 :
703