-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAbstractView.php
314 lines (272 loc) · 6.4 KB
/
AbstractView.php
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
<?php
namespace Darya\View;
/**
* Darya's abstract view implementation.
*
* TODO: Remove resolvers and all static members.
*
* @author Chris Andrew <chris@hexus.io>
*/
abstract class AbstractView implements View
{
/**
* Optional shared base path for selecting template files.
*
* @var string
*/
protected static $basePath;
/**
* Set of template file extensions compatible with this view.
*
* @var array
*/
protected static $extensions = [];
/**
* Variables to assign to all templates.
*
* @var array
*/
protected static $shared = [];
/**
* Shared resolver for selecting template files.
*
* @var Resolver
*/
protected static $sharedResolver;
/**
* Instance resolver for selecting template files.
*
* @var Resolver
*/
protected $resolver;
/**
* Variables for configuring the view.
*
* @var array
*/
protected $config = [];
/**
* Path to the directory containing the view template.
*
* @var string
*/
protected $directory;
/**
* Filename of the view template.
*
* @var string
*/
protected $file;
/**
* Variables to assign to the template.
*
* @var array
*/
protected $arguments = [];
/**
* Set a shared base path for selecting template files.
*
* @param string $path
*/
public static function setBasePath($path)
{
$path = realpath($path);
if (is_dir($path)) {
static::$basePath = $path;
}
}
/**
* Sets a resolver for all views.
*
* @param Resolver $resolver
*/
public static function setSharedResolver(Resolver $resolver)
{
static::$sharedResolver = $resolver;
}
/**
* Register template file extensions.
*
* @param string|array $extensions
*/
public static function registerExtensions($extensions)
{
$extensions = array_map(function ($extension) {
return '.' . ltrim(trim($extension), '.');
}, (array) $extensions);
static::$extensions = array_merge(static::$extensions, $extensions);
}
/**
* Create a new View.
*
* @param string $file [optional] Path to the template file to use
* @param array $arguments [optional] Arguments to assign to the template
* @param array $config [optional] Configuration variables for the view
*/
public function __construct($file = null, $arguments = [], $config = [])
{
$this->select($file, $arguments, $config);
}
/**
* Evaluate the template as a string by rendering it.
*
* @return string
*/
public function __toString()
{
return $this->render();
}
/**
* Sets a resolver for this view.
*
* @param Resolver $resolver
*/
public function setResolver(Resolver $resolver)
{
$this->resolver = $resolver;
}
/**
* Select a template and optionally assign arguments and configuration variables.
*
* @param string $file The template file to be used
* @param array $arguments [optional] Arguments to assign to the template immediately
* @param array $config [optional] Config arguments for the view
*/
public function select($file, array $arguments = [], array $config = [])
{
if (!empty($config)) {
$this->config($config);
}
if (!empty($arguments)) {
$this->assign($arguments);
}
if ($file) {
$this->file($file);
}
}
/**
* Attempt to load a template file at the given absolute path.
*
* @param string $path Absolute file path
* @return bool
*/
protected function attempt($path)
{
$path = realpath($path);
if ($path && is_file($path)) {
$dirname = dirname($path);
$this->directory($dirname);
$this->file = basename($path);
return true;
}
return false;
}
/**
* Attempt to resolve the given view path to a file path using the view's
* resolver or that class's shared resolver.
*
* @param string $path
* @return string
*/
protected function resolve($path)
{
if ($this->resolver) {
return $this->resolver->resolve($path);
} else if (static::$sharedResolver) {
return static::$sharedResolver->resolve($path);
}
return $path;
}
/**
* Find and set a template file using a given path. Attempts with the shared
* base path and extensions.
*
* @param string $path Path to template file
* @return bool
*/
public function file($path)
{
// First attempt the given path
if ($this->attempt($path)) {
return true;
}
// Otherwise, resolve the path and attempt it with the set extensions
$paths = [];
$paths[] = $this->resolve($path);
$extensions = array_merge(static::$extensions, ['']);
foreach ($extensions as $extension) {
if (static::$basePath) {
$paths[] = static::$basePath . "/$path$extension";
}
$paths[] = "$path$extension";
}
foreach ($paths as $p) {
if ($this->attempt($p)) {
return true;
}
}
return false;
}
/**
* Get and optionally set the template's working directory.
*
* @param string $directory [optional] Working directory path
* @return string
*/
protected function directory($directory = null)
{
$this->directory = $directory !== '.' ? $directory : '';
return $this->directory;
}
/**
* Get and optionally set view configuration variables.
*
* This merges given variables with any that have been previously set.
*
* @param array $config [optional]
* @return array
*/
public function config(array $config = [])
{
$this->config = array_merge($this->config, $config);
return $this->config;
}
/**
* Assign an array of arguments to the template.
*
* @param array $arguments
*/
public function assign(array $arguments = [])
{
$this->arguments = array_merge($this->arguments, $arguments);
}
/**
* Get all arguments or a particular argument assigned to the template.
*
* @param string $key [optional] The key of the argument to return
* @return mixed The value of the $key argument if set, all arguments otherwise
*/
public function assigned($key = null)
{
return !is_null($key) && isset($this->arguments[$key]) ? $this->arguments[$key] : $this->arguments;
}
/**
* Assign an array of arguments to all templates.
*
* @param array $arguments
*/
public static function share(array $arguments)
{
static::$shared = array_merge(static::$shared, $arguments);
}
/**
* Get all arguments or a particular argument shared with all templates.
*
* @param string $key The key of the argument to return
* @return mixed The value of the $key argument if set, all arguments otherwise
*/
public static function shared($key = null)
{
return !is_null($key) && isset(static::$shared[$key]) ? static::$shared[$key] : static::$shared;
}
}