[ Index ]

PHP Cross Reference of MediaWiki-1.24.0

title

Body

[close]

/includes/api/ -> ApiQueryLangLinks.php (source)

   1  <?php
   2  /**
   3   *
   4   *
   5   * Created on May 13, 2007
   6   *
   7   * Copyright © 2006 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
   8   *
   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.
  13   *
  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.
  18   *
  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
  23   *
  24   * @file
  25   */
  26  
  27  /**
  28   * A query module to list all langlinks (links to corresponding foreign language pages).
  29   *
  30   * @ingroup API
  31   */
  32  class ApiQueryLangLinks extends ApiQueryBase {
  33  
  34  	public function __construct( ApiQuery $query, $moduleName ) {
  35          parent::__construct( $query, $moduleName, 'll' );
  36      }
  37  
  38  	public function execute() {
  39          if ( $this->getPageSet()->getGoodTitleCount() == 0 ) {
  40              return;
  41          }
  42  
  43          $params = $this->extractRequestParams();
  44          $prop = array_flip( (array)$params['prop'] );
  45  
  46          if ( isset( $params['title'] ) && !isset( $params['lang'] ) ) {
  47              $this->dieUsageMsg( array( 'missingparam', 'lang' ) );
  48          }
  49  
  50          // Handle deprecated param
  51          $this->requireMaxOneParameter( $params, 'url', 'prop' );
  52          if ( $params['url'] ) {
  53              $this->logFeatureUsage( 'prop=langlinks&llurl' );
  54              $prop = array( 'url' => 1 );
  55          }
  56  
  57          $this->addFields( array(
  58              'll_from',
  59              'll_lang',
  60              'll_title'
  61          ) );
  62  
  63          $this->addTables( 'langlinks' );
  64          $this->addWhereFld( 'll_from', array_keys( $this->getPageSet()->getGoodTitles() ) );
  65          if ( !is_null( $params['continue'] ) ) {
  66              $cont = explode( '|', $params['continue'] );
  67              $this->dieContinueUsageIf( count( $cont ) != 2 );
  68              $op = $params['dir'] == 'descending' ? '<' : '>';
  69              $llfrom = intval( $cont[0] );
  70              $lllang = $this->getDB()->addQuotes( $cont[1] );
  71              $this->addWhere(
  72                  "ll_from $op $llfrom OR " .
  73                  "(ll_from = $llfrom AND " .
  74                  "ll_lang $op= $lllang)"
  75              );
  76          }
  77  
  78          //FIXME: (follow-up) To allow extensions to add to the language links, we need
  79          //       to load them all, add the extra links, then apply paging.
  80          //       Should not be terrible, it's not going to be more than a few hundred links.
  81  
  82          // Note that, since (ll_from, ll_lang) is a unique key, we don't need
  83          // to sort by ll_title to ensure deterministic ordering.
  84          $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
  85          if ( isset( $params['lang'] ) ) {
  86              $this->addWhereFld( 'll_lang', $params['lang'] );
  87              if ( isset( $params['title'] ) ) {
  88                  $this->addWhereFld( 'll_title', $params['title'] );
  89              }
  90              $this->addOption( 'ORDER BY', 'll_from' . $sort );
  91          } else {
  92              // Don't order by ll_from if it's constant in the WHERE clause
  93              if ( count( $this->getPageSet()->getGoodTitles() ) == 1 ) {
  94                  $this->addOption( 'ORDER BY', 'll_lang' . $sort );
  95              } else {
  96                  $this->addOption( 'ORDER BY', array(
  97                      'll_from' . $sort,
  98                      'll_lang' . $sort
  99                  ) );
 100              }
 101          }
 102  
 103          $this->addOption( 'LIMIT', $params['limit'] + 1 );
 104          $res = $this->select( __METHOD__ );
 105  
 106          $count = 0;
 107          foreach ( $res as $row ) {
 108              if ( ++$count > $params['limit'] ) {
 109                  // We've reached the one extra which shows that
 110                  // there are additional pages to be had. Stop here...
 111                  $this->setContinueEnumParameter( 'continue', "{$row->ll_from}|{$row->ll_lang}" );
 112                  break;
 113              }
 114              $entry = array( 'lang' => $row->ll_lang );
 115              if ( isset( $prop['url'] ) ) {
 116                  $title = Title::newFromText( "{$row->ll_lang}:{$row->ll_title}" );
 117                  if ( $title ) {
 118                      $entry['url'] = wfExpandUrl( $title->getFullURL(), PROTO_CURRENT );
 119                  }
 120              }
 121              if ( isset( $prop['langname'] ) ) {
 122                  $entry['langname'] = Language::fetchLanguageName( $row->ll_lang, $params['inlanguagecode'] );
 123              }
 124              if ( isset( $prop['autonym'] ) ) {
 125                  $entry['autonym'] = Language::fetchLanguageName( $row->ll_lang );
 126              }
 127              ApiResult::setContent( $entry, $row->ll_title );
 128              $fit = $this->addPageSubItem( $row->ll_from, $entry );
 129              if ( !$fit ) {
 130                  $this->setContinueEnumParameter( 'continue', "{$row->ll_from}|{$row->ll_lang}" );
 131                  break;
 132              }
 133          }
 134      }
 135  
 136  	public function getCacheMode( $params ) {
 137          return 'public';
 138      }
 139  
 140  	public function getAllowedParams() {
 141          global $wgContLang;
 142          return array(
 143              'limit' => array(
 144                  ApiBase::PARAM_DFLT => 10,
 145                  ApiBase::PARAM_TYPE => 'limit',
 146                  ApiBase::PARAM_MIN => 1,
 147                  ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
 148                  ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
 149              ),
 150              'continue' => null,
 151              'url' => array(
 152                  ApiBase::PARAM_DFLT => false,
 153                  ApiBase::PARAM_DEPRECATED => true,
 154              ),
 155              'prop' => array(
 156                  ApiBase::PARAM_ISMULTI => true,
 157                  ApiBase::PARAM_TYPE => array(
 158                      'url',
 159                      'langname',
 160                      'autonym',
 161                  )
 162              ),
 163              'lang' => null,
 164              'title' => null,
 165              'dir' => array(
 166                  ApiBase::PARAM_DFLT => 'ascending',
 167                  ApiBase::PARAM_TYPE => array(
 168                      'ascending',
 169                      'descending'
 170                  )
 171              ),
 172              'inlanguagecode' => $wgContLang->getCode(),
 173          );
 174      }
 175  
 176  	public function getParamDescription() {
 177          return array(
 178              'limit' => 'How many langlinks to return',
 179              'continue' => 'When more results are available, use this to continue',
 180              'url' => "Whether to get the full URL (Cannot be used with {$this->getModulePrefix()}prop)",
 181              'prop' => array(
 182                  'Which additional properties to get for each interlanguage link',
 183                  ' url      - Adds the full URL',
 184                  ' langname - Adds the localised language name (best effort, use CLDR extension)',
 185                  "            Use {$this->getModulePrefix()}inlanguagecode to control the language",
 186                  ' autonym  - Adds the native language name',
 187              ),
 188              'lang' => 'Language code',
 189              'title' => "Link to search for. Must be used with {$this->getModulePrefix()}lang",
 190              'dir' => 'The direction in which to list',
 191              'inlanguagecode' => 'Language code for localised language names',
 192          );
 193      }
 194  
 195  	public function getDescription() {
 196          return 'Returns all interlanguage links from the given page(s).';
 197      }
 198  
 199  	public function getExamples() {
 200          return array(
 201              'api.php?action=query&prop=langlinks&titles=Main%20Page&redirects='
 202                  => 'Get interlanguage links from the [[Main Page]]',
 203          );
 204      }
 205  
 206  	public function getHelpUrls() {
 207          return 'https://www.mediawiki.org/wiki/API:Properties#langlinks_.2F_ll';
 208      }
 209  }


Generated: Fri Nov 28 14:03:12 2014 Cross-referenced by PHPXref 0.7.1