5 * Created on May 13, 2007
7 * Copyright © 2006 Yuri Astrakhan <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 * A query module to list all external URLs found on a given set of pages.
32 class ApiQueryExternalLinks
extends ApiQueryBase
{
34 public function __construct( $query, $moduleName ) {
35 parent
::__construct( $query, $moduleName, 'el' );
38 public function execute() {
39 if ( $this->getPageSet()->getGoodTitleCount() == 0 ) {
43 $params = $this->extractRequestParams();
45 $query = $params['query'];
46 $protocol = ApiQueryExtLinksUsage
::getProtocolPrefix( $params['protocol'] );
48 $this->addFields( array(
53 $this->addTables( 'externallinks' );
54 $this->addWhereFld( 'el_from', array_keys( $this->getPageSet()->getGoodTitles() ) );
56 $whereQuery = $this->prepareUrlQuerySearchString( $query, $protocol );
58 if ( $whereQuery !== null ) {
59 $this->addWhere( $whereQuery );
62 // Don't order by el_from if it's constant in the WHERE clause
63 if ( count( $this->getPageSet()->getGoodTitles() ) != 1 ) {
64 $this->addOption( 'ORDER BY', 'el_from' );
67 // If we're querying all protocols, use DISTINCT to avoid repeating protocol-relative links twice
68 if ( $protocol === null ) {
69 $this->addOption( 'DISTINCT' );
72 $this->addOption( 'LIMIT', $params['limit'] +
1 );
73 $offset = isset( $params['offset'] ) ?
$params['offset'] : 0;
75 $this->addOption( 'OFFSET', $params['offset'] );
78 $res = $this->select( __METHOD__
);
81 foreach ( $res as $row ) {
82 if ( ++
$count > $params['limit'] ) {
83 // We've reached the one extra which shows that
84 // there are additional pages to be had. Stop here...
85 $this->setContinueEnumParameter( 'offset', $offset +
$params['limit'] );
89 // We *could* run this through wfExpandUrl() but I think it's better to output the link verbatim, even if it's protocol-relative --Roan
90 ApiResult
::setContent( $entry, $row->el_to
);
91 $fit = $this->addPageSubItem( $row->el_from
, $entry );
93 $this->setContinueEnumParameter( 'offset', $offset +
$count - 1 );
99 public function getCacheMode( $params ) {
103 public function getAllowedParams() {
106 ApiBase
::PARAM_DFLT
=> 10,
107 ApiBase
::PARAM_TYPE
=> 'limit',
108 ApiBase
::PARAM_MIN
=> 1,
109 ApiBase
::PARAM_MAX
=> ApiBase
::LIMIT_BIG1
,
110 ApiBase
::PARAM_MAX2
=> ApiBase
::LIMIT_BIG2
113 ApiBase
::PARAM_TYPE
=> 'integer'
116 ApiBase
::PARAM_TYPE
=> ApiQueryExtLinksUsage
::prepareProtocols(),
117 ApiBase
::PARAM_DFLT
=> '',
123 public function getParamDescription() {
124 $p = $this->getModulePrefix();
126 'limit' => 'How many links to return',
127 'offset' => 'When more results are available, use this to continue',
129 "Protocol of the url. If empty and {$p}query set, the protocol is http.",
130 "Leave both this and {$p}query empty to list all external links"
132 'query' => 'Search string without protocol. Useful for checking whether a certain page contains a certain external url',
136 public function getDescription() {
137 return 'Returns all external urls (not interwikies) from the given page(s)';
140 public function getPossibleErrors() {
141 return array_merge( parent
::getPossibleErrors(), array(
142 array( 'code' => 'bad_query', 'info' => 'Invalid query' ),
146 public function getExamples() {
148 'api.php?action=query&prop=extlinks&titles=Main%20Page' => 'Get a list of external links on the [[Main Page]]',
152 public function getHelpUrls() {
153 return 'https://www.mediawiki.org/wiki/API:Properties#extlinks_.2F_el';
156 public function getVersion() {
157 return __CLASS__
. ': $Id$';