1
2
3
4
5
6
7
8
9
10
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
|
<?php
# Copyright (c) 2008 - Marcus Lunzenauer <mlunzena@uos.de>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
/**
* Using this factory you can create new Template objects.
*
* @package flexi
*
* @author Marcus Lunzenauer (mlunzena@uos.de)
* @copyright (c) Authors
* @version $Id$
*/
class Flexi_TemplateFactory {
/**
* include path for templates
*
* @var string
*/
protected $path;
/**
* mapping of file extensions to supported template classes
*
* @var array
*/
protected $handlers = array(
'php' => array('Flexi_PhpTemplate', array()),
'pjs' => array('Flexi_JsTemplate', array())
);
/**
* Constructor of TemplateFactory.
*
* @param string the template include path
*
* @return void
*/
function __construct($path) {
$this->set_path($path);
}
/**
* Sets a new include path for the factory and returns the old one.
*
* @param string the new path
*
* @return string the old path
*/
function set_path($path) {
$old_path = $this->get_path();
if (substr($path, -1) != '/')
$path .= '/';
$this->path = $path;
return $old_path;
}
/**
* Returns the include path of the factory
*
* @return string the current include path
*/
function get_path() {
return $this->path;
}
/**
* Open a template of the given name using the factory method pattern.
* If a string was given, the path of the factory is searched for a matching
* template.
* If this string starts with a slash or with /\w+:\/\//, the string is
* interpreted as an absolute path. Otherwise the path of the factory will be
* prepended.
* After that the factory searches for a file extension in this string. If
* there is none, the directory where the template is supposed to live is
* searched for a file starting with the template string and a supported
* file extension.
* At last the factory instantiates a template object of the matching template
* class.
*
* Examples:
*
* $factory->open('/path/to/template')
* does not prepend the factory's path but searches for "template.*" in
* "/path/to"
*
* $factory->open('template')
* prepends the factory's path and searches there for "template.*"
*
* $factory->open('template.php')
* prepends the factory's path but does not search and instantiates a
* PHPTemplate instead
*
* This method returns it's parameter, if it is not a string. This
* functionality is useful for helper methods like #render_partial
*
* @throws Flexi_TemplateNotFoundException
*
* @param string A name of a template.
*
* @return mixed the factored object
*
* @throws Flexi_TemplateNotFoundException if the template could not be found
*/
function open($template) {
# if it is not a string, this method behaves like identity
if (!is_string($template)) {
return $template;
}
# get file
$file = $this->get_template_file($template);
# retrieve handler
list($class, $options) = $this->get_template_handler($file);
return new $class($file, $this, $options);
}
/**
* This method returns the absolute filename of the template
*
* @param string a template string
*
* @return string an absolute filename
*
* @throws Flexi_TemplateNotFoundException if the template could not be found
*/
function get_template_file($template0) {
$template = $this->get_absolute_path($template0);
$extension = $this->get_extension($template);
# extension defined, is there a matching template class?
if ($extension !== NULL) {
if (file_exists($template)) {
return $template;
}
}
# no extension defined, find it
else {
$file = $this->find_template($template);
if ($file !== NULL) {
return $file;
}
}
# falling through to throw exception
throw new Flexi_TemplateNotFoundException(
sprintf('Missing template "%s" in "%s".', $template0, $this->path));
}
/**
* Matches an extension to a template handler.
*
* @param string the template
*
* @return array an array containing the class name and an array of
* options of the matched extension;
* or NULL if the extension did not match
*/
function get_template_handler($template) {
$extension = $this->get_extension($template);
return isset($this->handlers[$extension])
? $this->handlers[$extension]
: NULL;
}
/**
* Registers a handler for templates with a matching extension.
*
* @param string the extension of the templates to handle
* @param string the name of the already loaded class
* @param array optional; an array of options which is used
* when constructing a new instance
*/
function add_handler($extension, $class, $options = array())
{
$this->handlers[$extension] = array($class, $options);
}
/**
* Returns the absolute path to the template. If the given argument starts
* with a slash or with a protocoll, this method just returns its arguments.
*
* @param string an incomplete template name
*
* @return string an absolute path to the incomplete template name
*/
function get_absolute_path($template) {
return preg_match('#^(/|\w+://)#', $template)
? $template
: $this->get_path() . $template;
}
/**
* Find template given w/o extension.
*
* @param string the template's filename w/o extension
*
* @return mixed NULL if there no such file could be found, a string
* containing the complete file name otherwise
*/
function find_template($template) {
foreach ($this->handlers as $ext => $handler) {
$file = "$template.$ext";
if (file_exists($file)) {
return $file;
}
}
return NULL;
}
/**
* Returns the file extension if there is one.
*
* @param string an possibly incomplete template file name
*
* @return mixed a string containing the file extension if there is one,
* NULL otherwise
*/
function get_extension($file) {
$matches = array();
$matched = preg_match('/\.([^\/.]+)$/', $file, $matches);
return $matched ? $matches[1] : NULL;
}
/**
* Class method to parse, render and return the presentation of a
* template.
*
* @param string A name of a template.
* @param array An associative array of attributes and their associated
* values.
* @param string A name of a layout template.
*
* @return string A string representing the rendered presentation.
*/
function render($name, $attributes = null, $layout = null) {
return $this->open($name)->render($attributes, $layout);
}
}
|