1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Win\Mvc; |
4
|
|
|
|
5
|
|
|
use Win\Html\Seo\Title; |
6
|
|
|
|
7
|
|
|
/** |
8
|
|
|
* Paginas de Erro |
9
|
|
|
*/ |
10
|
|
|
class ErrorPage { |
11
|
|
|
|
12
|
|
|
public static $pages = [ |
13
|
|
|
404 => 'Página não encontrada', |
14
|
|
|
401 => 'Não autorizado', |
15
|
|
|
403 => 'Acesso negado', |
16
|
|
|
500 => 'Erro no Servidor', |
17
|
|
|
503 => 'Problemas de Conexão' |
18
|
|
|
]; |
19
|
|
|
|
20
|
|
|
/** |
21
|
|
|
* Chama pageNotFound se o usuário acessar /404 |
22
|
|
|
* |
23
|
|
|
* Isso garante que todas as funcionalidades de pageNotFound serão executadas |
24
|
|
|
* mesmo se a página existente 404 for acessada |
25
|
|
|
*/ |
26
|
|
|
public static function validate() { |
27
|
|
|
if (key_exists((int) static::app()->getParam(0), static::$pages)): |
28
|
|
|
Application::app()->pageNotFound(); |
29
|
|
|
endif; |
30
|
|
|
} |
31
|
|
|
|
32
|
|
|
/** |
33
|
|
|
* Define a página como Página de Erro |
34
|
|
|
* @param int $errorCode |
35
|
|
|
*/ |
36
|
|
|
public static function setError($errorCode) { |
37
|
|
|
if (key_exists($errorCode, static::$pages)): |
38
|
|
|
static::stopControllerIf403($errorCode); |
39
|
|
|
static::app()->setPage((string) $errorCode); |
40
|
|
|
static::app()->view = new View($errorCode); |
41
|
|
|
|
42
|
|
|
static::app()->controller = ControllerFactory::create('Error' . $errorCode); |
43
|
|
|
static::app()->view->addData('title', Title::otimize(static::$pages[$errorCode])); |
44
|
|
|
http_response_code($errorCode); |
45
|
|
|
static::app()->controller->reload(); |
46
|
|
|
endif; |
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
/** |
50
|
|
|
* Trava o carregamento do Controller, se ele definir um erro 403 |
51
|
|
|
* Isso evita que códigos sem permissões de acesso nunca sejam executados |
52
|
|
|
* @param int $errorCode |
53
|
|
|
*/ |
54
|
|
|
private static function stopControllerIf403($errorCode) { |
55
|
|
|
if ($errorCode == 403 && static::app()->getParam(0) !== (string) $errorCode): |
56
|
|
|
$this->redirect(403 . '/index/' . static::app()->getUrl()); |
|
|
|
|
57
|
|
|
endif; |
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
/** @return Application */ |
61
|
|
|
protected static function app() { |
62
|
|
|
return Application::app(); |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
/** @return boolean */ |
66
|
|
|
public static function isErrorPage() { |
67
|
|
|
return (boolean) (key_exists((int) static::app()->getPage(), static::$pages)); |
68
|
|
|
} |
69
|
|
|
|
70
|
|
|
} |
71
|
|
|
|