MediaWiki  1.27.2
ApiFormatRaw.php
Go to the documentation of this file.
1 <?php
31 class ApiFormatRaw extends ApiFormatBase {
32 
33  private $errorFallback;
34  private $mFailWithHTTPError = false;
35 
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' ) );
44  } else {
45  $this->errorFallback = $errorFallback;
46  }
47  }
48 
49  public function getMimeType() {
50  $data = $this->getResult()->getResultData();
51 
52  if ( isset( $data['error'] ) ) {
53  return $this->errorFallback->getMimeType();
54  }
55 
56  if ( !isset( $data['mime'] ) ) {
57  ApiBase::dieDebug( __METHOD__, 'No MIME type set for raw formatter' );
58  }
59 
60  return $data['mime'];
61  }
62 
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 );
69  }
70  } else {
71  parent::initPrinter( $unused );
72  }
73  }
74 
75  public function closePrinter() {
76  $data = $this->getResult()->getResultData();
77  if ( isset( $data['error'] ) ) {
78  $this->errorFallback->closePrinter();
79  } else {
80  parent::closePrinter();
81  }
82  }
83 
84  public function execute() {
85  $data = $this->getResult()->getResultData();
86  if ( isset( $data['error'] ) ) {
87  $this->errorFallback->execute();
88  return;
89  }
90 
91  if ( !isset( $data['text'] ) ) {
92  ApiBase::dieDebug( __METHOD__, 'No text given for raw formatter' );
93  }
94  $this->printText( $data['text'] );
95  }
96 
106  public function setFailWithHTTPError( $fail ) {
107  $this->mFailWithHTTPError = $fail;
108  }
109 }
getResult()
Get the result object.
Definition: ApiBase.php:584
getParameter($paramName, $parseLimit=true)
Get a value for the given parameter.
Definition: ApiBase.php:709
getMain()
Get the main module.
Definition: ApiBase.php:480
Formatter that spits out anything you like with any desired MIME type.
This is the abstract base class for API formatters.
printText($text)
Append text to the output buffer.
initPrinter($unused=false)
This is the main API class, used for both external and internal processing.
Definition: ApiMain.php:41
__construct(ApiMain $main, ApiFormatBase $errorFallback=null)
createPrinterByName($format)
Create an instance of an output formatter by its name.
Definition: ApiMain.php:423
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
setFailWithHTTPError($fail)
Output HTTP error code 400 when if an error is encountered.
static dieDebug($method, $message)
Internal code errors should be reported with this method.
Definition: ApiBase.php:2230