2009-01-22 11:13:11 +00:00
|
|
|
<?php
|
2020-08-04 12:12:17 +01:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social 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.
|
|
|
|
//
|
|
|
|
// GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
|
2009-01-22 11:13:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Server error action.
|
|
|
|
*
|
2020-08-04 12:12:17 +01:00
|
|
|
* @category Action
|
|
|
|
* @package GNUsocial
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @copyright 2008, 2009 StatusNet, Inc.
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2009-01-22 11:13:11 +00:00
|
|
|
*/
|
|
|
|
|
2020-08-04 12:12:17 +01:00
|
|
|
defined('GNUSOCIAL') || die();
|
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
|
|
|
|
*
|
2020-08-04 12:12:17 +01:00
|
|
|
* @category Action
|
|
|
|
* @package GNUsocial
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2009-01-22 11:13:11 +00:00
|
|
|
*/
|
|
|
|
class ServerErrorAction extends ErrorAction
|
|
|
|
{
|
2020-08-04 12:12:17 +01:00
|
|
|
public 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
|
|
|
|
2020-08-04 12:12:17 +01:00
|
|
|
public 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
|
|
|
*/
|
2020-08-04 12:12:17 +01:00
|
|
|
public function extraHeaders()
|
2010-10-07 03:06:57 +01:00
|
|
|
{
|
2020-08-04 12:12:17 +01:00
|
|
|
http_response_code($this->code);
|
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
|
|
|
*/
|
|
|
|
|
2020-08-04 12:12:17 +01:00
|
|
|
public function title()
|
2010-10-07 03:06:57 +01:00
|
|
|
{
|
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
|
|
|
}
|