Merge "Move up devunt's name to Developers"
[lhc/web/wiklou.git] / includes / api / ApiQueryExternalLinks.php
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 external URLs found on a given set of pages.
29 *
30 * @ingroup API
31 */
32 class ApiQueryExternalLinks extends ApiQueryBase {
33
34 public function __construct( ApiQuery $query, $moduleName ) {
35 parent::__construct( $query, $moduleName, 'el' );
36 }
37
38 public function execute() {
39 if ( $this->getPageSet()->getGoodTitleCount() == 0 ) {
40 return;
41 }
42
43 $params = $this->extractRequestParams();
44
45 $query = $params['query'];
46 $protocol = ApiQueryExtLinksUsage::getProtocolPrefix( $params['protocol'] );
47
48 $this->addFields( [
49 'el_from',
50 'el_to'
51 ] );
52
53 $this->addTables( 'externallinks' );
54 $this->addWhereFld( 'el_from', array_keys( $this->getPageSet()->getGoodTitles() ) );
55
56 $whereQuery = $this->prepareUrlQuerySearchString( $query, $protocol );
57
58 if ( $whereQuery !== null ) {
59 $this->addWhere( $whereQuery );
60 }
61
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' );
65 }
66
67 // If we're querying all protocols, use DISTINCT to avoid repeating protocol-relative links twice
68 if ( $protocol === null ) {
69 $this->addOption( 'DISTINCT' );
70 }
71
72 $this->addOption( 'LIMIT', $params['limit'] + 1 );
73 $offset = isset( $params['offset'] ) ? $params['offset'] : 0;
74 if ( $offset ) {
75 $this->addOption( 'OFFSET', $params['offset'] );
76 }
77
78 $res = $this->select( __METHOD__ );
79
80 $count = 0;
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'] );
86 break;
87 }
88 $entry = [];
89 $to = $row->el_to;
90 // expand protocol-relative urls
91 if ( $params['expandurl'] ) {
92 $to = wfExpandUrl( $to, PROTO_CANONICAL );
93 }
94 ApiResult::setContentValue( $entry, 'url', $to );
95 $fit = $this->addPageSubItem( $row->el_from, $entry );
96 if ( !$fit ) {
97 $this->setContinueEnumParameter( 'offset', $offset + $count - 1 );
98 break;
99 }
100 }
101 }
102
103 public function getCacheMode( $params ) {
104 return 'public';
105 }
106
107 public function getAllowedParams() {
108 return [
109 'limit' => [
110 ApiBase::PARAM_DFLT => 10,
111 ApiBase::PARAM_TYPE => 'limit',
112 ApiBase::PARAM_MIN => 1,
113 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
114 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
115 ],
116 'offset' => [
117 ApiBase::PARAM_TYPE => 'integer',
118 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
119 ],
120 'protocol' => [
121 ApiBase::PARAM_TYPE => ApiQueryExtLinksUsage::prepareProtocols(),
122 ApiBase::PARAM_DFLT => '',
123 ],
124 'query' => null,
125 'expandurl' => false,
126 ];
127 }
128
129 protected function getExamplesMessages() {
130 return [
131 'action=query&prop=extlinks&titles=Main%20Page'
132 => 'apihelp-query+extlinks-example-simple',
133 ];
134 }
135
136 public function getHelpUrls() {
137 return 'https://www.mediawiki.org/wiki/API:Extlinks';
138 }
139 }