xref: /dokuwiki/lib/exe/css.php (revision 1e519eb5339e02a75ee7aba2a1a5555f09ff8818)
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 */
878a6aeb1SAndreas Gohr
90db5771eSMichael Großeuse dokuwiki\Cache\Cache;
10e1d9dcc8SAndreas Gohruse dokuwiki\Extension\Event;
110db5771eSMichael Große
12e1d9dcc8SAndreas Gohrif(!defined('DOKU_INC')) define('DOKU_INC', __DIR__ .'/../../');
131c2d1019SAndreas Gohrif(!defined('NOSESSION')) define('NOSESSION',true); // we do not use a session or authentication here (better caching)
1498bda4fdSAndreas Gohrif(!defined('DOKU_DISABLE_GZIP_OUTPUT')) define('DOKU_DISABLE_GZIP_OUTPUT',1); // we gzip ourself here
156c47a78cSAnika Henkeif(!defined('NL')) define('NL',"\n");
1678a6aeb1SAndreas Gohrrequire_once(DOKU_INC.'inc/init.php');
1778a6aeb1SAndreas Gohr
1878a6aeb1SAndreas Gohr// Main (don't run when UNIT test)
1978a6aeb1SAndreas Gohrif(!defined('SIMPLE_TEST')){
2078a6aeb1SAndreas Gohr    header('Content-Type: text/css; charset=utf-8');
2178a6aeb1SAndreas Gohr    css_out();
2278a6aeb1SAndreas Gohr}
2378a6aeb1SAndreas Gohr
2478a6aeb1SAndreas Gohr
2578a6aeb1SAndreas Gohr// ---------------------- functions ------------------------------
2678a6aeb1SAndreas Gohr
2778a6aeb1SAndreas Gohr/**
2878a6aeb1SAndreas Gohr * Output all needed Styles
2978a6aeb1SAndreas Gohr *
3078a6aeb1SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
3178a6aeb1SAndreas Gohr */
3278a6aeb1SAndreas Gohrfunction css_out(){
3378a6aeb1SAndreas Gohr    global $conf;
3478a6aeb1SAndreas Gohr    global $lang;
3509edb711SAndreas Gohr    global $config_cascade;
36bfd0f597STom N Harris    global $INPUT;
3709edb711SAndreas Gohr
38de4634ecSGerry Weißbach    if ($INPUT->str('s') == 'feed') {
39de4634ecSGerry Weißbach        $mediatypes = array('feed');
40de4634ecSGerry Weißbach        $type = 'feed';
41de4634ecSGerry Weißbach    } else {
425d48a5eaSGerry Weißbach        $mediatypes = array('screen', 'all', 'print', 'speech');
43de4634ecSGerry Weißbach        $type = '';
44de4634ecSGerry Weißbach    }
45de4634ecSGerry Weißbach
4620a2375aSAndreas Gohr    // decide from where to get the template
4720a2375aSAndreas Gohr    $tpl = trim(preg_replace('/[^\w-]+/','',$INPUT->str('t')));
4820a2375aSAndreas Gohr    if(!$tpl) $tpl = $conf['template'];
4920a2375aSAndreas Gohr
5014cd40ecSChang Zhao    // load style.ini
514593dbd2SAnna Dabrowska    $styleUtil = new \dokuwiki\StyleUtils($tpl, $INPUT->bool('preview'));
524593dbd2SAnna Dabrowska    $styleini = $styleUtil->cssStyleini();
5320a2375aSAndreas Gohr
54afb2c082SAndreas Gohr    // cache influencers
55259571aaSMichal Koutný    $tplinc = tpl_incdir($tpl);
56afb2c082SAndreas Gohr    $cache_files = getConfigFiles('main');
57afb2c082SAndreas Gohr    $cache_files[] = $tplinc.'style.ini';
58afb2c082SAndreas Gohr    $cache_files[] = DOKU_CONF."tpl/$tpl/style.ini";
59afb2c082SAndreas Gohr    $cache_files[] = __FILE__;
604d6524b8SAndreas Gohr    if($INPUT->bool('preview')) $cache_files[] = $conf['cachedir'].'/preview.ini';
61afb2c082SAndreas Gohr
6278a6aeb1SAndreas Gohr    // Array of needed files and their web locations, the latter ones
6378a6aeb1SAndreas Gohr    // are needed to fix relative paths in the stylesheets
64ef36714bSGerry Weißbach    $media_files = array();
6514977bd2SMichael Hamann    foreach($mediatypes as $mediatype) {
66ef36714bSGerry Weißbach        $files = array();
673e32b194SGerry Weißbach
68318cd03eSAnika Henke        // load core styles
69ef36714bSGerry Weißbach        $files[DOKU_INC.'lib/styles/'.$mediatype.'.css'] = DOKU_BASE.'lib/styles/';
70af4684acSAndreas Gohr
7143576758SAndreas Gohr        // load jQuery-UI theme
726c47a78cSAnika Henke        if ($mediatype == 'screen') {
7364159a61SAndreas Gohr            $files[DOKU_INC.'lib/scripts/jquery/jquery-ui-theme/smoothness.css'] =
7464159a61SAndreas Gohr                DOKU_BASE.'lib/scripts/jquery/jquery-ui-theme/';
756c47a78cSAnika Henke        }
76318cd03eSAnika Henke        // load plugin styles
77ef36714bSGerry Weißbach        $files = array_merge($files, css_pluginstyles($mediatype));
78318cd03eSAnika Henke        // load template styles
79afb2c082SAndreas Gohr        if (isset($styleini['stylesheets'][$mediatype])) {
80ef36714bSGerry Weißbach            $files = array_merge($files, $styleini['stylesheets'][$mediatype]);
8109edb711SAndreas Gohr        }
82318cd03eSAnika Henke        // load user styles
83a5be6e80SJeff        if(isset($config_cascade['userstyle'][$mediatype]) and is_array($config_cascade['userstyle'][$mediatype])) {
847b909d5eSGerrit Uitslag            foreach($config_cascade['userstyle'][$mediatype] as $userstyle) {
85ef36714bSGerry Weißbach                $files[$userstyle] = DOKU_BASE;
867b909d5eSGerrit Uitslag            }
87318cd03eSAnika Henke        }
8878a6aeb1SAndreas Gohr
89ef36714bSGerry Weißbach        // Let plugins decide to either put more styles here or to remove some
903e32b194SGerry Weißbach        $media_files[$mediatype] = css_filewrapper($mediatype, $files);
91e1d9dcc8SAndreas Gohr        $CSSEvt = new Event('CSS_STYLES_INCLUDED', $media_files[$mediatype]);
92ef36714bSGerry Weißbach
93ef36714bSGerry Weißbach        // Make it preventable.
94ef36714bSGerry Weißbach        if ( $CSSEvt->advise_before() ) {
95ef36714bSGerry Weißbach            $cache_files = array_merge($cache_files, array_keys($media_files[$mediatype]['files']));
96ef36714bSGerry Weißbach        } else {
97ef36714bSGerry Weißbach            // unset if prevented. Nothing will be printed for this mediatype.
98ef36714bSGerry Weißbach            unset($media_files[$mediatype]);
9914977bd2SMichael Hamann        }
1006619f42eSAdrian Lang
101ef36714bSGerry Weißbach        // finish event.
102ef36714bSGerry Weißbach        $CSSEvt->advise_after();
103ef36714bSGerry Weißbach    }
104ef36714bSGerry Weißbach
105ef36714bSGerry Weißbach    // The generated script depends on some dynamic options
1060db5771eSMichael Große    $cache = new Cache(
10764159a61SAndreas Gohr        'styles' .
10864159a61SAndreas Gohr        $_SERVER['HTTP_HOST'] .
10964159a61SAndreas Gohr        $_SERVER['SERVER_PORT'] .
11064159a61SAndreas Gohr        $INPUT->bool('preview') .
11164159a61SAndreas Gohr        DOKU_BASE .
11264159a61SAndreas Gohr        $tpl .
11364159a61SAndreas Gohr        $type,
11464159a61SAndreas Gohr        '.css'
11564159a61SAndreas Gohr    );
116dc7da772SMichael Große    $cache->setEvent('CSS_CACHE_USE');
117ef36714bSGerry Weißbach
11838f56bffSBen Coburn    // check cache age & handle conditional request
1196619f42eSAdrian Lang    // This may exit if a cache can be used
120e7c68c4dSGerry Weißbach    $cache_ok = $cache->useCache(array('files' => $cache_files));
121e7c68c4dSGerry Weißbach    http_cached($cache->cache, $cache_ok);
12278a6aeb1SAndreas Gohr
1233899c2ecSMichael Hamann    // start output buffering
1243899c2ecSMichael Hamann    ob_start();
1253899c2ecSMichael Hamann
126ef36714bSGerry Weißbach    // Fire CSS_STYLES_INCLUDED for one last time to let the
127ef36714bSGerry Weißbach    // plugins decide whether to include the DW default styles.
128ef36714bSGerry Weißbach    // This can be done by preventing the Default.
129ef36714bSGerry Weißbach    $media_files['DW_DEFAULT'] = css_filewrapper('DW_DEFAULT');
130cbb44eabSAndreas Gohr    Event::createAndTrigger('CSS_STYLES_INCLUDED', $media_files['DW_DEFAULT'], 'css_defaultstyles');
131ef36714bSGerry Weißbach
1326c47a78cSAnika Henke    // build the stylesheet
13314977bd2SMichael Hamann    foreach ($mediatypes as $mediatype) {
13478a6aeb1SAndreas Gohr
135ef36714bSGerry Weißbach        // Check if there is a wrapper set for this type.
136ef36714bSGerry Weißbach        if ( !isset($media_files[$mediatype]) ) {
137ef36714bSGerry Weißbach            continue;
13878a6aeb1SAndreas Gohr        }
13978a6aeb1SAndreas Gohr
140ef36714bSGerry Weißbach        $cssData = $media_files[$mediatype];
141ef36714bSGerry Weißbach
142ef36714bSGerry Weißbach        // Print the styles.
143ef36714bSGerry Weißbach        print NL;
144ef36714bSGerry Weißbach        if ( $cssData['encapsulate'] === true ) print $cssData['encapsulationPrefix'] . ' {';
145ef36714bSGerry Weißbach        print '/* START '.$cssData['mediatype'].' styles */'.NL;
146ef36714bSGerry Weißbach
1476c47a78cSAnika Henke        // load files
148ef36714bSGerry Weißbach        foreach($cssData['files'] as $file => $location){
14972a66eb7SAndreas Gohr            $display = str_replace(fullpath(DOKU_INC), '', fullpath($file));
150ef36714bSGerry Weißbach            print "\n/* XXXXXXXXX $display XXXXXXXXX */\n";
151ef36714bSGerry Weißbach            print css_loadfile($file, $location);
1526c47a78cSAnika Henke        }
153ef36714bSGerry Weißbach
154ef36714bSGerry Weißbach        print NL;
155ef36714bSGerry Weißbach        if ( $cssData['encapsulate'] === true ) print '} /* /@media ';
156ef36714bSGerry Weißbach        else print '/*';
157ef36714bSGerry Weißbach        print ' END '.$cssData['mediatype'].' styles */'.NL;
1586c47a78cSAnika Henke    }
159ef36714bSGerry Weißbach
16078a6aeb1SAndreas Gohr    // end output buffering and get contents
16178a6aeb1SAndreas Gohr    $css = ob_get_contents();
16278a6aeb1SAndreas Gohr    ob_end_clean();
16378a6aeb1SAndreas Gohr
164f8fb2d18SAndreas Gohr    // strip any source maps
165f8fb2d18SAndreas Gohr    stripsourcemaps($css);
166f8fb2d18SAndreas Gohr
1676e69c1baSAndreas Gohr    // apply style replacements
168afb2c082SAndreas Gohr    $css = css_applystyle($css, $styleini['replacements']);
1696e69c1baSAndreas Gohr
17072a66eb7SAndreas Gohr    // parse less
17172a66eb7SAndreas Gohr    $css = css_parseless($css);
172d4a1ece8SAndreas Gohr
17378a6aeb1SAndreas Gohr    // compress whitespace and comments
17478a6aeb1SAndreas Gohr    if($conf['compress']){
17578a6aeb1SAndreas Gohr        $css = css_compress($css);
17678a6aeb1SAndreas Gohr    }
17778a6aeb1SAndreas Gohr
178809d3ba5SAndreas Gohr    // embed small images right into the stylesheet
179809d3ba5SAndreas Gohr    if($conf['cssdatauri']){
180809d3ba5SAndreas Gohr        $base = preg_quote(DOKU_BASE,'#');
181809d3ba5SAndreas Gohr        $css = preg_replace_callback('#(url\([ \'"]*)('.$base.')(.*?(?:\.(png|gif)))#i','css_datauri',$css);
182809d3ba5SAndreas Gohr    }
183809d3ba5SAndreas Gohr
1846619f42eSAdrian Lang    http_cached_finish($cache->cache, $css);
18578a6aeb1SAndreas Gohr}
18678a6aeb1SAndreas Gohr
18778a6aeb1SAndreas Gohr/**
18872a66eb7SAndreas Gohr * Uses phpless to parse LESS in our CSS
18972a66eb7SAndreas Gohr *
19072a66eb7SAndreas Gohr * most of this function is error handling to show a nice useful error when
19172a66eb7SAndreas Gohr * LESS compilation fails
19272a66eb7SAndreas Gohr *
193253d4b48SGerrit Uitslag * @param string $css
19472a66eb7SAndreas Gohr * @return string
19572a66eb7SAndreas Gohr */
19672a66eb7SAndreas Gohrfunction css_parseless($css) {
1977d247a3cSGerrit Uitslag    global $conf;
1987d247a3cSGerrit Uitslag
19972a66eb7SAndreas Gohr    $less = new lessc();
200343a31d8SAndreas Gohr    $less->importDir = array(DOKU_INC);
2017d247a3cSGerrit Uitslag    $less->setPreserveComments(!$conf['compress']);
20230f686ebSChristopher Smith
20330f686ebSChristopher Smith    if (defined('DOKU_UNITTEST')){
20430f686ebSChristopher Smith        $less->importDir[] = TMP_DIR;
20530f686ebSChristopher Smith    }
20630f686ebSChristopher Smith
20772a66eb7SAndreas Gohr    try {
20872a66eb7SAndreas Gohr        return $less->compile($css);
20972a66eb7SAndreas Gohr    } catch(Exception $e) {
21072a66eb7SAndreas Gohr        // get exception message
21172a66eb7SAndreas Gohr        $msg = str_replace(array("\n", "\r", "'"), array(), $e->getMessage());
21272a66eb7SAndreas Gohr
21372a66eb7SAndreas Gohr        // try to use line number to find affected file
21472a66eb7SAndreas Gohr        if(preg_match('/line: (\d+)$/', $msg, $m)){
21572a66eb7SAndreas Gohr            $msg = substr($msg, 0, -1* strlen($m[0])); //remove useless linenumber
21672a66eb7SAndreas Gohr            $lno = $m[1];
21772a66eb7SAndreas Gohr
21872a66eb7SAndreas Gohr            // walk upwards to last include
21972a66eb7SAndreas Gohr            $lines = explode("\n", $css);
22072a66eb7SAndreas Gohr            for($i=$lno-1; $i>=0; $i--){
22172a66eb7SAndreas Gohr                if(preg_match('/\/(\* XXXXXXXXX )(.*?)( XXXXXXXXX \*)\//', $lines[$i], $m)){
22272a66eb7SAndreas Gohr                    // we found it, add info to message
22372a66eb7SAndreas Gohr                    $msg .= ' in '.$m[2].' at line '.($lno-$i);
22472a66eb7SAndreas Gohr                    break;
22572a66eb7SAndreas Gohr                }
22672a66eb7SAndreas Gohr            }
22772a66eb7SAndreas Gohr        }
22872a66eb7SAndreas Gohr
22972a66eb7SAndreas Gohr        // something went wrong
23072a66eb7SAndreas Gohr        $error = 'A fatal error occured during compilation of the CSS files. '.
23172a66eb7SAndreas Gohr            'If you recently installed a new plugin or template it '.
23272a66eb7SAndreas Gohr            'might be broken and you should try disabling it again. ['.$msg.']';
23372a66eb7SAndreas Gohr
23472a66eb7SAndreas Gohr        echo ".dokuwiki:before {
23572a66eb7SAndreas Gohr            content: '$error';
23672a66eb7SAndreas Gohr            background-color: red;
23772a66eb7SAndreas Gohr            display: block;
23872a66eb7SAndreas Gohr            background-color: #fcc;
23972a66eb7SAndreas Gohr            border-color: #ebb;
24072a66eb7SAndreas Gohr            color: #000;
24172a66eb7SAndreas Gohr            padding: 0.5em;
24272a66eb7SAndreas Gohr        }";
24372a66eb7SAndreas Gohr
24472a66eb7SAndreas Gohr        exit;
24572a66eb7SAndreas Gohr    }
24672a66eb7SAndreas Gohr}
24772a66eb7SAndreas Gohr
24872a66eb7SAndreas Gohr/**
2496e69c1baSAndreas Gohr * Does placeholder replacements in the style according to
2506e69c1baSAndreas Gohr * the ones defined in a templates style.ini file
2516e69c1baSAndreas Gohr *
252d4a1ece8SAndreas Gohr * This also adds the ini defined placeholders as less variables
253d4a1ece8SAndreas Gohr * (sans the surrounding __ and with a ini_ prefix)
254d4a1ece8SAndreas Gohr *
2556e69c1baSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
256253d4b48SGerrit Uitslag *
257253d4b48SGerrit Uitslag * @param string $css
258253d4b48SGerrit Uitslag * @param array $replacements  array(placeholder => value)
259253d4b48SGerrit Uitslag * @return string
2606e69c1baSAndreas Gohr */
261afb2c082SAndreas Gohrfunction css_applystyle($css, $replacements) {
262cbe37079SAndreas Gohr    // we convert ini replacements to LESS variable names
263cbe37079SAndreas Gohr    // and build a list of variable: value; pairs
264d4a1ece8SAndreas Gohr    $less = '';
265afb2c082SAndreas Gohr    foreach((array) $replacements as $key => $value) {
266cbe37079SAndreas Gohr        $lkey = trim($key, '_');
267cbe37079SAndreas Gohr        $lkey = '@ini_'.$lkey;
268cbe37079SAndreas Gohr        $less .= "$lkey: $value;\n";
269cbe37079SAndreas Gohr
270afb2c082SAndreas Gohr        $replacements[$key] = $lkey;
271d4a1ece8SAndreas Gohr    }
272c51b334eSAndreas Gohr
273cbe37079SAndreas Gohr    // we now replace all old ini replacements with LESS variables
274afb2c082SAndreas Gohr    $css = strtr($css, $replacements);
275cbe37079SAndreas Gohr
276cbe37079SAndreas Gohr    // now prepend the list of LESS variables as the very first thing
277c51b334eSAndreas Gohr    $css = $less.$css;
2786e69c1baSAndreas Gohr    return $css;
2796e69c1baSAndreas Gohr}
2806e69c1baSAndreas Gohr
2816e69c1baSAndreas Gohr/**
282ef36714bSGerry Weißbach * Wrapper for the files, content and mediatype for the event CSS_STYLES_INCLUDED
283ef36714bSGerry Weißbach *
284ef36714bSGerry Weißbach * @author Gerry Weißbach <gerry.w@gammaproduction.de>
285ef36714bSGerry Weißbach *
286ef36714bSGerry Weißbach * @param string $mediatype type ofthe current media files/content set
287ef36714bSGerry Weißbach * @param array $files set of files that define the current mediatype
288ef36714bSGerry Weißbach * @return array
289ef36714bSGerry Weißbach */
2903e32b194SGerry Weißbachfunction css_filewrapper($mediatype, $files=array()){
291ef36714bSGerry Weißbach    return array(
292ef36714bSGerry Weißbach            'files'                 => $files,
293ef36714bSGerry Weißbach            'mediatype'             => $mediatype,
294cf35519cSGerry Weißbach            'encapsulate'           => $mediatype != 'all',
295ef36714bSGerry Weißbach            'encapsulationPrefix'   => '@media '.$mediatype
296ef36714bSGerry Weißbach        );
297ef36714bSGerry Weißbach}
298ef36714bSGerry Weißbach
299ef36714bSGerry Weißbach/**
300ef36714bSGerry Weißbach * Prints the @media encapsulated default styles of DokuWiki
301ef36714bSGerry Weißbach *
302ef36714bSGerry Weißbach * @author Gerry Weißbach <gerry.w@gammaproduction.de>
303ef36714bSGerry Weißbach *
304ef36714bSGerry Weißbach * This function is being called by a CSS_STYLES_INCLUDED event
305ef36714bSGerry Weißbach * The event can be distinguished by the mediatype which is:
306ef36714bSGerry Weißbach *   DW_DEFAULT
307ef36714bSGerry Weißbach */
308ef36714bSGerry Weißbachfunction css_defaultstyles(){
309ef36714bSGerry Weißbach    // print the default classes for interwiki links and file downloads
310ef36714bSGerry Weißbach    print '@media screen {';
311ef36714bSGerry Weißbach    css_interwiki();
312ef36714bSGerry Weißbach    css_filetypes();
313ef36714bSGerry Weißbach    print '}';
314ef36714bSGerry Weißbach}
315ef36714bSGerry Weißbach
316ef36714bSGerry Weißbach/**
3171c2d1019SAndreas Gohr * Prints classes for interwikilinks
3181c2d1019SAndreas Gohr *
3191c2d1019SAndreas Gohr * Interwiki links have two classes: 'interwiki' and 'iw_$name>' where
3201c2d1019SAndreas Gohr * $name is the identifier given in the config. All Interwiki links get
3211c2d1019SAndreas Gohr * an default style with a default icon. If a special icon is available
3221c2d1019SAndreas Gohr * for an interwiki URL it is set in it's own class. Both classes can be
3231c2d1019SAndreas Gohr * overwritten in the template or userstyles.
3241c2d1019SAndreas Gohr *
3251c2d1019SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
3261c2d1019SAndreas Gohr */
3271c2d1019SAndreas Gohrfunction css_interwiki(){
3281c2d1019SAndreas Gohr
3291c2d1019SAndreas Gohr    // default style
3301c2d1019SAndreas Gohr    echo 'a.interwiki {';
331*1e519eb5SAndreas Gohr    echo ' background: transparent url('.DOKU_BASE.'lib/images/interwiki.png) 0 0 no-repeat;';
332*1e519eb5SAndreas Gohr    echo ' background-size: 1.2em;';
333*1e519eb5SAndreas Gohr    echo ' padding: 0 0 0 1.4em;';
3341c2d1019SAndreas Gohr    echo '}';
3351c2d1019SAndreas Gohr
3361c2d1019SAndreas Gohr    // additional styles when icon available
3371c2d1019SAndreas Gohr    $iwlinks = getInterwiki();
3381c2d1019SAndreas Gohr    foreach (array_keys($iwlinks) as $iw) {
3399d2ddea4SAndreas Gohr        $class = preg_replace('/[^_\-a-z0-9]+/i', '_', $iw);
340*1e519eb5SAndreas Gohr        foreach (['svg', 'png', 'gif'] as $ext) {
341*1e519eb5SAndreas Gohr            $file = 'lib/images/interwiki/' . $iw . '.' . $ext;
342*1e519eb5SAndreas Gohr
343*1e519eb5SAndreas Gohr            if (file_exists(DOKU_INC . $file)) {
3449d2ddea4SAndreas Gohr                echo "a.iw_$class {";
345*1e519eb5SAndreas Gohr                echo '  background-image: url(' . DOKU_BASE . $file . ')';
3461c2d1019SAndreas Gohr                echo '}';
347*1e519eb5SAndreas Gohr                break;
348*1e519eb5SAndreas Gohr            }
3491c2d1019SAndreas Gohr        }
3501c2d1019SAndreas Gohr    }
351d15166e5SAndreas Gohr}
3521c2d1019SAndreas Gohr
353d15166e5SAndreas Gohr/**
354d15166e5SAndreas Gohr * Prints classes for file download links
355d15166e5SAndreas Gohr *
356d15166e5SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
357d15166e5SAndreas Gohr */
358d15166e5SAndreas Gohrfunction css_filetypes(){
359d15166e5SAndreas Gohr
360d15166e5SAndreas Gohr    // default style
361035e07f1SKate Arzamastseva    echo '.mediafile {';
36224115d42SAndreas Gohr    echo ' background: transparent url('.DOKU_BASE.'lib/images/fileicons/svg/file.svg) 0px 1px no-repeat;';
36324115d42SAndreas Gohr    echo ' background-size: 1.2em;';
36424115d42SAndreas Gohr    echo ' padding-left: 1.5em;';
365d15166e5SAndreas Gohr    echo '}';
366d15166e5SAndreas Gohr
367d15166e5SAndreas Gohr    // additional styles when icon available
36827bf7924STom N Harris    // scan directory for all icons
36927bf7924STom N Harris    $exts = array();
37024115d42SAndreas Gohr    if($dh = opendir(DOKU_INC.'lib/images/fileicons/svg')){
37127bf7924STom N Harris        while(false !== ($file = readdir($dh))){
37224115d42SAndreas Gohr            if(preg_match('/(.*?)\.svg$/i',$file, $match)){
37324115d42SAndreas Gohr                $exts[] = strtolower($match[1]);
374d15166e5SAndreas Gohr            }
3751c2d1019SAndreas Gohr        }
37627bf7924STom N Harris        closedir($dh);
37727bf7924STom N Harris    }
37824115d42SAndreas Gohr    foreach($exts as $ext){
37927bf7924STom N Harris        $class = preg_replace('/[^_\-a-z0-9]+/','_',$ext);
380035e07f1SKate Arzamastseva        echo ".mf_$class {";
38124115d42SAndreas Gohr        echo '  background-image: url('.DOKU_BASE.'lib/images/fileicons/svg/'.$ext.'.svg)';
38227bf7924STom N Harris        echo '}';
38327bf7924STom N Harris    }
38427bf7924STom N Harris}
3851c2d1019SAndreas Gohr
3861c2d1019SAndreas Gohr/**
38778a6aeb1SAndreas Gohr * Loads a given file and fixes relative URLs with the
38878a6aeb1SAndreas Gohr * given location prefix
389253d4b48SGerrit Uitslag *
390253d4b48SGerrit Uitslag * @param string $file file system path
391253d4b48SGerrit Uitslag * @param string $location
392253d4b48SGerrit Uitslag * @return string
39378a6aeb1SAndreas Gohr */
39478a6aeb1SAndreas Gohrfunction css_loadfile($file,$location=''){
39512ffbbc3SChristopher Smith    $css_file = new DokuCssFile($file);
39612ffbbc3SChristopher Smith    return $css_file->load($location);
39712ffbbc3SChristopher Smith}
39812ffbbc3SChristopher Smith
3991e2c5948SChristopher Smith/**
4001e2c5948SChristopher Smith *  Helper class to abstract loading of css/less files
4011e2c5948SChristopher Smith *
4021e2c5948SChristopher Smith *  @author Chris Smith <chris@jalakai.co.uk>
4031e2c5948SChristopher Smith */
40412ffbbc3SChristopher Smithclass DokuCssFile {
40512ffbbc3SChristopher Smith
4061e2c5948SChristopher Smith    protected $filepath;             // file system path to the CSS/Less file
4071e2c5948SChristopher Smith    protected $location;             // base url location of the CSS/Less file
408fd18b5f4SGerrit Uitslag    protected $relative_path = null;
40912ffbbc3SChristopher Smith
41012ffbbc3SChristopher Smith    public function __construct($file) {
41112ffbbc3SChristopher Smith        $this->filepath = $file;
41212ffbbc3SChristopher Smith    }
41312ffbbc3SChristopher Smith
4141e2c5948SChristopher Smith    /**
4151e2c5948SChristopher Smith     * Load the contents of the css/less file and adjust any relative paths/urls (relative to this file) to be
4161e2c5948SChristopher Smith     * relative to the dokuwiki root: the web root (DOKU_BASE) for most files; the file system root (DOKU_INC)
4171e2c5948SChristopher Smith     * for less files.
4181e2c5948SChristopher Smith     *
4191e2c5948SChristopher Smith     * @param   string   $location   base url for this file
4201e2c5948SChristopher Smith     * @return  string               the CSS/Less contents of the file
4211e2c5948SChristopher Smith     */
42212ffbbc3SChristopher Smith    public function load($location='') {
42379e79377SAndreas Gohr        if (!file_exists($this->filepath)) return '';
42412ffbbc3SChristopher Smith
42512ffbbc3SChristopher Smith        $css = io_readFile($this->filepath);
42678a6aeb1SAndreas Gohr        if (!$location) return $css;
42778a6aeb1SAndreas Gohr
42812ffbbc3SChristopher Smith        $this->location = $location;
429de737055SChristopher Smith
43012ffbbc3SChristopher Smith        $css = preg_replace_callback('#(url\( *)([\'"]?)(.*?)(\2)( *\))#',array($this,'replacements'),$css);
43112ffbbc3SChristopher Smith        $css = preg_replace_callback('#(@import\s+)([\'"])(.*?)(\2)#',array($this,'replacements'),$css);
432809d3ba5SAndreas Gohr
43378a6aeb1SAndreas Gohr        return $css;
43478a6aeb1SAndreas Gohr    }
43578a6aeb1SAndreas Gohr
4361e2c5948SChristopher Smith    /**
4371e2c5948SChristopher Smith     * Get the relative file system path of this file, relative to dokuwiki's root folder, DOKU_INC
4381e2c5948SChristopher Smith     *
4391e2c5948SChristopher Smith     * @return string   relative file system path
4401e2c5948SChristopher Smith     */
441fd18b5f4SGerrit Uitslag    protected function getRelativePath(){
44212ffbbc3SChristopher Smith
44312ffbbc3SChristopher Smith        if (is_null($this->relative_path)) {
44412ffbbc3SChristopher Smith            $basedir = array(DOKU_INC);
4451e2c5948SChristopher Smith
4461e2c5948SChristopher Smith            // during testing, files may be found relative to a second base dir, TMP_DIR
44712ffbbc3SChristopher Smith            if (defined('DOKU_UNITTEST')) {
44812ffbbc3SChristopher Smith                $basedir[] = realpath(TMP_DIR);
44912ffbbc3SChristopher Smith            }
45012ffbbc3SChristopher Smith
45173f25ac0SAndreas Gohr            $basedir = array_map('preg_quote_cb', $basedir);
45273f25ac0SAndreas Gohr            $regex = '/^('.join('|',$basedir).')/';
45312ffbbc3SChristopher Smith            $this->relative_path = preg_replace($regex, '', dirname($this->filepath));
45412ffbbc3SChristopher Smith        }
45512ffbbc3SChristopher Smith
45612ffbbc3SChristopher Smith        return $this->relative_path;
45712ffbbc3SChristopher Smith    }
45812ffbbc3SChristopher Smith
4591e2c5948SChristopher Smith    /**
4601e2c5948SChristopher Smith     * preg_replace callback to adjust relative urls from relative to this file to relative
4611e2c5948SChristopher Smith     * to the appropriate dokuwiki root location as described in the code
4621e2c5948SChristopher Smith     *
4631e2c5948SChristopher Smith     * @param  array    see http://php.net/preg_replace_callback
4641e2c5948SChristopher Smith     * @return string   see http://php.net/preg_replace_callback
4651e2c5948SChristopher Smith     */
46612ffbbc3SChristopher Smith    public function replacements($match) {
467de737055SChristopher Smith
468e24a74c0SAndreas Gohr        if (preg_match('#^(/|data:|https?://)#', $match[3])) { // not a relative url? - no adjustment required
469de737055SChristopher Smith            return $match[0];
470e24a74c0SAndreas Gohr        } elseif (substr($match[3], -5) == '.less') { // a less file import? - requires a file system location
4715312cb0bSSyntaxseed            if ($match[3][0] != '/') {
47212ffbbc3SChristopher Smith                $match[3] = $this->getRelativePath() . '/' . $match[3];
473de737055SChristopher Smith            }
474e24a74c0SAndreas Gohr        } else { // everything else requires a url adjustment
47512ffbbc3SChristopher Smith            $match[3] = $this->location . $match[3];
476de737055SChristopher Smith        }
477de737055SChristopher Smith
478de737055SChristopher Smith        return join('',array_slice($match,1));
479de737055SChristopher Smith    }
48012ffbbc3SChristopher Smith}
481de737055SChristopher Smith
482809d3ba5SAndreas Gohr/**
4834eb5f931SChristopher Smith * Convert local image URLs to data URLs if the filesize is small
484809d3ba5SAndreas Gohr *
485809d3ba5SAndreas Gohr * Callback for preg_replace_callback
486253d4b48SGerrit Uitslag *
487253d4b48SGerrit Uitslag * @param array $match
488253d4b48SGerrit Uitslag * @return string
489809d3ba5SAndreas Gohr */
490809d3ba5SAndreas Gohrfunction css_datauri($match){
49128f4004cSAndreas Gohr    global $conf;
49228f4004cSAndreas Gohr
493809d3ba5SAndreas Gohr    $pre   = unslash($match[1]);
494809d3ba5SAndreas Gohr    $base  = unslash($match[2]);
495809d3ba5SAndreas Gohr    $url   = unslash($match[3]);
496809d3ba5SAndreas Gohr    $ext   = unslash($match[4]);
497809d3ba5SAndreas Gohr
498809d3ba5SAndreas Gohr    $local = DOKU_INC.$url;
499809d3ba5SAndreas Gohr    $size  = @filesize($local);
50028f4004cSAndreas Gohr    if($size && $size < $conf['cssdatauri']){
501809d3ba5SAndreas Gohr        $data = base64_encode(file_get_contents($local));
502809d3ba5SAndreas Gohr    }
5038f34cf3dSMichael Große    if (!empty($data)){
5046a5d6817SAnika Henke        $url = 'data:image/'.$ext.';base64,'.$data;
505809d3ba5SAndreas Gohr    }else{
506809d3ba5SAndreas Gohr        $url = $base.$url;
507809d3ba5SAndreas Gohr    }
508809d3ba5SAndreas Gohr    return $pre.$url;
509809d3ba5SAndreas Gohr}
510809d3ba5SAndreas Gohr
51115c394afSAndreas Gohr
51278a6aeb1SAndreas Gohr/**
51378a6aeb1SAndreas Gohr * Returns a list of possible Plugin Styles (no existance check here)
51478a6aeb1SAndreas Gohr *
51578a6aeb1SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
516253d4b48SGerrit Uitslag *
517253d4b48SGerrit Uitslag * @param string $mediatype
518253d4b48SGerrit Uitslag * @return array
51978a6aeb1SAndreas Gohr */
520318cd03eSAnika Henkefunction css_pluginstyles($mediatype='screen'){
52178a6aeb1SAndreas Gohr    $list = array();
52278a6aeb1SAndreas Gohr    $plugins = plugin_list();
52378a6aeb1SAndreas Gohr    foreach ($plugins as $p){
524318cd03eSAnika Henke        $list[DOKU_PLUGIN."$p/$mediatype.css"]  = DOKU_BASE."lib/plugins/$p/";
525d4a1ece8SAndreas Gohr        $list[DOKU_PLUGIN."$p/$mediatype.less"]  = DOKU_BASE."lib/plugins/$p/";
526318cd03eSAnika Henke        // alternative for screen.css
527318cd03eSAnika Henke        if ($mediatype=='screen') {
52878a6aeb1SAndreas Gohr            $list[DOKU_PLUGIN."$p/style.css"]  = DOKU_BASE."lib/plugins/$p/";
529d4a1ece8SAndreas Gohr            $list[DOKU_PLUGIN."$p/style.less"]  = DOKU_BASE."lib/plugins/$p/";
53078a6aeb1SAndreas Gohr        }
53178a6aeb1SAndreas Gohr    }
53278a6aeb1SAndreas Gohr    return $list;
53378a6aeb1SAndreas Gohr}
53478a6aeb1SAndreas Gohr
53578a6aeb1SAndreas Gohr/**
53678a6aeb1SAndreas Gohr * Very simple CSS optimizer
53778a6aeb1SAndreas Gohr *
53878a6aeb1SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
539253d4b48SGerrit Uitslag *
540253d4b48SGerrit Uitslag * @param string $css
541253d4b48SGerrit Uitslag * @return string
54278a6aeb1SAndreas Gohr */
54378a6aeb1SAndreas Gohrfunction css_compress($css){
544ba234b18SPhy    // replace quoted strings with placeholder
545ba234b18SPhy    $quote_storage = [];
546ba234b18SPhy
547ba234b18SPhy    $quote_cb = function ($match) use (&$quote_storage) {
548ba234b18SPhy        $quote_storage[] = $match[0];
5495fdc2ff2SPhy        return '"STR'.(count($quote_storage)-1).'"';
550ba234b18SPhy    };
551ba234b18SPhy
5525fdc2ff2SPhy    $css = preg_replace_callback('/(([\'"]).*?(?<!\\\\)\2)/', $quote_cb, $css);
553ba234b18SPhy
554fd7c2db0SAndreas Gohr    // strip comments through a callback
555fd7c2db0SAndreas Gohr    $css = preg_replace_callback('#(/\*)(.*?)(\*/)#s','css_comment_cb',$css);
556fd7c2db0SAndreas Gohr
557247c1c5dSAndreas Gohr    // strip (incorrect but common) one line comments
558fe5a50c3SAndreas Gohr    $css = preg_replace_callback('/^.*\/\/.*$/m','css_onelinecomment_cb',$css);
559247c1c5dSAndreas Gohr
56078a6aeb1SAndreas Gohr    // strip whitespaces
56178a6aeb1SAndreas Gohr    $css = preg_replace('![\r\n\t ]+!',' ',$css);
562f5379589SChristopher Smith    $css = preg_replace('/ ?([;,{}\/]) ?/','\\1',$css);
563f5379589SChristopher Smith    $css = preg_replace('/ ?: /',':',$css);
56478a6aeb1SAndreas Gohr
565205907a7Sfurun    // number compression
56664159a61SAndreas Gohr    $css = preg_replace(
56764159a61SAndreas Gohr        '/([: ])0+(\.\d+?)0*((?:pt|pc|in|mm|cm|em|ex|px)\b|%)(?=[^\{]*[;\}])/',
56864159a61SAndreas Gohr        '$1$2$3',
56964159a61SAndreas Gohr        $css
57064159a61SAndreas Gohr    ); // "0.1em" to ".1em", "1.10em" to "1.1em"
57164159a61SAndreas Gohr    $css = preg_replace(
57264159a61SAndreas Gohr        '/([: ])\.(0)+((?:pt|pc|in|mm|cm|em|ex|px)\b|%)(?=[^\{]*[;\}])/',
57364159a61SAndreas Gohr        '$1$2',
57464159a61SAndreas Gohr        $css
57564159a61SAndreas Gohr    ); // ".0em" to "0"
57664159a61SAndreas Gohr    $css = preg_replace(
57764159a61SAndreas Gohr        '/([: ]0)0*(\.0*)?((?:pt|pc|in|mm|cm|em|ex|px)(?=[^\{]*[;\}])\b|%)/',
57864159a61SAndreas Gohr        '$1',
57964159a61SAndreas Gohr        $css
58064159a61SAndreas Gohr    ); // "0.0em" to "0"
58164159a61SAndreas Gohr    $css = preg_replace(
58264159a61SAndreas Gohr        '/([: ]\d+)(\.0*)((?:pt|pc|in|mm|cm|em|ex|px)(?=[^\{]*[;\}])\b|%)/',
58364159a61SAndreas Gohr        '$1$3',
58464159a61SAndreas Gohr        $css
58564159a61SAndreas Gohr    ); // "1.0em" to "1em"
58664159a61SAndreas Gohr    $css = preg_replace(
58764159a61SAndreas Gohr        '/([: ])0+(\d+|\d*\.\d+)((?:pt|pc|in|mm|cm|em|ex|px)(?=[^\{]*[;\}])\b|%)/',
58864159a61SAndreas Gohr        '$1$2$3',
58964159a61SAndreas Gohr        $css
59064159a61SAndreas Gohr    ); // "001em" to "1em"
591205907a7Sfurun
592205907a7Sfurun    // shorten attributes (1em 1em 1em 1em -> 1em)
59364159a61SAndreas Gohr    $css = preg_replace(
59464159a61SAndreas Gohr        '/(?<![\w\-])((?:margin|padding|border|border-(?:width|radius)):)([\w\.]+)( \2)+(?=[;\}]| !)/',
59564159a61SAndreas Gohr        '$1$2',
59664159a61SAndreas Gohr        $css
59764159a61SAndreas Gohr    ); // "1em 1em 1em 1em" to "1em"
59864159a61SAndreas Gohr    $css = preg_replace(
59964159a61SAndreas Gohr        '/(?<![\w\-])((?:margin|padding|border|border-(?:width)):)([\w\.]+) ([\w\.]+) \2 \3(?=[;\}]| !)/',
60064159a61SAndreas Gohr        '$1$2 $3',
60164159a61SAndreas Gohr        $css
60264159a61SAndreas Gohr    ); // "1em 2em 1em 2em" to "1em 2em"
603205907a7Sfurun
60478a6aeb1SAndreas Gohr    // shorten colors
60564159a61SAndreas Gohr    $css = preg_replace(
60664159a61SAndreas Gohr        "/#([0-9a-fA-F]{1})\\1([0-9a-fA-F]{1})\\2([0-9a-fA-F]{1})\\3(?=[^\{]*[;\}])/",
60764159a61SAndreas Gohr        "#\\1\\2\\3",
60864159a61SAndreas Gohr        $css
60964159a61SAndreas Gohr    );
61078a6aeb1SAndreas Gohr
611ba234b18SPhy    // replace back protected strings
612ba234b18SPhy    $quote_back_cb = function ($match) use (&$quote_storage) {
613ba234b18SPhy        return $quote_storage[$match[1]];
614ba234b18SPhy    };
615ba234b18SPhy
6165fdc2ff2SPhy    $css = preg_replace_callback('/"STR(\d+)"/', $quote_back_cb, $css);
6172f5645efSPhy    $css = trim($css);
618ba234b18SPhy
61978a6aeb1SAndreas Gohr    return $css;
62078a6aeb1SAndreas Gohr}
62178a6aeb1SAndreas Gohr
622c00aef76SAndreas Gohr/**
623c00aef76SAndreas Gohr * Callback for css_compress()
624c00aef76SAndreas Gohr *
625c00aef76SAndreas Gohr * Keeps short comments (< 5 chars) to maintain typical browser hacks
626c00aef76SAndreas Gohr *
627c00aef76SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
628253d4b48SGerrit Uitslag *
629253d4b48SGerrit Uitslag * @param array $matches
630253d4b48SGerrit Uitslag * @return string
631c00aef76SAndreas Gohr */
632c00aef76SAndreas Gohrfunction css_comment_cb($matches){
633c00aef76SAndreas Gohr    if(strlen($matches[2]) > 4) return '';
634c00aef76SAndreas Gohr    return $matches[0];
635c00aef76SAndreas Gohr}
63678a6aeb1SAndreas Gohr
637fe5a50c3SAndreas Gohr/**
638fe5a50c3SAndreas Gohr * Callback for css_compress()
639fe5a50c3SAndreas Gohr *
640fe5a50c3SAndreas Gohr * Strips one line comments but makes sure it will not destroy url() constructs with slashes
641fe5a50c3SAndreas Gohr *
642253d4b48SGerrit Uitslag * @param array $matches
643fe5a50c3SAndreas Gohr * @return string
644fe5a50c3SAndreas Gohr */
645fe5a50c3SAndreas Gohrfunction css_onelinecomment_cb($matches) {
646fe5a50c3SAndreas Gohr    $line = $matches[0];
647fe5a50c3SAndreas Gohr
648fe5a50c3SAndreas Gohr    $i = 0;
649fe5a50c3SAndreas Gohr    $len = strlen($line);
650918a4468SAndreas Gohr
651fe5a50c3SAndreas Gohr    while ($i< $len){
652fe5a50c3SAndreas Gohr        $nextcom = strpos($line, '//', $i);
653fe5a50c3SAndreas Gohr        $nexturl = stripos($line, 'url(', $i);
654fe5a50c3SAndreas Gohr
655fe5a50c3SAndreas Gohr        if($nextcom === false) {
656fe5a50c3SAndreas Gohr            // no more comments, we're done
657918a4468SAndreas Gohr            $i = $len;
658fe5a50c3SAndreas Gohr            break;
659fe5a50c3SAndreas Gohr        }
660fe5a50c3SAndreas Gohr
661918a4468SAndreas Gohr        if($nexturl === false || $nextcom < $nexturl) {
662918a4468SAndreas Gohr            // no url anymore, strip comment and be done
663918a4468SAndreas Gohr            $i = $nextcom;
664918a4468SAndreas Gohr            break;
665918a4468SAndreas Gohr        }
666918a4468SAndreas Gohr
667918a4468SAndreas Gohr        // we have an upcoming url
668918a4468SAndreas Gohr        $i = strpos($line, ')', $nexturl);
669918a4468SAndreas Gohr    }
670918a4468SAndreas Gohr
671918a4468SAndreas Gohr    return substr($line, 0, $i);
672fe5a50c3SAndreas Gohr}
673fe5a50c3SAndreas Gohr
674e3776c06SMichael Hamann//Setup VIM: ex: et ts=4 :
675