5 * Created on Feb 2, 2009
7 * Copyright © 2009 Roan Kattouw "<Firstname>.<Lastname>@gmail.com"
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
28 * Formatter that spits out anything you like with any desired MIME type
31 class ApiFormatRaw
extends ApiFormatBase
{
33 private $errorFallback;
34 private $mFailWithHTTPError = false;
37 * @param ApiMain $main
38 * @param ApiFormatBase|null $errorFallback Object to fall back on for errors
40 public function __construct( ApiMain
$main, ApiFormatBase
$errorFallback = null ) {
41 parent
::__construct( $main, 'raw' );
42 if ( $errorFallback === null ) {
43 $this->errorFallback
= $main->createPrinterByName( $main->getParameter( 'format' ) );
45 $this->errorFallback
= $errorFallback;
49 public function getMimeType() {
50 $data = $this->getResult()->getResultData();
52 if ( isset( $data['error'] ) ) {
53 return $this->errorFallback
->getMimeType();
56 if ( !isset( $data['mime'] ) ) {
57 ApiBase
::dieDebug( __METHOD__
, 'No MIME type set for raw formatter' );
63 public function initPrinter( $unused = false ) {
64 $data = $this->getResult()->getResultData();
65 if ( isset( $data['error'] ) ) {
66 $this->errorFallback
->initPrinter( $unused );
67 if ( $this->mFailWithHTTPError
) {
68 $this->getMain()->getRequest()->response()->statusHeader( 400 );
71 parent
::initPrinter( $unused );
75 public function closePrinter() {
76 $data = $this->getResult()->getResultData();
77 if ( isset( $data['error'] ) ) {
78 $this->errorFallback
->closePrinter();
80 parent
::closePrinter();
84 public function execute() {
85 $data = $this->getResult()->getResultData();
86 if ( isset( $data['error'] ) ) {
87 $this->errorFallback
->execute();
91 if ( !isset( $data['text'] ) ) {
92 ApiBase
::dieDebug( __METHOD__
, 'No text given for raw formatter' );
94 $this->printText( $data['text'] );
98 * Output HTTP error code 400 when if an error is encountered
100 * The purpose is for output formats where the user-agent will
101 * not be able to interpret the validity of the content in any
102 * other way. For example subtitle files read by browser video players.
106 public function setFailWithHTTPError( $fail ) {
107 $this->mFailWithHTTPError
= $fail;