Newer
Older
Peter Rotich
committed
<?php
/*********************************************************************
Peter Rotich
committed
Peter Rotich
committed
Peter Rotich <peter@osticket.com>
Peter Rotich
committed
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
http://www.osticket.com
Released under the GNU General Public License WITHOUT ANY WARRANTY.
See LICENSE.TXT for details.
vim: expandtab sw=4 ts=4 sts=4:
**********************************************************************/
class VariableReplacer {
var $start_delim;
var $end_delim;
var $objects;
var $variables;
var $errors;
function VariableReplacer($start_delim='%{', $end_delim='}') {
$this->start_delim = $start_delim;
$this->end_delim = $end_delim;
$this->objects = array();
$this->variables = array();
}
function setError($error) {
$this->errors[] = $error;
}
function getErrors() {
return $this->errors;
}
Peter Rotich
committed
function getObj($tag) {
return @$this->objects[$tag];
}
if($val && is_object($val)) {
$this->objects[$var] = $val;
} elseif($var && is_array($var)) {
$this->assign($k, $v);
} elseif($var) {
$this->variables[$var] = $val;
}
Peter Rotich
committed
}
function getVar($obj, $var) {
if (!$var) {
if (method_exists($obj, 'asVar'))
return call_user_func(array($obj, 'asVar'));
elseif (method_exists($obj, '__toString'))
return (string) $obj;
}
Peter Rotich
committed
list($v, $part) = explode('.', $var, 2);
if ($v && is_callable(array($obj, 'get'.ucfirst($v)))) {
$rv = call_user_func(array($obj, 'get'.ucfirst($v)));
if(!$rv || !is_object($rv))
return $rv;
Peter Rotich
committed
return $this->getVar($rv, $part);
}
if (!$var || !method_exists($obj, 'getVar'))
Peter Rotich
committed
$parts = explode('.', $var);
if(($rv = call_user_func(array($obj, 'getVar'), $parts[0]))===false)
Peter Rotich
committed
if(!is_object($rv))
return $rv;
Peter Rotich
committed
list(, $part) = explode('.', $var, 2);
Peter Rotich
committed
return $this->getVar($rv, $part);
}
function replaceVars($input) {
Peter Rotich
committed
if($input && is_array($input))
return array_map(array($this, 'replaceVars'), $input);
Peter Rotich
committed
if(!($vars=$this->_parse($input)))
return $input;
Peter Rotich
committed
return str_replace(array_keys($vars), array_values($vars), $input);
Peter Rotich
committed
}
function _resolveVar($var) {
//Variable already memoized?
if($var && @isset($this->variables[$var]))
Peter Rotich
committed
return $this->variables[$var];
$parts = explode('.', $var, 2);
if($parts && ($obj=$this->getObj($parts[0])))
return $this->getVar($obj, $parts[1]);
elseif($parts[0] && @isset($this->variables[$parts[0]])) //root override
return $this->variables[$parts[0]];
Peter Rotich
committed
//Unknown object or variable - leavig it alone.
$this->setError('Unknown obj for "'.$var.'" tag ');
return false;
Peter Rotich
committed
}
function _parse($text) {
$input = $text;
$result = array();
if(!preg_match_all('/'.$this->start_delim.'([A-Za-z_][\w._]+)'.$this->end_delim.'/',
$input, $result))
Peter Rotich
committed
return null;
$vars = array();
foreach($result[0] as $k => $v) {
if(isset($vars[$v])) continue;
$val=$this->_resolveVar($result[1][$k]);
if($val!==false)
Peter Rotich
committed
$vars[$v] = $val;
}
return $vars;
}
}
?>