xref: /dokuwiki/inc/confutils.php (revision 64159a61e94d0ce680071c8890e144982c3a8cbe)
1b625487dSandi<?php
2b625487dSandi/**
3b625487dSandi * Utilities for collecting data from config files
4b625487dSandi *
5b625487dSandi * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6b625487dSandi * @author     Harry Fuecks <hfuecks@gmail.com>
7b625487dSandi */
8b625487dSandi
910b38f10SChristopher Smith/*
1010b38f10SChristopher Smith * line prefix used to negate single value config items
1110b38f10SChristopher Smith * (scheme.conf & stopwords.conf), e.g.
1210b38f10SChristopher Smith * !gopher
1310b38f10SChristopher Smith */
1410b38f10SChristopher Smithconst DOKU_CONF_NEGATION = '!';
15b625487dSandi
16b625487dSandi/**
17b625487dSandi * Returns the (known) extension and mimetype of a given filename
18b625487dSandi *
1927bf7924STom N Harris * If $knownonly is true (the default), then only known extensions
2027bf7924STom N Harris * are returned.
2127bf7924STom N Harris *
22b625487dSandi * @author Andreas Gohr <andi@splitbrain.org>
2342ea7f44SGerrit Uitslag *
2442ea7f44SGerrit Uitslag * @param string $file file name
2542ea7f44SGerrit Uitslag * @param bool   $knownonly
2642ea7f44SGerrit Uitslag * @return array with extension, mimetype and if it should be downloaded
27b625487dSandi */
2827bf7924STom N Harrisfunction mimetype($file, $knownonly=true){
29b625487dSandi    $mtypes = getMimeTypes();     // known mimetypes
30ad74fe66SAdrian Lang    $ext    = strrpos($file, '.');
31ad74fe66SAdrian Lang    if ($ext === false) {
32ad74fe66SAdrian Lang        return array(false, false, false);
3327bf7924STom N Harris    }
34ad74fe66SAdrian Lang    $ext = strtolower(substr($file, $ext + 1));
35ad74fe66SAdrian Lang    if (!isset($mtypes[$ext])){
36ad74fe66SAdrian Lang        if ($knownonly) {
37ad74fe66SAdrian Lang            return array(false, false, false);
38ecebf3a8SAndreas Gohr        } else {
39ad74fe66SAdrian Lang            return array($ext, 'application/octet-stream', true);
4027bf7924STom N Harris        }
41b625487dSandi    }
42ad74fe66SAdrian Lang    if($mtypes[$ext][0] == '!'){
43ad74fe66SAdrian Lang        return array($ext, substr($mtypes[$ext],1), true);
44ad74fe66SAdrian Lang    }else{
45ad74fe66SAdrian Lang        return array($ext, $mtypes[$ext], false);
46ad74fe66SAdrian Lang    }
47b625487dSandi}
48b625487dSandi
49b625487dSandi/**
50b625487dSandi * returns a hash of mimetypes
51b625487dSandi *
52b625487dSandi * @author Andreas Gohr <andi@splitbrain.org>
53b625487dSandi */
54b625487dSandifunction getMimeTypes() {
5549eb6e38SAndreas Gohr    static $mime = null;
56b625487dSandi    if ( !$mime ) {
57cb043f52SChris Smith        $mime = retrieveConfig('mime','confToHash');
5845ae4bb8SChristopher Smith        $mime = array_filter($mime);
59b625487dSandi    }
60b625487dSandi    return $mime;
61b625487dSandi}
62b625487dSandi
63b625487dSandi/**
64b625487dSandi * returns a hash of acronyms
65b625487dSandi *
66b625487dSandi * @author Harry Fuecks <hfuecks@gmail.com>
67b625487dSandi */
68b625487dSandifunction getAcronyms() {
6949eb6e38SAndreas Gohr    static $acronyms = null;
70b625487dSandi    if ( !$acronyms ) {
71cb043f52SChris Smith        $acronyms = retrieveConfig('acronyms','confToHash');
72f266a919SChristopher Smith        $acronyms = array_filter($acronyms, 'strlen');
73b625487dSandi    }
74b625487dSandi    return $acronyms;
75b625487dSandi}
76b625487dSandi
77b625487dSandi/**
78b625487dSandi * returns a hash of smileys
79b625487dSandi *
80b625487dSandi * @author Harry Fuecks <hfuecks@gmail.com>
81b625487dSandi */
82b625487dSandifunction getSmileys() {
8349eb6e38SAndreas Gohr    static $smileys = null;
84b625487dSandi    if ( !$smileys ) {
85cb043f52SChris Smith        $smileys = retrieveConfig('smileys','confToHash');
86f266a919SChristopher Smith        $smileys = array_filter($smileys, 'strlen');
87b625487dSandi    }
88b625487dSandi    return $smileys;
89b625487dSandi}
90b625487dSandi
91b625487dSandi/**
92b625487dSandi * returns a hash of entities
93b625487dSandi *
94b625487dSandi * @author Harry Fuecks <hfuecks@gmail.com>
95b625487dSandi */
96b625487dSandifunction getEntities() {
9749eb6e38SAndreas Gohr    static $entities = null;
98b625487dSandi    if ( !$entities ) {
99cb043f52SChris Smith        $entities = retrieveConfig('entities','confToHash');
100f266a919SChristopher Smith        $entities = array_filter($entities, 'strlen');
101b625487dSandi    }
102b625487dSandi    return $entities;
103b625487dSandi}
104b625487dSandi
105b625487dSandi/**
106b625487dSandi * returns a hash of interwikilinks
107b625487dSandi *
108b625487dSandi * @author Harry Fuecks <hfuecks@gmail.com>
109b625487dSandi */
110b625487dSandifunction getInterwiki() {
11149eb6e38SAndreas Gohr    static $wikis = null;
112b625487dSandi    if ( !$wikis ) {
1134c6a5eccSAndreas Gohr        $wikis = retrieveConfig('interwiki','confToHash',array(true));
114f266a919SChristopher Smith        $wikis = array_filter($wikis, 'strlen');
11545ae4bb8SChristopher Smith
11697a3e4e3Sandi        //add sepecial case 'this'
11727a2b085Sandi        $wikis['this'] = DOKU_URL.'{NAME}';
11845ae4bb8SChristopher Smith    }
119b625487dSandi    return $wikis;
120b625487dSandi}
121b625487dSandi
122b625487dSandi/**
123fa078663SAndreas Gohr * Returns the jquery script URLs for the versions defined in lib/scripts/jquery/versions
12461537d47SAndreas Gohr *
125fa078663SAndreas Gohr * @trigger CONFUTIL_CDN_SELECT
12661537d47SAndreas Gohr * @return array
12761537d47SAndreas Gohr */
128fa078663SAndreas Gohrfunction getCdnUrls() {
129fa078663SAndreas Gohr    global $conf;
130fa078663SAndreas Gohr
131fa078663SAndreas Gohr    // load version info
13261537d47SAndreas Gohr    $versions = array();
13361537d47SAndreas Gohr    $lines = file(DOKU_INC . 'lib/scripts/jquery/versions');
13461537d47SAndreas Gohr    foreach($lines as $line) {
1356453acd5SAndreas Gohr        $line = trim(preg_replace('/#.*$/', '', $line));
1366453acd5SAndreas Gohr        if($line === '') continue;
13761537d47SAndreas Gohr        list($key, $val) = explode('=', $line, 2);
13861537d47SAndreas Gohr        $key = trim($key);
13961537d47SAndreas Gohr        $val = trim($val);
14061537d47SAndreas Gohr        $versions[$key] = $val;
14161537d47SAndreas Gohr    }
142fa078663SAndreas Gohr
143fa078663SAndreas Gohr    $src = array();
144fa078663SAndreas Gohr    $data = array(
145fa078663SAndreas Gohr        'versions' => $versions,
146fa078663SAndreas Gohr        'src' => &$src
147fa078663SAndreas Gohr    );
148fa078663SAndreas Gohr    $event = new Doku_Event('CONFUTIL_CDN_SELECT', $data);
149fa078663SAndreas Gohr    if($event->advise_before()) {
150fa078663SAndreas Gohr        if(!$conf['jquerycdn']) {
151fa078663SAndreas Gohr            $jqmod = md5(join('-', $versions));
152fa078663SAndreas Gohr            $src[] = DOKU_BASE . 'lib/exe/jquery.php' . '?tseed=' . $jqmod;
153fa078663SAndreas Gohr        } elseif($conf['jquerycdn'] == 'jquery') {
154fa078663SAndreas Gohr            $src[] = sprintf('https://code.jquery.com/jquery-%s.min.js', $versions['JQ_VERSION']);
155fa078663SAndreas Gohr            $src[] = sprintf('https://code.jquery.com/jquery-migrate-%s.min.js', $versions['JQM_VERSION']);
156fa078663SAndreas Gohr            $src[] = sprintf('https://code.jquery.com/ui/%s/jquery-ui.min.js', $versions['JQUI_VERSION']);
157fa078663SAndreas Gohr        } elseif($conf['jquerycdn'] == 'cdnjs') {
158*64159a61SAndreas Gohr            $src[] = sprintf(
159*64159a61SAndreas Gohr                'https://cdnjs.cloudflare.com/ajax/libs/jquery/%s/jquery.min.js',
160*64159a61SAndreas Gohr                $versions['JQ_VERSION']
161*64159a61SAndreas Gohr            );
162*64159a61SAndreas Gohr            $src[] = sprintf(
163*64159a61SAndreas Gohr                'https://cdnjs.cloudflare.com/ajax/libs/jquery-migrate/%s/jquery-migrate.min.js',
164*64159a61SAndreas Gohr                $versions['JQM_VERSION']
165*64159a61SAndreas Gohr            );
166*64159a61SAndreas Gohr            $src[] = sprintf(
167*64159a61SAndreas Gohr                'https://cdnjs.cloudflare.com/ajax/libs/jqueryui/%s/jquery-ui.min.js',
168*64159a61SAndreas Gohr                $versions['JQUI_VERSION']
169*64159a61SAndreas Gohr            );
170fa078663SAndreas Gohr        }
171fa078663SAndreas Gohr    }
172fa078663SAndreas Gohr    $event->advise_after();
173fa078663SAndreas Gohr
174fa078663SAndreas Gohr    return $src;
17561537d47SAndreas Gohr}
17661537d47SAndreas Gohr
17761537d47SAndreas Gohr/**
178b9ac8716Schris * returns array of wordblock patterns
179b9ac8716Schris *
180b9ac8716Schris */
181b9ac8716Schrisfunction getWordblocks() {
18249eb6e38SAndreas Gohr    static $wordblocks = null;
183b9ac8716Schris    if ( !$wordblocks ) {
1844c353447SChristopher Smith        $wordblocks = retrieveConfig('wordblock','file',null,'array_merge_with_removal');
185b9ac8716Schris    }
186b9ac8716Schris    return $wordblocks;
187b9ac8716Schris}
188b9ac8716Schris
189e3ab6fc5SMichael Hamann/**
190e3ab6fc5SMichael Hamann * Gets the list of configured schemes
191e3ab6fc5SMichael Hamann *
192e3ab6fc5SMichael Hamann * @return array the schemes
193e3ab6fc5SMichael Hamann */
19436f2d7c1SGina Haeussgefunction getSchemes() {
19549eb6e38SAndreas Gohr    static $schemes = null;
19636f2d7c1SGina Haeussge    if ( !$schemes ) {
1974c353447SChristopher Smith        $schemes = retrieveConfig('scheme','file',null,'array_merge_with_removal');
19836f2d7c1SGina Haeussge        $schemes = array_map('trim', $schemes);
19936f2d7c1SGina Haeussge        $schemes = preg_replace('/^#.*/', '', $schemes);
20036f2d7c1SGina Haeussge        $schemes = array_filter($schemes);
2014c353447SChristopher Smith    }
20236f2d7c1SGina Haeussge    return $schemes;
20336f2d7c1SGina Haeussge}
20436f2d7c1SGina Haeussge
205b9ac8716Schris/**
206edcb01e5SGina Haeussge * Builds a hash from an array of lines
207b625487dSandi *
2083fd0b676Sandi * If $lower is set to true all hash keys are converted to
2093fd0b676Sandi * lower case.
2103fd0b676Sandi *
211b625487dSandi * @author Harry Fuecks <hfuecks@gmail.com>
2123fd0b676Sandi * @author Andreas Gohr <andi@splitbrain.org>
213edcb01e5SGina Haeussge * @author Gina Haeussge <gina@foosel.net>
214f50a239bSTakamura *
215f50a239bSTakamura * @param array $lines
216f50a239bSTakamura * @param bool $lower
217f50a239bSTakamura *
218f50a239bSTakamura * @return array
219b625487dSandi */
220edcb01e5SGina Haeussgefunction linesToHash($lines, $lower = false) {
221e5fc893fSAndreas Gohr    $conf = array();
222dd74fecfSMichael Hamann    // remove BOM
223dd74fecfSMichael Hamann    if(isset($lines[0]) && substr($lines[0], 0, 3) == pack('CCC', 0xef, 0xbb, 0xbf))
224dd74fecfSMichael Hamann        $lines[0] = substr($lines[0], 3);
225b625487dSandi    foreach($lines as $line) {
22603ff8795SAndreas Gohr        //ignore comments (except escaped ones)
22703ff8795SAndreas Gohr        $line = preg_replace('/(?<![&\\\\])#.*$/', '', $line);
22803ff8795SAndreas Gohr        $line = str_replace('\\#', '#', $line);
229b625487dSandi        $line = trim($line);
23059ed97f2SAndreas Gohr        if($line === '') continue;
231b625487dSandi        $line = preg_split('/\s+/', $line, 2);
23259ed97f2SAndreas Gohr        $line = array_pad($line, 2, '');
233b625487dSandi        // Build the associative array
23427a2b085Sandi        if($lower) {
23527a2b085Sandi            $conf[strtolower($line[0])] = $line[1];
23627a2b085Sandi        } else {
237b625487dSandi            $conf[$line[0]] = $line[1];
238b625487dSandi        }
23927a2b085Sandi    }
240b625487dSandi
241b625487dSandi    return $conf;
242b625487dSandi}
243b625487dSandi
244409d7af7SAndreas Gohr/**
245edcb01e5SGina Haeussge * Builds a hash from a configfile
246edcb01e5SGina Haeussge *
247edcb01e5SGina Haeussge * If $lower is set to true all hash keys are converted to
248edcb01e5SGina Haeussge * lower case.
249edcb01e5SGina Haeussge *
250edcb01e5SGina Haeussge * @author Harry Fuecks <hfuecks@gmail.com>
251edcb01e5SGina Haeussge * @author Andreas Gohr <andi@splitbrain.org>
252edcb01e5SGina Haeussge * @author Gina Haeussge <gina@foosel.net>
253f50a239bSTakamura *
254f50a239bSTakamura * @param string $file
255f50a239bSTakamura * @param bool $lower
256f50a239bSTakamura *
257f50a239bSTakamura * @return array
258edcb01e5SGina Haeussge */
259edcb01e5SGina Haeussgefunction confToHash($file,$lower=false) {
260edcb01e5SGina Haeussge    $conf = array();
261edcb01e5SGina Haeussge    $lines = @file( $file );
262edcb01e5SGina Haeussge    if ( !$lines ) return $conf;
263edcb01e5SGina Haeussge
264edcb01e5SGina Haeussge    return linesToHash($lines, $lower);
265edcb01e5SGina Haeussge}
266edcb01e5SGina Haeussge
267edcb01e5SGina Haeussge/**
268c9071834SMichael Große * Read a json config file into an array
269c9071834SMichael Große *
270c9071834SMichael Große * @param string $file
271c9071834SMichael Große * @return array
272c9071834SMichael Große */
273c9071834SMichael Großefunction jsonToArray($file)
274c9071834SMichael Große{
275c9071834SMichael Große    $json = file_get_contents($file);
276c9071834SMichael Große
277c9071834SMichael Große    $conf = json_decode($json, true);
278c9071834SMichael Große
279dceb2cc1SMichael Große    if ($conf === null) {
280c9071834SMichael Große        return [];
281c9071834SMichael Große    }
282c9071834SMichael Große
283c9071834SMichael Große    return $conf;
284c9071834SMichael Große}
285c9071834SMichael Große
286c9071834SMichael Große/**
287cb043f52SChris Smith * Retrieve the requested configuration information
288cb043f52SChris Smith *
289cb043f52SChris Smith * @author Chris Smith <chris@jalakai.co.uk>
290cb043f52SChris Smith *
291cb043f52SChris Smith * @param  string   $type     the configuration settings to be read, must correspond to a key/array in $config_cascade
292cb043f52SChris Smith * @param  callback $fn       the function used to process the configuration file into an array
293e3ab6fc5SMichael Hamann * @param  array    $params   optional additional params to pass to the callback
2945a9597bbSTakamura * @param  callback $combine  the function used to combine arrays of values read from different configuration files;
295074b2b3fSTakamura *                            the function takes two parameters,
296074b2b3fSTakamura *                               $combined - the already read & merged configuration values
297074b2b3fSTakamura *                               $new - array of config values from the config cascade file being currently processed
298074b2b3fSTakamura *                            and returns an array of the merged configuration values.
299cb043f52SChris Smith * @return array    configuration values
300cb043f52SChris Smith */
3014c353447SChristopher Smithfunction retrieveConfig($type,$fn,$params=null,$combine='array_merge') {
302cb043f52SChris Smith    global $config_cascade;
303cb043f52SChris Smith
3044c6a5eccSAndreas Gohr    if(!is_array($params)) $params = array();
3054c6a5eccSAndreas Gohr
306cb043f52SChris Smith    $combined = array();
307cb043f52SChris Smith    if (!is_array($config_cascade[$type])) trigger_error('Missing config cascade for "'.$type.'"',E_USER_WARNING);
308b303b92cSChris Smith    foreach (array('default','local','protected') as $config_group) {
309b303b92cSChris Smith        if (empty($config_cascade[$type][$config_group])) continue;
310b303b92cSChris Smith        foreach ($config_cascade[$type][$config_group] as $file) {
31179e79377SAndreas Gohr            if (file_exists($file)) {
3124c6a5eccSAndreas Gohr                $config = call_user_func_array($fn,array_merge(array($file),$params));
3134c353447SChristopher Smith                $combined = $combine($combined, $config);
314cb043f52SChris Smith            }
315cb043f52SChris Smith        }
316b303b92cSChris Smith    }
317cb043f52SChris Smith
318cb043f52SChris Smith    return $combined;
319cb043f52SChris Smith}
320cb043f52SChris Smith
321cb043f52SChris Smith/**
322f8121585SChris Smith * Include the requested configuration information
323f8121585SChris Smith *
324f8121585SChris Smith * @author Chris Smith <chris@jalakai.co.uk>
325f8121585SChris Smith *
326f8121585SChris Smith * @param  string   $type     the configuration settings to be read, must correspond to a key/array in $config_cascade
327f8121585SChris Smith * @return array              list of files, default before local before protected
328f8121585SChris Smith */
329f8121585SChris Smithfunction getConfigFiles($type) {
330f8121585SChris Smith    global $config_cascade;
331f8121585SChris Smith    $files = array();
332f8121585SChris Smith
333f8121585SChris Smith    if (!is_array($config_cascade[$type])) trigger_error('Missing config cascade for "'.$type.'"',E_USER_WARNING);
334f8121585SChris Smith    foreach (array('default','local','protected') as $config_group) {
335f8121585SChris Smith        if (empty($config_cascade[$type][$config_group])) continue;
336f8121585SChris Smith        $files = array_merge($files, $config_cascade[$type][$config_group]);
337f8121585SChris Smith    }
338f8121585SChris Smith
339f8121585SChris Smith    return $files;
340f8121585SChris Smith}
341f8121585SChris Smith
342f8121585SChris Smith/**
343409d7af7SAndreas Gohr * check if the given action was disabled in config
344409d7af7SAndreas Gohr *
345409d7af7SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
3460e2431b7SGerrit Uitslag * @param string $action
347409d7af7SAndreas Gohr * @returns boolean true if enabled, false if disabled
348409d7af7SAndreas Gohr */
349409d7af7SAndreas Gohrfunction actionOK($action){
350409d7af7SAndreas Gohr    static $disabled = null;
351020ea9e1SChristopher Smith    if(is_null($disabled) || defined('SIMPLE_TEST')){
352409d7af7SAndreas Gohr        global $conf;
3530e2431b7SGerrit Uitslag        /** @var DokuWiki_Auth_Plugin $auth */
354de4d479aSAdrian Lang        global $auth;
355409d7af7SAndreas Gohr
356409d7af7SAndreas Gohr        // prepare disabled actions array and handle legacy options
357409d7af7SAndreas Gohr        $disabled = explode(',',$conf['disableactions']);
358409d7af7SAndreas Gohr        $disabled = array_map('trim',$disabled);
359e4eda66bSAndreas Gohr        if((isset($conf['openregister']) && !$conf['openregister']) || is_null($auth) || !$auth->canDo('addUser')) {
360de4d479aSAdrian Lang            $disabled[] = 'register';
361de4d479aSAdrian Lang        }
362e4eda66bSAndreas Gohr        if((isset($conf['resendpasswd']) && !$conf['resendpasswd']) || is_null($auth) || !$auth->canDo('modPass')) {
363de4d479aSAdrian Lang            $disabled[] = 'resendpwd';
364de4d479aSAdrian Lang        }
365e4eda66bSAndreas Gohr        if((isset($conf['subscribers']) && !$conf['subscribers']) || is_null($auth)) {
3663a48618aSAnika Henke            $disabled[] = 'subscribe';
3673a48618aSAnika Henke        }
3683a48618aSAnika Henke        if (is_null($auth) || !$auth->canDo('Profile')) {
3693a48618aSAnika Henke            $disabled[] = 'profile';
3703a48618aSAnika Henke        }
3712a7abf2dSChristopher Smith        if (is_null($auth) || !$auth->canDo('delUser')) {
3722a7abf2dSChristopher Smith            $disabled[] = 'profile_delete';
3732a7abf2dSChristopher Smith        }
3743a48618aSAnika Henke        if (is_null($auth)) {
3753a48618aSAnika Henke            $disabled[] = 'login';
3763a48618aSAnika Henke        }
3773a48618aSAnika Henke        if (is_null($auth) || !$auth->canDo('logout')) {
3783a48618aSAnika Henke            $disabled[] = 'logout';
3793a48618aSAnika Henke        }
380409d7af7SAndreas Gohr        $disabled = array_unique($disabled);
381409d7af7SAndreas Gohr    }
382409d7af7SAndreas Gohr
383409d7af7SAndreas Gohr    return !in_array($action,$disabled);
384409d7af7SAndreas Gohr}
385409d7af7SAndreas Gohr
386fe9ec250SChris Smith/**
387fe9ec250SChris Smith * check if headings should be used as link text for the specified link type
388fe9ec250SChris Smith *
389fe9ec250SChris Smith * @author Chris Smith <chris@jalakai.co.uk>
390fe9ec250SChris Smith *
391fe9ec250SChris Smith * @param   string  $linktype   'content'|'navigation', content applies to links in wiki text
392fe9ec250SChris Smith *                                                      navigation applies to all other links
393e3ab6fc5SMichael Hamann * @return  boolean             true if headings should be used for $linktype, false otherwise
394fe9ec250SChris Smith */
395fe9ec250SChris Smithfunction useHeading($linktype) {
396fe9ec250SChris Smith    static $useHeading = null;
3976506eaacSAndreas Gohr    if(defined('DOKU_UNITTEST')) $useHeading = null; // don't cache during unit tests
398fe9ec250SChris Smith
399fe9ec250SChris Smith    if (is_null($useHeading)) {
400fe9ec250SChris Smith        global $conf;
401fe9ec250SChris Smith
402fe9ec250SChris Smith        if (!empty($conf['useheading'])) {
403fe9ec250SChris Smith            switch ($conf['useheading']) {
40449eb6e38SAndreas Gohr                case 'content':
40549eb6e38SAndreas Gohr                    $useHeading['content'] = true;
40649eb6e38SAndreas Gohr                    break;
40749eb6e38SAndreas Gohr
40849eb6e38SAndreas Gohr                case 'navigation':
40949eb6e38SAndreas Gohr                    $useHeading['navigation'] = true;
41049eb6e38SAndreas Gohr                    break;
411fe9ec250SChris Smith                default:
412fe9ec250SChris Smith                    $useHeading['content'] = true;
413fe9ec250SChris Smith                    $useHeading['navigation'] = true;
414fe9ec250SChris Smith            }
415fe9ec250SChris Smith        } else {
416fe9ec250SChris Smith            $useHeading = array();
417fe9ec250SChris Smith        }
418fe9ec250SChris Smith    }
419fe9ec250SChris Smith
420fe9ec250SChris Smith    return (!empty($useHeading[$linktype]));
421fe9ec250SChris Smith}
422fe9ec250SChris Smith
4233994772aSChris Smith/**
4243994772aSChris Smith * obscure config data so information isn't plain text
4253994772aSChris Smith *
4263994772aSChris Smith * @param string       $str     data to be encoded
4273994772aSChris Smith * @param string       $code    encoding method, values: plain, base64, uuencode.
4283994772aSChris Smith * @return string               the encoded value
4293994772aSChris Smith */
4303994772aSChris Smithfunction conf_encodeString($str,$code) {
4313994772aSChris Smith    switch ($code) {
4323994772aSChris Smith        case 'base64'   : return '<b>'.base64_encode($str);
4333994772aSChris Smith        case 'uuencode' : return '<u>'.convert_uuencode($str);
4343994772aSChris Smith        case 'plain':
4353994772aSChris Smith        default:
4363994772aSChris Smith                          return $str;
4373994772aSChris Smith    }
4383994772aSChris Smith}
4393994772aSChris Smith/**
4403994772aSChris Smith * return obscured data as plain text
4413994772aSChris Smith *
4423994772aSChris Smith * @param  string      $str   encoded data
4433994772aSChris Smith * @return string             plain text
4443994772aSChris Smith */
4453994772aSChris Smithfunction conf_decodeString($str) {
4463994772aSChris Smith    switch (substr($str,0,3)) {
4473994772aSChris Smith        case '<b>' : return base64_decode(substr($str,3));
4483994772aSChris Smith        case '<u>' : return convert_uudecode(substr($str,3));
449b96ff25bSElan Ruusamäe        default:  // not encoded (or unknown)
4503994772aSChris Smith                     return $str;
4513994772aSChris Smith    }
4523994772aSChris Smith}
4534c353447SChristopher Smith
4544c353447SChristopher Smith/**
4554c353447SChristopher Smith * array combination function to remove negated values (prefixed by !)
4564c353447SChristopher Smith *
4574c353447SChristopher Smith * @param  array $current
4584c353447SChristopher Smith * @param  array $new
4594c353447SChristopher Smith *
4604c353447SChristopher Smith * @return array the combined array, numeric keys reset
4614c353447SChristopher Smith */
4624c353447SChristopher Smithfunction array_merge_with_removal($current, $new) {
4634c353447SChristopher Smith    foreach ($new as $val) {
46410b38f10SChristopher Smith        if (substr($val,0,1) == DOKU_CONF_NEGATION) {
4653a7669bdSChristopher Smith            $idx = array_search(trim(substr($val,1)),$current);
4664c353447SChristopher Smith            if ($idx !== false) {
4674c353447SChristopher Smith                unset($current[$idx]);
4684c353447SChristopher Smith            }
4694c353447SChristopher Smith        } else {
4703a7669bdSChristopher Smith            $current[] = trim($val);
4714c353447SChristopher Smith        }
4724c353447SChristopher Smith    }
4734c353447SChristopher Smith
4744c353447SChristopher Smith    return array_slice($current,0);
4754c353447SChristopher Smith}
476e3776c06SMichael Hamann//Setup VIM: ex: et ts=4 :
477