Example #1
0
 /**
  * Check POST for external response and setup result printer
  * @param ApiBase $module An Api module
  * @param array $params An array with the request parameters
  */
 protected function setupExternalResponse($module, $params)
 {
     if (!$this->getRequest()->wasPosted() && $module->mustBePosted()) {
         // Module requires POST. GET request might still be allowed
         // if $wgDebugApi is true, otherwise fail.
         $this->dieUsageMsgOrDebug(array('mustbeposted', $this->mAction));
     }
     // See if custom printer is used
     $this->mPrinter = $module->getCustomPrinter();
     if (is_null($this->mPrinter)) {
         // Create an appropriate printer
         $this->mPrinter = $this->createPrinterByName($params['format']);
     }
 }
Example #2
0
 /**
  * Check POST for external response and setup result printer
  * @param ApiBase $module An Api module
  * @param array $params An array with the request parameters
  */
 protected function setupExternalResponse($module, $params)
 {
     $request = $this->getRequest();
     if (!$request->wasPosted() && $module->mustBePosted()) {
         // Module requires POST. GET request might still be allowed
         // if $wgDebugApi is true, otherwise fail.
         $this->dieUsageMsgOrDebug(array('mustbeposted', $this->mAction));
     }
     // See if custom printer is used
     $this->mPrinter = $module->getCustomPrinter();
     if (is_null($this->mPrinter)) {
         // Create an appropriate printer
         $this->mPrinter = $this->createPrinterByName($params['format']);
     }
     if ($request->getProtocol() === 'http' && ($request->getSession()->shouldForceHTTPS() || $this->getUser()->isLoggedIn() && $this->getUser()->requiresHTTPS())) {
         $this->logFeatureUsage('https-expected');
         $this->setWarning('HTTP used when HTTPS was expected');
     }
 }