Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
0a2c61ec
Commit
0a2c61ec
authored
Nov 11, 2011
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactoring error handling.
parent
0dc43490
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
99 additions
and
136 deletions
+99
-136
error.php
application/config/error.php
+17
-21
core.php
laravel/bootstrap/core.php
+1
-0
errors.php
laravel/bootstrap/errors.php
+0
-110
laravel.php
laravel/laravel.php
+81
-5
No files found.
application/config/error.php
View file @
0a2c61ec
...
...
@@ -36,29 +36,22 @@ return array(
| Error Handler
|--------------------------------------------------------------------------
|
| Because of the various ways of managing error logging, you get complete
| flexibility in Laravel to manage all error logging as you see fit.
| Because of the various ways of managing errors, you get complete freedom
| to manage errors as you desire. Any error that occurs in your application
| will be sent to this Closure.
|
|
This function will be called when an error occurs in your application.
|
You are free to handle the exception any way you want. The severity
| will
be a human-readable severity level such as "Parsing Error"
.
|
By default, when error detail is disabled, a generic error page will be
|
rendered by the handler. After this handler is complete, the framework
| will
stop processing the request and "exit" will be called
.
|
*/
'handler'
=>
function
(
$exception
,
$
severity
,
$message
,
$
config
)
'handler'
=>
function
(
$exception
,
$config
)
{
if
(
$config
[
'detail'
])
{
$data
=
compact
(
'exception'
,
'severity'
,
'message'
);
$response
=
Response
::
view
(
'error.exception'
,
$data
)
->
status
(
500
);
}
else
if
(
!
$config
[
'detail'
])
{
$response
=
Response
::
error
(
'500'
);
Response
::
error
(
'500'
)
->
send
(
);
}
$response
->
send
();
},
/*
...
...
@@ -71,15 +64,18 @@ return array(
| be called anytime an error occurs within your application and error
| logging is enabled.
|
| You may log the error message however you like; however, a simple logging
| solution has been setup for you which will log all error messages to a
| single text file within the application storage directory.
| You may log the error message however you like; however, a simple log
| solution has been setup for you which will log all error messages to
| a single text file within the application storage directory.
|
| Of course, you are free to implement more complex solutions including
| e-mailing the exceptions details to your team, etc.
|
*/
'logger'
=>
function
(
$exception
,
$
severity
,
$message
,
$
config
)
'logger'
=>
function
(
$exception
,
$config
)
{
$message
=
date
(
'Y-m-d H:i:s'
)
.
'
'
.
$severity
.
' - '
.
$message
.
PHP_EOL
;
$message
=
date
(
'Y-m-d H:i:s'
)
.
'
- '
.
$exception
->
getMessage
()
.
PHP_EOL
;
File
::
append
(
STORAGE_PATH
.
'log.txt'
,
$message
);
}
...
...
laravel/bootstrap/core.php
View file @
0a2c61ec
...
...
@@ -59,6 +59,7 @@ require SYS_PATH.'autoloader'.EXT;
*/
Config
::
load
(
'application'
);
Config
::
load
(
'session'
);
Config
::
load
(
'error'
);
/**
* Bootstrap the application inversion of control container. The IoC
...
...
laravel/bootstrap/errors.php
deleted
100644 → 0
View file @
0dc43490
<?php
namespace
Laravel
;
/**
* Define a closure that will return the formatted error message when
* when given an exception. This function will be used by all of error
* handlers to create a more readable message.
*/
$message
=
function
(
$e
)
{
$search
=
array
(
APP_PATH
,
SYS_PATH
);
$replace
=
array
(
'APP_PATH/'
,
'SYS_PATH/'
);
$file
=
str_replace
(
$search
,
$replace
,
$e
->
getFile
());
return
rtrim
(
$e
->
getMessage
(),
'.'
)
.
' in '
.
$file
.
' on line '
.
$e
->
getLine
()
.
'.'
;
};
/**
* Define a closure that will return a more readable version of the
* severity of an exception. This function will be used by the error
* handler when parsing exceptions.
*/
$severity
=
function
(
$e
)
{
$levels
=
array
(
0
=>
'Error'
,
E_ERROR
=>
'Error'
,
E_WARNING
=>
'Warning'
,
E_PARSE
=>
'Parsing Error'
,
E_NOTICE
=>
'Notice'
,
E_CORE_ERROR
=>
'Core Error'
,
E_CORE_WARNING
=>
'Core Warning'
,
E_COMPILE_ERROR
=>
'Compile Error'
,
E_COMPILE_WARNING
=>
'Compile Warning'
,
E_USER_ERROR
=>
'User Error'
,
E_USER_WARNING
=>
'User Warning'
,
E_USER_NOTICE
=>
'User Notice'
,
E_STRICT
=>
'Runtime Notice'
,
);
$code
=
$e
->
getCode
();
return
(
array_key_exists
(
$code
,
$levels
))
?
$levels
[
$code
]
:
$code
;
};
/**
* Create the exception handler function. All of the error handlers
* registered by the framework call this closure to avoid duplicate
* code. Each of the formatting closures defined above will be
* passed into the handler for convenient use.
*/
$handler
=
function
(
$e
)
use
(
$message
,
$severity
)
{
$config
=
Config
::
get
(
'error'
);
if
(
$config
[
'log'
])
{
call_user_func
(
$config
[
'logger'
],
$e
,
$severity
(
$e
),
$message
(
$e
),
$config
);
}
call_user_func
(
$config
[
'handler'
],
$e
,
$severity
(
$e
),
$message
(
$e
),
$config
);
exit
(
1
);
};
/**
* Register the PHP exception handler. The framework throws exceptions
* on every error that cannot be handled. All of those exceptions will
* fall into this closure for processing.
*/
set_exception_handler
(
function
(
$e
)
use
(
$handler
)
{
$handler
(
$e
);
});
/**
* Register the PHP error handler. All PHP errors will fall into this
* handler, which will convert the error into an ErrorException object
* and pass the exception into the common exception handler.
*/
set_error_handler
(
function
(
$number
,
$error
,
$file
,
$line
)
use
(
$handler
)
{
$handler
(
new
\ErrorException
(
$error
,
$number
,
0
,
$file
,
$line
));
});
/**
* Register the PHP shutdown handler. This function will be called at
* the end of the PHP script or on a fatal PHP error. If an error has
* occurred, we will convert it to an ErrorException and pass it to
* the common exception handler.
*/
register_shutdown_function
(
function
()
use
(
$handler
)
{
if
(
!
is_null
(
$error
=
error_get_last
()))
{
extract
(
$error
,
EXTR_SKIP
);
$handler
(
new
\ErrorException
(
$message
,
$type
,
0
,
$file
,
$line
));
}
});
/**
* Turn off all PHP error reporting and display. Since the framework
* will be displaying the exception messages, we don't want PHP to
* display any ugly error information.
*/
error_reporting
(
-
1
);
ini_set
(
'display_errors'
,
'Off'
);
\ No newline at end of file
laravel/laravel.php
View file @
0a2c61ec
...
...
@@ -8,14 +8,90 @@
require
'bootstrap/core.php'
;
/**
* Register the
framework error handling methods and set the error
*
reporting levels. This file will register handlers for exceptions,
*
errors, and the shutdown event
.
* Register the
default timezone for the application. This will be
*
the default timezone used by all date / timezone functions in
*
the entire application
.
*/
require
SYS_PATH
.
'bootstrap/errors'
.
EXT
;
date_default_timezone_set
(
Config
::
$items
[
'application'
][
'timezone'
]);
/**
* Create the exception handler function. All of the error handlers
* registered by the framework call this closure to avoid duplicate
* code. This Closure will determine if the logging Closure should
* be called, and will pass the exception to the developer defined
* handler in the configuration file.
*/
$handler
=
function
(
$exception
)
{
$config
=
Config
::
get
(
'error'
);
if
(
$config
[
'log'
])
{
call_user_func
(
$config
[
'logger'
],
$exception
,
$config
);
}
call_user_func
(
$config
[
'handler'
],
$exception
,
$config
);
if
(
!
$config
[
'detail'
])
{
exit
(
1
);
}
};
/**
* Register the PHP exception handler. The framework throws exceptions
* on every error that cannot be handled. All of those exceptions will
* be sent through this closure for processing.
*/
set_exception_handler
(
function
(
$exception
)
use
(
$handler
)
{
$handler
(
$exception
);
});
/**
* Register the PHP error handler. All PHP errors will fall into this
* handler, which will convert the error into an ErrorException object
* and pass the exception into the common exception handler.
*/
set_error_handler
(
function
(
$number
,
$error
,
$file
,
$line
)
use
(
$handler
)
{
$handler
(
new
\ErrorException
(
$error
,
$number
,
0
,
$file
,
$line
));
});
/**
* Register the PHP shutdown handler. This function will be called
* at the end of the PHP script or on a fatal PHP error. If an error
* has occured, we will convert it to an ErrorException and pass it
* to the common exception handler for the framework.
*/
register_shutdown_function
(
function
()
use
(
$handler
)
{
if
(
!
is_null
(
$error
=
error_get_last
()))
{
extract
(
$error
,
EXTR_SKIP
);
$handler
(
new
\ErrorException
(
$message
,
$type
,
0
,
$file
,
$line
));
}
});
/**
* Setting the PHP error reporting level to -1 essentially forces
* PHP to report every error, and is guranteed to show every error
* on future versions of PHP.
*/
error_reporting
(
-
1
);
/**
* If error detail is turned off, we will turn off all PHP error
* reporting and display since the framework will be displaying a
* generic message and we don't want any sensitive details about
* the exception leaking into the views.
*/
if
(
!
Config
::
$items
[
'error'
][
'detail'
])
{
//ini_set('display_errors', 'Off');
}
/**
* Load the session and session manager instance. The session
* payload will be registered in the IoC container as an instance
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment