forked from NetCommons3/NetCommons
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetCommonsExceptionRenderer.php
More file actions
250 lines (223 loc) · 7.54 KB
/
NetCommonsExceptionRenderer.php
File metadata and controls
250 lines (223 loc) · 7.54 KB
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
<?php
/**
* Exception Renderer
*
* Provides Exception rendering features. Which allow exceptions to be rendered
* as HTML pages.
*
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @since CakePHP(tm) v 2.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
App::uses('Sanitize', 'Utility');
App::uses('Router', 'Routing');
App::uses('CakeResponse', 'Network');
App::uses('Controller', 'Controller');
App::uses('Error', 'ExceptionRenderer');
/**
* Exception Renderer.
*
* Captures and handles all unhandled exceptions. Displays helpful framework errors when debug > 1.
* When debug < 1 a CakeException will render 404 or 500 errors. If an uncaught exception is thrown
* and it is a type that ExceptionHandler does not know about it will be treated as a 500 error.
*
* ### Implementing application specific exception rendering
*
* You can implement application specific exception handling in one of a few ways:
*
* - Create a AppController::appError();
* - Create a subclass of YAExceptionRenderer and configure it to be the `Exception.renderer`
*
* #### Using AppController::appError();
*
* This controller method is called instead of the default exception handling. It receives the
* thrown exception as its only argument. You should implement your error handling in that method.
*
* #### Using a subclass of YAExceptionRenderer
*
* Using a subclass of YAExceptionRenderer gives you full control over how Exceptions are rendered, you
* can configure your class in your core.php, with `Configure::write('Exception.renderer', 'MyClass');`
* You should place any custom exception renderers in `app/Lib/Error`.
*
* @package NetCommons\NetCommons\Error
*/
class NetCommonsExceptionRenderer extends ExceptionRenderer {
/**
* Convenience method to display a 400 series page.
*
* @param Exception $error Exception
* @return void
*/
public function error400($error) {
$message = $error->getMessage();
$this->controller->response->statusCode($error->getCode());
if ($message === 'The request has been black-holed') {
$redirect = $this->controller->request->referer(true);
} elseif ($message === 'Not found file') {
$this->controller->autoRender = false;
$this->_shutdown();
$this->controller->response->send();
return;
} elseif ($message === 'Bad ip address') {
$this->controller->Session->destroy();
$redirect = null;
} elseif ($message === 'Under maintenance') {
$redirect = '/net_commons/site_close/index';
$this->controller->Session->destroy();
} elseif ($this->_is403And404($error)) {
list($redirect, $redirectUrl) = $this->_get403And404Redirect();
if (! $this->controller->request->is('ajax')) {
$this->controller->Auth->redirectUrl($redirectUrl);
}
} else {
$redirect = '/';
$this->controller->Session->destroy();
}
if (isset($redirect)) {
$redirect = Router::url($redirect);
}
$results = array(
'message' => $this->_get400Message($error),
'redirect' => $redirect,
'interval' => '3'
);
$this->_setError('NetCommons.error400', $error, $results);
}
/**
* エラーメッセージ取得
*
* @param Exception $error Exception
* @return string $message
*/
protected function _get400Message($error) {
$message = $error->getMessage();
if (! Configure::read('debug') && $error instanceof CakeException) {
$message = 'Not Found';
}
if ($message === 'Under maintenance') {
$message = __d(
'net_commons', 'Under maintenance. Nobody is allowed to login except for administrators.'
);
} elseif ($this->_is403And404($error)) {
if ($this->controller->Auth->user()) {
$message = __d('net_commons', 'Permission denied. Bad account.');
} else {
$message = __d('net_commons', 'Permission denied. You must be logged.');
}
} else {
$message = __d('net_commons', $message);
}
return nl2br(h($message));
}
/**
* 403か404のエラーかチェックする
*
* @param Exception $error Exception
* @return bool
*/
protected function _is403And404($error) {
return $error->getMessage() === 'Permission denied' ||
$error->getCode() === 403 ||
get_class($error) === 'MissingControllerException';
}
/**
* リダイレクトURLを取得する。
*
* @return array array($redirect, $redirectUrl)
*/
protected function _get403And404Redirect() {
if ($this->controller->Auth->user()) {
$referer = Router::parse($this->controller->request->referer(true));
$here = Router::parse($this->controller->request->here(false));
if ($referer['action'] === 'login' || $here['action'] === 'login') {
//テストでMockに差し替えが必要なための処理であるので、カバレッジレポートから除外する。
//@codeCoverageIgnoreStart
if (empty($this->SiteSetting)) {
$this->SiteSetting = ClassRegistry::init('SiteManager.SiteSetting');
}
//@codeCoverageIgnoreEnd
$redirect = $this->SiteSetting->getDefaultStartPage();
$redirectUrl = $redirect;
} else {
$redirect = '/';
$redirectUrl = '/';
}
} else {
$redirect = '/auth/login';
$this->controller->Session->destroy();
App::uses('Current', 'NetCommons.Utility');
if (in_array($this->controller->params['action'], ['index', 'view'], true)) {
$redirectUrl = $this->controller->request->here(false);
} elseif (Current::read('Page.permalink')) {
$redirectUrl = '/' . Current::read('Page.permalink');
} else {
$redirectUrl = '/';
}
}
return array($redirect, $redirectUrl);
}
/**
* Convenience method to display a 500 page.
*
* @param Exception $error Exception
* @return void
*/
public function error500($error) {
$message = $error->getMessage();
if (! Configure::read('debug')) {
$message = __d('net_commons', 'An Internal Error Has Occurred.');
$code = 500;
} else {
// @see ExceptionRenderer::error500()
$code = ($error->getCode() > 500 && $error->getCode() < 506) ? $error->getCode() : 500;
}
$this->controller->response->statusCode($code);
$results = array(
'code' => $code,
'message' => h($message),
);
$this->_setError('NetCommons.error500', $error, $results);
}
/**
* エラーをコントローラにセット
*
* @param string $template viewテンプレート
* @param Exception $error Exception
* @param array $results viewにセットする配列
* @return void
*/
protected function _setError($template, $error, $results) {
$url = $this->controller->request->here();
$name = preg_replace('/Exception$/', '', get_class($error));
if ($name === '') {
$name = get_class($error);
}
$results = Hash::merge(array(
'code' => $error->getCode(),
'name' => Inflector::humanize(Inflector::underscore($name)),
'url' => h($url),
), $results);
if ($this->controller->request->is('ajax')) {
$this->controller->viewClass = 'Json';
$this->controller->layout = false;
if (Configure::read('debug')) {
$results['error'] = ['trace' => explode("\n", $error->getTraceAsString())];
}
$this->controller->set(compact('results'));
} else {
$this->controller->layout = 'NetCommons.error';
$results['error'] = $error;
$this->controller->set($results);
}
$this->controller->set('_serialize', 'results');
$this->_outputMessage($template);
}
}