2009-01-22 11:13:11 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Client 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
|
2010-10-07 03:06:57 +01:00
|
|
|
* Copyright (C) 2008-2010 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/>.
|
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-01-22 11:13:11 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2010-10-07 03:06:57 +01:00
|
|
|
require_once INSTALLDIR . '/lib/error.php';
|
2009-01-22 11:13:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class for displaying HTTP client errors
|
|
|
|
*
|
|
|
|
* @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 ClientErrorAction extends ErrorAction
|
|
|
|
{
|
2009-09-29 22:43:45 +01:00
|
|
|
static $status = array(400 => 'Bad Request',
|
|
|
|
401 => 'Unauthorized',
|
|
|
|
402 => 'Payment Required',
|
|
|
|
403 => 'Forbidden',
|
|
|
|
404 => 'Not Found',
|
|
|
|
405 => 'Method Not Allowed',
|
|
|
|
406 => 'Not Acceptable',
|
|
|
|
407 => 'Proxy Authentication Required',
|
|
|
|
408 => 'Request Timeout',
|
|
|
|
409 => 'Conflict',
|
|
|
|
410 => 'Gone',
|
|
|
|
411 => 'Length Required',
|
|
|
|
412 => 'Precondition Failed',
|
|
|
|
413 => 'Request Entity Too Large',
|
|
|
|
414 => 'Request-URI Too Long',
|
|
|
|
415 => 'Unsupported Media Type',
|
|
|
|
416 => 'Requested Range Not Satisfiable',
|
|
|
|
417 => 'Expectation Failed');
|
|
|
|
|
2009-01-22 11:13:11 +00:00
|
|
|
function __construct($message='Error', $code=400)
|
|
|
|
{
|
|
|
|
parent::__construct($message, $code);
|
|
|
|
$this->default = 400;
|
|
|
|
}
|
2009-02-02 21:08:33 +00:00
|
|
|
|
2009-01-22 11:13:11 +00:00
|
|
|
// XXX: Should these error actions even be invokable via URI?
|
2009-03-04 14:27:30 +00:00
|
|
|
|
2009-01-22 11:13:11 +00:00
|
|
|
function handle($args)
|
|
|
|
{
|
|
|
|
parent::handle($args);
|
|
|
|
|
|
|
|
$this->code = $this->trimmed('code');
|
|
|
|
|
|
|
|
if (!$this->code || $code < 400 || $code > 499) {
|
|
|
|
$this->code = $this->default;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->message = $this->trimmed('message');
|
2009-03-04 14:27:30 +00:00
|
|
|
|
2009-01-22 11:13:11 +00:00
|
|
|
if (!$this->message) {
|
2009-03-04 14:27:30 +00:00
|
|
|
$this->message = "Client Error $this->code";
|
|
|
|
}
|
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
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function extraHeaders()
|
|
|
|
{
|
|
|
|
$status_string = @self::$status[$this->code];
|
|
|
|
header('HTTP/1.1 '.$this->code.' '.$status_string);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Page title.
|
|
|
|
*
|
|
|
|
* @return page title
|
|
|
|
*/
|
|
|
|
|
|
|
|
function title()
|
|
|
|
{
|
|
|
|
return @self::$status[$this->code];
|
|
|
|
}
|
2009-01-22 11:13:11 +00:00
|
|
|
}
|