33 parent::__construct( $query, $moduleName,
'eu' );
45 $this->
run( $resultPageSet );
52 private function run( $resultPageSet =
null ) {
56 $query = $params[
'query'];
59 $this->
addTables( [
'externallinks',
'page' ] );
60 $this->
addJoinConds( [
'page' => [
'JOIN',
'page_id=el_from' ] ] );
63 if ( $this->
getConfig()->
get(
'MiserMode' ) ) {
64 $miser_ns = $params[
'namespace'] ?: [];
66 $this->
addWhereFld(
'page_namespace', $params[
'namespace'] );
71 if ( $query !==
null && $query !==
'' ) {
72 if ( $protocol ===
null ) {
73 $protocol =
'http://';
81 'oneWildcard' =>
true,
88 if ( !isset( $conds[
'el_index_60'] ) ) {
89 $orderBy[] =
'el_index_60';
92 $orderBy[] =
'el_index_60';
94 if ( $protocol !==
null ) {
95 $this->
addWhere(
'el_index_60' . $db->buildLike(
"$protocol", $db->anyString() ) );
99 'el_to NOT' . $db->buildLike(
'//', $db->anyString() ),
100 'el_index_60 ' . $db->buildLike(
'http://', $db->anyString() ),
105 $orderBy[] =
'el_id';
106 $this->
addOption(
'ORDER BY', $orderBy );
109 $prop = array_fill_keys( $params[
'prop'],
true );
110 $fld_ids = isset( $prop[
'ids'] );
111 $fld_title = isset( $prop[
'title'] );
112 $fld_url = isset( $prop[
'url'] );
114 if ( $resultPageSet ===
null ) {
122 $this->
addFields( $resultPageSet->getPageTableFields() );
125 $limit = $params[
'limit'];
131 if ( $params[
'continue'] !==
null ) {
132 $cont = explode(
'|', $params[
'continue'] );
134 $i = count( $cont ) - 1;
135 $cond = $orderBy[$i] .
' >= ' . $db->addQuotes( rawurldecode( $cont[$i] ) );
137 $field = $orderBy[$i];
138 $v = $db->addQuotes( rawurldecode( $cont[$i] ) );
139 $cond =
"($field > $v OR ($field = $v AND $cond))";
148 if ( $resultPageSet ===
null ) {
153 foreach (
$res as $row ) {
154 if ( ++$count > $limit ) {
161 if ( count( $miser_ns ) && !in_array( $row->page_namespace, $miser_ns ) ) {
165 if ( $resultPageSet ===
null ) {
167 ApiResult::META_TYPE =>
'assoc',
170 $vals[
'pageid'] = (int)$row->page_id;
173 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
179 if ( $params[
'expandurl'] ) {
184 $fit = $result->addValue( [
'query', $this->
getModuleName() ],
null, $vals );
190 $resultPageSet->processDbRow( $row );
194 if ( $resultPageSet ===
null ) {
195 $result->addIndexedTagName( [
'query', $this->
getModuleName() ],
202 foreach ( $orderBy as $field ) {
203 $fields[] = strtr( $row->$field, [
'%' =>
'%25',
'|' =>
'%7C' ] );
239 'expandurl' =>
false,
242 if ( $this->
getConfig()->
get(
'MiserMode' ) ) {
244 'api-help-param-limited-in-miser-mode',
256 $protocols[] = substr( $p, 0, strpos( $p,
':' ) );
268 if ( substr( $p, 0, strlen( $protocol ) ) === $protocol ) {
282 'action=query&list=exturlusage&euquery=www.mediawiki.org'
283 =>
'apihelp-query+exturlusage-example-simple',
288 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Exturlusage';
$wgUrlProtocols
URL schemes that should be recognized as valid by wfParseUrl().
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
dieWithError( $msg, $code=null, $data=null, $httpCode=0)
Abort execution with an error.
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
const PARAM_HELP_MSG_APPEND
((string|array|Message)[]) Specify additional i18n messages to append to the normal message for this ...
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
const LIMIT_BIG1
Fast query, standard limit.
getResult()
Get the result object.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
const LIMIT_BIG2
Fast query, apihighlimits limit.
getModuleName()
Get the name of the module being executed by this instance.
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
addFields( $value)
Add a set of fields to select to the internal array.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
getDB()
Get the Query database connection (read-only)
executeGenderCacheFromResultWrapper(IResultWrapper $res, $fname=__METHOD__, $fieldPrefix='page')
Preprocess the result set to fill the GenderCache with the necessary information before using self::a...
select( $method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
addFieldsIf( $value, $condition)
Same as addFields(), but add the fields only if a condition is met.
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
addWhereFld( $field, $value)
Equivalent to addWhere( [ $field => $value ] )
addWhere( $value)
Add a set of WHERE clauses to the internal array.
executeGenerator( $resultPageSet)
Execute this module as a generator.
setContinue( $orderBy, $row)
getExamplesMessages()
Returns usage examples for this module.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getHelpUrls()
Return links to more detailed help pages about the module.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
static prepareProtocols()
run( $resultPageSet=null)
static getProtocolPrefix( $protocol)
__construct(ApiQuery $query, $moduleName)
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
This is the main query class.
static getQueryConditions( $filterEntry, array $options=[])
Return query conditions which will match the specified string.
static normalizeLinkUrl( $url)
Replace unusual escape codes in a URL with their equivalent characters.