Go to the documentation of this file.
31 parent::__construct( $query, $moduleName,
'el' );
35 if ( $this->
getPageSet()->getGoodTitleCount() == 0 ) {
42 $query = $params[
'query'];
56 if ( count( $this->
getPageSet()->getGoodTitles() ) != 1 ) {
57 $orderBy[] =
'el_from';
60 if ( $query !==
null && $query !==
'' ) {
61 if ( $protocol ===
null ) {
62 $protocol =
'http://';
66 $query = Parser::normalizeLinkUrl( $protocol . $query );
70 'oneWildcard' =>
true,
77 if ( !isset( $conds[
'el_index_60'] ) ) {
78 $orderBy[] =
'el_index_60';
81 $orderBy[] =
'el_index_60';
83 if ( $protocol !==
null ) {
84 $this->
addWhere(
'el_index_60' . $db->buildLike(
"$protocol", $db->anyString() ) );
88 'el_to NOT' . $db->buildLike(
'//', $db->anyString() ),
89 'el_index_60 ' . $db->buildLike(
'http://', $db->anyString() ),
98 $this->
addOption(
'LIMIT', $params[
'limit'] + 1 );
100 if ( $params[
'continue'] !==
null ) {
101 $cont = explode(
'|', $params[
'continue'] );
103 $i = count( $cont ) - 1;
104 $cond = $orderBy[$i] .
' >= ' . $db->addQuotes( rawurldecode( $cont[$i] ) );
106 $field = $orderBy[$i];
107 $v = $db->addQuotes( rawurldecode( $cont[$i] ) );
108 $cond =
"($field > $v OR ($field = $v AND $cond))";
116 foreach (
$res as $row ) {
117 if ( ++$count > $params[
'limit'] ) {
126 if ( $params[
'expandurl'] ) {
140 foreach ( $orderBy as $field ) {
141 $fields[] = strtr( $row->$field, [
'%' =>
'%25',
'|' =>
'%7C' ] );
167 'expandurl' =>
false,
173 'action=query&prop=extlinks&titles=Main%20Page'
174 =>
'apihelp-query+extlinks-example-simple',
179 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Extlinks';
__construct(ApiQuery $query, $moduleName)
addFields( $value)
Add a set of fields to select to the internal array.
This is the main query class.
static getQueryConditions( $filterEntry, array $options=[])
Return query conditions which will match the specified string.
getExamplesMessages()
Returns usage examples for this module.
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
static setContentValue(array &$arr, $name, $value, $flags=0)
Add an output value to the array by name and mark as META_CONTENT.
static prepareProtocols()
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
This is a base class for all Query modules.
const LIMIT_BIG1
Fast query, standard limit.
getDB()
Get the Query database connection (read-only)
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
select( $method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
getHelpUrls()
Return links to more detailed help pages about the module.
addWhereFld( $field, $value)
Equivalent to addWhere( [ $field => $value ] )
getPageSet()
Get the PageSet object to work on.
const LIMIT_BIG2
Fast query, apihighlimits limit.
A query module to list all external URLs found on a given set of pages.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right,...
addWhere( $value)
Add a set of WHERE clauses to the internal array.
setContinueEnumParameter( $paramName, $paramValue)
Set a query-continue value.
addPageSubItem( $pageId, $item, $elemname=null)
Same as addPageSubItems(), but one element of $data at a time.
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
static getProtocolPrefix( $protocol)
setContinue( $orderBy, $row)