Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Handler.php « Exceptions « app - github.com/cydrobolt/polr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2afb8836b9622fb63d8ae07faa709a1b7e31a129 (plain)
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
<?php

namespace App\Exceptions;

use Exception;
use Symfony\Component\HttpKernel\Exception\HttpException;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Laravel\Lumen\Exceptions\Handler as ExceptionHandler;
use Illuminate\Support\Facades\Response;

use App\Exceptions\Api\ApiException;

class Handler extends ExceptionHandler {
    /**
     * A list of the exception types that should not be reported.
     *
     * @var array
     */
    protected $dontReport = [
        HttpException::class,
    ];

    /**
     * Report or log an exception.
     *
     * This is a great spot to send exceptions to Sentry, Bugsnag, etc.
     *
     * @param  \Exception  $e
     * @return void
     */
    public function report(Exception $e)
    {
        return parent::report($e);
    }

    /**
     * Render an exception into an HTTP response.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Exception  $e
     * @return \Illuminate\Http\Response
     */
    public function render($request, Exception $e)
    {
        if (env('APP_DEBUG') != true) {
            // Render nice error pages if debug is off
            if ($e instanceof NotFoundHttpException) {
                // Handle 404 exceptions
                if (env('SETTING_REDIRECT_404')) {
                    // Redirect 404s to SETTING_INDEX_REDIRECT
                    return redirect()->to(env('SETTING_INDEX_REDIRECT'));
                }
                // Otherwise, show a nice error page
                return view('errors.404');
            }
            if ($e instanceof HttpException) {
                // Handle HTTP exceptions thrown by public-facing controllers
                $status_code = $e->getStatusCode();
                $status_message = $e->getMessage();

                if ($status_code == 500) {
                    // Render a nice error page for 500s
                    return view('errors.500');
                }
                else {
                    // If not 500, render generic page
                    return response(view('errors.generic', ['status_code' => $status_code, 'status_message' => $status_message]), $status_code);
                }
            }
            if ($e instanceof ApiException) {
                // Handle HTTP exceptions thrown by API controllers
                $status_code = $e->getCode();
                $encoded_status_message = $e->getEncodedErrorMessage();
                if ($e->response_type == 'json') {
                    return response($encoded_status_message, $status_code)
                        ->header('Content-Type', 'application/json')
                        ->header('Access-Control-Allow-Origin', '*');
                }

                return response($encoded_status_message, $status_code)
                    ->header('Content-Type', 'text/plain')
                    ->header('Access-Control-Allow-Origin', '*');
            }
        }

        return parent::render($request, $e);
    }
}