我想在
中创建类似于unauthenticated()功能的内容应用\例外\ Handler.php
但我的异常是由Guzzle生成的包含某个http代码和json正文的异常。
我已经有了一个可以这样工作的助手类:
public static function get($enum) {
$headers = self::headers();
$client = new Client();
try {
$response = $client->request('GET', config('app.apiurl') . '/api/' . $enum, ['headers' => $headers]);
} catch (\Exception $e) {
$response = $e->getResponse();
$body = json_decode($response->getBody(), true);
$code = $response->getStatusCode();
if ($body['code'] == 101 && $code == 412) {
throw new \Exception("wizard eerst", 101);
}
}
但我更喜欢在通用处理程序中执行此操作,例如某种异常的中间件。因此,我不想在每个调用中使用try catch,但要捕获所有符合我描述的异常并使用重定向处理它们。
解决方案
public function render($request, Exception $exception) {
$response = $exception->getResponse();
$body = json_decode($response->getBody(), true);
$code = $response->getStatusCode();
if ($body['code'] == 101 && $code == 412) {
if ($request->expectsJson()) {
return response()->json(['error' => 'Je moet eerst de profielwizard afmaken'], $code);
}
return redirect('/wizard');
}
return parent::render($request, $exception);
}
答案 0 :(得分:0)
render
中存在app\Exceptions\Handler.php
个功能。
要处理不同类型的Exception,您可以尝试:
public function render($request, Exception $e)
{
if ($e instanceof SomeTypeException1)
{
#handle it
}
else if($e instanceof SomeTypeException2)
{
#handle it
}
return parent::render($request, $e);
}