mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-08 14:58:42 +00:00
240b565513
- Implement exception hierarchy git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1582 48356398-32a2-884e-a903-53898d9a118a
71 lines
1.9 KiB
PHP
71 lines
1.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Parses string hash files. File format is as such:
|
|
*
|
|
* DefaultKeyValue
|
|
* KEY: Value
|
|
* KEY2: Value2
|
|
* --MULTILINE-KEY--
|
|
* Multiline
|
|
* value.
|
|
*
|
|
* Which would output something similar to:
|
|
*
|
|
* array(
|
|
* 'ID' => 'DefaultKeyValue',
|
|
* 'KEY' => 'Value',
|
|
* 'KEY2' => 'Value2',
|
|
* 'MULTILINE-KEY' => "Multiline\nvalue.\n",
|
|
* )
|
|
*
|
|
* We use this as an easy to use file-format for configuration schema
|
|
* files.
|
|
*
|
|
* @todo
|
|
* Put this in its own class hierarchy or something; this class
|
|
* is usage agnostic.
|
|
*/
|
|
class HTMLPurifier_ConfigSchema_StringHashParser
|
|
{
|
|
|
|
public $default = 'ID';
|
|
|
|
public function parseFile($file) {
|
|
if (!file_exists($file)) throw new HTMLPurifier_ConfigSchema_Exception('File ' . $file . ' does not exist');
|
|
$fh = fopen($file, 'r');
|
|
$state = false;
|
|
$single = false;
|
|
$ret = array();
|
|
while (($line = fgets($fh)) !== false) {
|
|
$line = rtrim($line, "\n\r");
|
|
if (!$state && $line === '') continue;
|
|
if (strncmp('--', $line, 2) === 0) {
|
|
// Multiline declaration
|
|
$state = trim($line, '- ');
|
|
continue;
|
|
} elseif (!$state) {
|
|
$single = true;
|
|
if (strpos($line, ':') !== false) {
|
|
// Single-line declaration
|
|
list($state, $line) = explode(': ', $line, 2);
|
|
} else {
|
|
// Use default declaration
|
|
$state = $this->default;
|
|
}
|
|
}
|
|
if ($single) {
|
|
$ret[$state] = $line;
|
|
$single = false;
|
|
$state = false;
|
|
} else {
|
|
if (!isset($ret[$state])) $ret[$state] = '';
|
|
$ret[$state] .= "$line\n";
|
|
}
|
|
}
|
|
fclose($fh);
|
|
return $ret;
|
|
}
|
|
|
|
}
|