-
Notifications
You must be signed in to change notification settings - Fork 0
/
Template.php
349 lines (311 loc) · 10.1 KB
/
Template.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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<?php
namespace Tayron;
use Tayron\RequestInterface;
use Tayron\exceptions\ParameterNotFoundException;
use Tayron\exceptions\ElementNotFoundException;
use Tayron\exceptions\ViewNotFoundException;
use Tayron\exceptions\TemplateNotFoundException;
use Tayron\exceptions\FileNotFoundException;
use Tayron\exceptions\Exception;
/**
* Classe que gerancia o carregamento de templates e views
*
* @author Tayron Miranda <dev@tayron.com.br>
*/
final class Template implements TemplateInterface
{
/**
* Armazena o caminho absoluto de onde fica os templates,
* exemplo: /var/www/html/projeto/src/view/template
*
* @var string
*/
private $pathTemplate = null;
/**
* Armazena o caminho absoluto de onde fica as views,
* exemplo: /var/www/html/projeto/src/view
*
* @var string
*/
private $pathView = null;
/**
* Armazena o caminho absoluto de onde fica os elementos de views,
* exemplo: /var/www/html/projeto/src/view/elements
*
* @var string
*/
private $pathElements = null;
/**
* Armazena o nome do template a ser usado no sitema
*
* @var string
*/
private $template = 'default';
/**
* Armazena o nome do controller a ser invocado
*
* @var string
*/
private $controller = null;
/**
* Armazena o nome do método a ser invocado no controller
*
* @var string
*/
private $view = 'index';
/**
* Armazena os parametros a serem passados para a view
*
* @var array
*/
private $parameters = null;
/**
* Armazena objeto que trata requisições
*
* @var Tayron\RequestInterface
*/
private $request = null;
/**
* @var Singleton reference to singleton instance
*/
private static $instance;
/**
* Template::__construct
*
* Impede com que o objeto seja instanciado
*/
final private function __construct()
{
}
/**
* Template::__clone
*
* Impede que a classe Requisição seja clonada
*
* @throws Exception Dispara execção caso o usuário tente clonar este classe
*
* @return void
*/
final public function __clone()
{
throw new Exception('A classe Requisicao não pode ser clonada.');
}
/**
* Template::__wakeup
*
* Impede que a classe Requisição execute __wakeup
*
* @throws Exception Dispara execção caso o usuário tente executar este método
*
* @return void
*/
final public function __wakeup()
{
throw new Exception('A classe Requisicao não pode executar __wakeup.');
}
/**
* Template::getInstance
*
* Retorna uma instância única de uma classe.
*
* @param string $pathView Caminho absoluto de onde fica as views
* @param string $pathTemplate Caminho absoluto de onde fica os templates
* @param string $pathElements Caminho absoluto de onde fica os elementos de views
* @param string $controllerName Nome do controller que está sendo invocado
* @param Request $request Objeto que trata requisição
*
* @return Template Retorna instancia de Template
*/
public static function getInstance($pathView, $pathTemplate, $pathElements,
$controllerName = null, RequestInterface $request = null)
{
if (!static::$instance) {
static::$instance = new static();
}
self::$instance->setPathView($pathView);
self::$instance->setPathTemplate($pathTemplate);
self::$instance->setPathElements($pathElements);
self::$instance->controller = $controllerName;
self::$instance->request = $request;
return self::$instance;
}
/**
* Template::render
*
* Método que seta a view e renderia no template
*
* @param string $view Nome da view
*
* @throws ParameterNotFoundException Dispara exceção caso não tenha sido informado o diretório onde fica o template
* @throws TemplateNotFoundException Dispara exceção caso o template informado não seja encontrado
*
* @return void
*/
public function render($view)
{
if ($this->pathTemplate == null) {
throw new ParameterNotFoundException('pathTemplate', 'Caminho para o diretório template não informado, %s está nulo');
}
$this->view = strtolower($view);
$pathTemplate = $this->pathTemplate . DS . $this->template . '.php';
try {
$this->includeFile($pathTemplate);
} catch (FileNotFoundException $e) {
throw new TemplateNotFoundException($pathTemplate);
}
}
/**
* Template::includeElement
*
* Faz inclusão de arquivos contidos em src/view/elementos
*
* @param string $fileName Nome do elemento a ser incluido
*
* @throws ParameterNotFoundException Dispara exceção quando nome do arquivo não for informado
* @throws ElementNotFoundException Dispara exceção quando arquivo não for encontrado
*
* @return void
*/
public function includeElement($fileName, array $parameters = null)
{
if ($fileName == null) {
throw new ParameterNotFoundException('elemento', 'O parametro %s informado não pode ser nulo');
}
if ($this->pathElements == null) {
throw new ParameterNotFoundException('pathElements', 'Caminho para o diretório elements não informado, %s está nulo');
}
$pathElement = $this->pathElements . DS . $fileName . '.php';
try {
$this->includeFile($pathElement, $parameters);
} catch (FileNotFoundException $e) {
throw new ElementNotFoundException($pathElement);
}
}
/**
* Template::getContent
*
* Método que pega o conteúdo da view e exibe dentro de um template
*
* @throws ParameterNotFoundException Dispara exceção caso o diretório da view não tenha sido informado
* @throws ViewNotFoundException Dispara exceção caso a view informada não seja encontrada
*
* @return void
*/
public function getContent()
{
if ($this->pathView == null) {
throw new ParameterNotFoundException('pathView', 'Caminho para o diretório view não informado, %s está nulo');
}
$paramClasse = explode('\\', $this->controller);
$dirController = strtolower(str_replace('Controller', null, end($paramClasse)));
$pathView = $this->pathView . DS . $dirController . DS . $this->view . '.php';
try {
$this->includeFile($pathView);
} catch (FileNotFoundException $e) {
throw new ViewNotFoundException($this->view . '.php', "/view/$dirController/{$this->view}.php");
}
}
/**
* Template::includeFile
*
* Método que inclui arquivo
*
* @param string $pathFile Caminho para o arquivo a ser incluído
* @param array $additionalParameters Lista de parametros adicionais a serem usadas na view
*
* @throws FileNotFoundException Dispara exceção caso o arquivo infomado não seja encontrado
*
* @return void
*/
private function includeFile($pathFile, array $additionalParameters = null)
{
if (is_array($this->parameters)) {
extract($this->parameters);
}
if (is_array($additionalParameters)) {
extract($additionalParameters);
}
if (!file_exists($pathFile)) {
throw new FileNotFoundException('Arquivo não encontrado em: ' . $pathFile);
}
require_once($pathFile);
}
/**
* Template::setParameters
*
* Método que seta os parametros a ser utilizado nas views
*
* @param array $parameters Lista com os parametros
* @return void
*/
public function setParameters(array $parameters)
{
$this->parameters = $parameters;
}
/**
* Template::setPathTemplate
*
* Armazena o caminho absoluto de onde fica os templates,
* exemplo: /var/www/html/projeto/src/view/template
*
* @throws ParameterNotFoundException Dispara exceção caso o caminho para o diretório de template seja informado vazio
*
* @param string $pathTemplate Caminho absoluto do diretório template
* @return void
*/
private function setPathTemplate($pathTemplate)
{
if ($pathTemplate == null) {
throw new ParameterNotFoundException('pathTemplate', 'O parametro %s informado não pode ser nulo');
}
$this->pathTemplate = $pathTemplate;
}
/**
* Template::setPathTemplate
*
* Armazena o caminho absoluto de onde fica as views,
* exemplo: /var/www/html/projeto/src/view
*
* @throws ParameterNotFoundException Dispara exceção caso o caminho para o diretório de view seja informado vazio
*
* @param string $pathView Caminho absoluto do diretório view
* @return void
*/
private function setPathView($pathView)
{
if ($pathView == null) {
throw new ParameterNotFoundException('pathView', 'O parametro %s informado não pode ser nulo');
}
$this->pathView = $pathView;
}
/**
* Template::setPathElements
*
* Armazena o caminho absoluto de onde fica os elementos de views,
* exemplo: /var/www/html/projeto/src/view/elements
*
* @throws ParameterNotFoundException Dispara exceção caso o caminho para o diretório de elements seja informado vazio
*
* @param string $pathView Caminho absoluto do diretório elements
* @return void
*/
private function setPathElements($pathElements)
{
if ($pathElements == null) {
throw new ParameterNotFoundException('pathElements', 'O parametro %s informado não pode ser nulo');
}
$this->pathElements = $pathElements;
}
/**
* Template::setTemplate
*
* Método que informa qual template deverá ser usado
*
* @param string $template Nome do template
* @return void
*/
public function setTemplate($template)
{
$this->template = $template;
}
}