2009-01-22 11:13:11 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Server error action.
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* @category Action
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Zach Copley <zach@status.net>
|
2009-01-22 11:13:11 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-22 11:13:11 +00:00
|
|
|
*
|
2009-08-25 23:14:12 +01:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-25 23:12:20 +01:00
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
2009-01-22 11:13:11 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-05-06 23:58:45 +01:00
|
|
|
if (!defined('GNUSOCIAL')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
2009-01-22 11:13:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class for displaying HTTP server errors
|
|
|
|
*
|
|
|
|
* Note: The older util.php class simply printed a string, but the spec
|
|
|
|
* says that 500 errors should be treated similarly to 400 errors, and
|
|
|
|
* it's easier to give an HTML response. Maybe we can customize these
|
|
|
|
* to display some funny animal cartoons. If not, we can probably role
|
2009-03-04 14:27:30 +00:00
|
|
|
* these classes up into a single class.
|
2009-01-22 11:13:11 +00:00
|
|
|
*
|
|
|
|
* See: http://tools.ietf.org/html/rfc2616#section-10
|
|
|
|
*
|
|
|
|
* @category Action
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Zach Copley <zach@status.net>
|
2009-01-22 11:13:11 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-22 11:13:11 +00:00
|
|
|
*/
|
|
|
|
class ServerErrorAction extends ErrorAction
|
|
|
|
{
|
2019-05-06 23:58:45 +01:00
|
|
|
static $status = [500 => 'Internal Server Error',
|
|
|
|
501 => 'Not Implemented',
|
|
|
|
502 => 'Bad Gateway',
|
|
|
|
503 => 'Service Unavailable',
|
|
|
|
504 => 'Gateway Timeout',
|
|
|
|
505 => 'HTTP Version Not Supported'];
|
2009-09-29 22:43:45 +01:00
|
|
|
|
2019-05-06 23:58:45 +01:00
|
|
|
function __construct($message = 'Error', $code = 500, $ex = null)
|
2009-01-22 11:13:11 +00:00
|
|
|
{
|
|
|
|
parent::__construct($message, $code);
|
2009-03-04 14:27:30 +00:00
|
|
|
|
2009-01-22 11:13:11 +00:00
|
|
|
$this->default = 500;
|
2009-08-12 19:16:31 +01:00
|
|
|
|
2016-01-14 20:28:47 +00:00
|
|
|
if (!$this->code || $this->code < 500 || $this->code > 599) {
|
2009-01-22 11:13:11 +00:00
|
|
|
$this->code = $this->default;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$this->message) {
|
2009-03-04 14:27:30 +00:00
|
|
|
$this->message = "Server Error $this->code";
|
|
|
|
}
|
2009-01-22 11:13:11 +00:00
|
|
|
|
2016-01-14 20:28:47 +00:00
|
|
|
// Server errors must be logged.
|
|
|
|
$log = "ServerErrorAction: $code $message";
|
|
|
|
if ($ex) {
|
|
|
|
$log .= "\n" . $ex->getTraceAsString();
|
|
|
|
}
|
|
|
|
common_log(LOG_ERR, $log);
|
|
|
|
|
2009-01-22 11:13:11 +00:00
|
|
|
$this->showPage();
|
|
|
|
}
|
2010-10-07 03:06:57 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* To specify additional HTTP headers for the action
|
|
|
|
*
|
2019-05-06 23:58:45 +01:00
|
|
|
* @return void
|
2010-10-07 03:06:57 +01:00
|
|
|
*/
|
|
|
|
function extraHeaders()
|
|
|
|
{
|
2019-05-06 23:58:45 +01:00
|
|
|
$status_string = self::$status[$this->code];
|
|
|
|
header('HTTP/1.1 ' . $this->code . ' ' . $status_string);
|
2010-10-07 03:06:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Page title.
|
|
|
|
*
|
2019-05-06 23:58:45 +01:00
|
|
|
* @return string page title
|
2010-10-07 03:06:57 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
function title()
|
|
|
|
{
|
2019-05-06 23:58:45 +01:00
|
|
|
return self::$status[$this->code];
|
2010-10-07 03:06:57 +01:00
|
|
|
}
|
|
|
|
|
2009-01-22 11:13:11 +00:00
|
|
|
}
|