blob: 869739a5a5fb58b53f9540a2f29ed08db5364aa6 [file] [log] [blame]
Derek Jones37f4b9c2011-07-01 17:56:50 -05001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Greg Aker741de1c2010-11-10 14:52:57 -06005 * An open source application development framework for PHP 5.1.6 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
7 * @package CodeIgniter
8 * @author ExpressionEngine Dev Team
Greg Aker0711dc82011-01-05 10:49:40 -06009 * @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
Derek Allard2067d1a2008-11-13 22:59:24 +000010 * @license http://codeigniter.com/user_guide/license.html
11 * @link http://codeigniter.com
12 * @since Version 1.0
13 * @filesource
14 */
15
16// ------------------------------------------------------------------------
17
18/**
19 * Exceptions Class
20 *
21 * @package CodeIgniter
22 * @subpackage Libraries
23 * @category Exceptions
24 * @author ExpressionEngine Dev Team
25 * @link http://codeigniter.com/user_guide/libraries/exceptions.html
26 */
27class CI_Exceptions {
28 var $action;
29 var $severity;
30 var $message;
31 var $filename;
32 var $line;
David Behler209b2cf2011-08-14 23:00:43 +020033
34 /**
35 * Nesting level of the output buffering mechanism
David Behler209b2cf2011-08-14 23:00:43 +020036 *
37 * @var int
38 * @access public
39 */
Derek Allard2067d1a2008-11-13 22:59:24 +000040 var $ob_level;
41
David Behler209b2cf2011-08-14 23:00:43 +020042 /**
43 * List if available error levels
44 *
45 * @var array
46 * @access public
47 */
Derek Allard2067d1a2008-11-13 22:59:24 +000048 var $levels = array(
49 E_ERROR => 'Error',
50 E_WARNING => 'Warning',
51 E_PARSE => 'Parsing Error',
52 E_NOTICE => 'Notice',
53 E_CORE_ERROR => 'Core Error',
54 E_CORE_WARNING => 'Core Warning',
55 E_COMPILE_ERROR => 'Compile Error',
56 E_COMPILE_WARNING => 'Compile Warning',
57 E_USER_ERROR => 'User Error',
58 E_USER_WARNING => 'User Warning',
59 E_USER_NOTICE => 'User Notice',
60 E_STRICT => 'Runtime Notice'
61 );
62
63
64 /**
65 * Constructor
Barry Mienydd671972010-10-04 16:33:58 +020066 */
Greg Akera9263282010-11-10 15:26:43 -060067 public function __construct()
Derek Allard2067d1a2008-11-13 22:59:24 +000068 {
69 $this->ob_level = ob_get_level();
Derek Jones37f4b9c2011-07-01 17:56:50 -050070 // Note: Do not log messages from this constructor.
Derek Allard2067d1a2008-11-13 22:59:24 +000071 }
Barry Mienydd671972010-10-04 16:33:58 +020072
Derek Allard2067d1a2008-11-13 22:59:24 +000073 // --------------------------------------------------------------------
74
75 /**
76 * Exception Logger
77 *
78 * This function logs PHP generated error messages
79 *
80 * @access private
81 * @param string the error severity
82 * @param string the error string
83 * @param string the error filepath
84 * @param string the error line number
85 * @return string
86 */
87 function log_exception($severity, $message, $filepath, $line)
Barry Mienydd671972010-10-04 16:33:58 +020088 {
Derek Allard2067d1a2008-11-13 22:59:24 +000089 $severity = ( ! isset($this->levels[$severity])) ? $severity : $this->levels[$severity];
Barry Mienydd671972010-10-04 16:33:58 +020090
Derek Jones37f4b9c2011-07-01 17:56:50 -050091 log_message('error', 'Severity: '.$severity.' --> '.$message. ' '.$filepath.' '.$line, TRUE);
Derek Allard2067d1a2008-11-13 22:59:24 +000092 }
93
94 // --------------------------------------------------------------------
95
96 /**
97 * 404 Page Not Found Handler
98 *
99 * @access private
David Behlercda768a2011-08-14 23:52:48 +0200100 * @param string the page
101 * @param bool log error yes/no
Derek Allard2067d1a2008-11-13 22:59:24 +0000102 * @return string
103 */
Derek Allard2ddc9492010-08-05 10:08:33 -0400104 function show_404($page = '', $log_error = TRUE)
Barry Mienydd671972010-10-04 16:33:58 +0200105 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000106 $heading = "404 Page Not Found";
107 $message = "The page you requested was not found.";
108
Derek Allard2ddc9492010-08-05 10:08:33 -0400109 // By default we log this, but allow a dev to skip it
110 if ($log_error)
111 {
112 log_message('error', '404 Page Not Found --> '.$page);
113 }
114
Derek Jonesf6b442b2009-07-11 18:23:30 +0000115 echo $this->show_error($heading, $message, 'error_404', 404);
Derek Allard2067d1a2008-11-13 22:59:24 +0000116 exit;
117 }
Barry Mienydd671972010-10-04 16:33:58 +0200118
Derek Allard2067d1a2008-11-13 22:59:24 +0000119 // --------------------------------------------------------------------
120
121 /**
122 * General Error Page
123 *
124 * This function takes an error message as input
125 * (either as a string or an array) and displays
126 * it using the specified template.
127 *
128 * @access private
129 * @param string the heading
130 * @param string the message
131 * @param string the template name
David Behlercda768a2011-08-14 23:52:48 +0200132 * @param int the status code
Derek Allard2067d1a2008-11-13 22:59:24 +0000133 * @return string
134 */
Derek Jones817163a2009-07-11 17:05:58 +0000135 function show_error($heading, $message, $template = 'error_general', $status_code = 500)
Derek Allard2067d1a2008-11-13 22:59:24 +0000136 {
Derek Jones817163a2009-07-11 17:05:58 +0000137 set_status_header($status_code);
Barry Mienydd671972010-10-04 16:33:58 +0200138
Derek Allard2067d1a2008-11-13 22:59:24 +0000139 $message = '<p>'.implode('</p><p>', ( ! is_array($message)) ? array($message) : $message).'</p>';
140
141 if (ob_get_level() > $this->ob_level + 1)
142 {
Barry Mienydd671972010-10-04 16:33:58 +0200143 ob_end_flush();
Derek Allard2067d1a2008-11-13 22:59:24 +0000144 }
145 ob_start();
Greg Aker3a746652011-04-19 10:59:47 -0500146 include(APPPATH.'errors/'.$template.'.php');
Derek Allard2067d1a2008-11-13 22:59:24 +0000147 $buffer = ob_get_contents();
148 ob_end_clean();
149 return $buffer;
150 }
151
152 // --------------------------------------------------------------------
153
154 /**
155 * Native PHP error handler
156 *
157 * @access private
158 * @param string the error severity
159 * @param string the error string
160 * @param string the error filepath
161 * @param string the error line number
162 * @return string
163 */
164 function show_php_error($severity, $message, $filepath, $line)
Barry Mienydd671972010-10-04 16:33:58 +0200165 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000166 $severity = ( ! isset($this->levels[$severity])) ? $severity : $this->levels[$severity];
Barry Mienydd671972010-10-04 16:33:58 +0200167
Derek Allard2067d1a2008-11-13 22:59:24 +0000168 $filepath = str_replace("\\", "/", $filepath);
Barry Mienydd671972010-10-04 16:33:58 +0200169
Derek Allard2067d1a2008-11-13 22:59:24 +0000170 // For safety reasons we do not show the full file path
171 if (FALSE !== strpos($filepath, '/'))
172 {
173 $x = explode('/', $filepath);
174 $filepath = $x[count($x)-2].'/'.end($x);
175 }
Barry Mienydd671972010-10-04 16:33:58 +0200176
Derek Allard2067d1a2008-11-13 22:59:24 +0000177 if (ob_get_level() > $this->ob_level + 1)
178 {
Barry Mienydd671972010-10-04 16:33:58 +0200179 ob_end_flush();
Derek Allard2067d1a2008-11-13 22:59:24 +0000180 }
181 ob_start();
Greg Aker3a746652011-04-19 10:59:47 -0500182 include(APPPATH.'errors/error_php.php');
Derek Allard2067d1a2008-11-13 22:59:24 +0000183 $buffer = ob_get_contents();
184 ob_end_clean();
185 echo $buffer;
186 }
187
188
189}
190// END Exceptions Class
191
192/* End of file Exceptions.php */
Derek Jonesc68dfbf2010-03-02 12:59:23 -0600193/* Location: ./system/core/Exceptions.php */