40 parent::__construct( $query, $moduleName,
'eu' );
52 $this->run( $resultPageSet );
59 private function run( $resultPageSet =
null ) {
63 $query = $params[
'query'];
64 $protocol = LinkFilter::getProtocolPrefix( $params[
'protocol'] );
66 $this->
addTables( [
'externallinks',
'page' ] );
67 $this->
addJoinConds( [
'page' => [
'JOIN',
'page_id=el_from' ] ] );
70 if ( $this->
getConfig()->
get( MainConfigNames::MiserMode ) ) {
71 $miser_ns = $params[
'namespace'] ?: [];
73 $this->
addWhereFld(
'page_namespace', $params[
'namespace'] );
78 if ( $query !==
null && $query !==
'' ) {
79 $protocol ??=
'http://';
84 $conds = LinkFilter::getQueryConditions( $query, [
86 'oneWildcard' =>
true,
93 if ( !isset( $conds[
'el_index_60'] ) ) {
94 $orderBy[] =
'el_index_60';
97 $orderBy[] =
'el_index_60';
99 if ( $protocol !==
null ) {
100 $this->
addWhere(
'el_index_60' . $db->buildLike(
"$protocol", $db->anyString() ) );
104 'el_to NOT' . $db->buildLike(
'//', $db->anyString() ),
105 'el_index_60 ' . $db->buildLike(
'http://', $db->anyString() ),
110 $orderBy[] =
'el_id';
112 $this->
addOption(
'ORDER BY', $orderBy );
115 $prop = array_fill_keys( $params[
'prop'],
true );
116 $fld_ids = isset( $prop[
'ids'] );
117 $fld_title = isset( $prop[
'title'] );
118 $fld_url = isset( $prop[
'url'] );
120 if ( $resultPageSet ===
null ) {
128 $this->
addFields( $resultPageSet->getPageTableFields() );
131 $limit = $params[
'limit'];
137 if ( $params[
'continue'] !==
null ) {
139 array_fill( 0, count( $orderBy ),
'string' ) );
140 $conds = array_combine( $orderBy, array_map(
'rawurldecode', $cont ) );
141 $this->
addWhere( $db->buildComparison(
'>=', $conds ) );
148 if ( $resultPageSet ===
null ) {
153 foreach (
$res as $row ) {
154 if ( ++$count > $limit ) {
157 $this->setContinue( $orderBy, $row );
161 if ( count( $miser_ns ) && !in_array( $row->page_namespace, $miser_ns ) ) {
165 if ( $resultPageSet ===
null ) {
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 );
186 $this->setContinue( $orderBy, $row );
190 $resultPageSet->processDbRow( $row );
194 if ( $resultPageSet ===
null ) {
195 $result->addIndexedTagName( [
'query', $this->
getModuleName() ],
200 private function setContinue( $orderBy, $row ) {
202 foreach ( $orderBy as $field ) {
203 $fields[] = strtr( $row->$field, [
'%' =>
'%25',
'|' =>
'%7C' ] );
211 ParamValidator::PARAM_ISMULTI =>
true,
212 ParamValidator::PARAM_DEFAULT =>
'ids|title|url',
213 ParamValidator::PARAM_TYPE => [
224 ParamValidator::PARAM_TYPE => LinkFilter::prepareProtocols(),
225 ParamValidator::PARAM_DEFAULT =>
'',
229 ParamValidator::PARAM_ISMULTI =>
true,
230 ParamValidator::PARAM_TYPE =>
'namespace'
233 ParamValidator::PARAM_DEFAULT => 10,
234 ParamValidator::PARAM_TYPE =>
'limit',
235 IntegerDef::PARAM_MIN => 1,
239 'expandurl' =>
false,
242 if ( $this->
getConfig()->
get( MainConfigNames::MiserMode ) ) {
244 'api-help-param-limited-in-miser-mode',
253 'action=query&list=exturlusage&euquery=www.mediawiki.org'
254 =>
'apihelp-query+exturlusage-example-simple',
259 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Exturlusage';
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).
const PARAM_HELP_MSG_APPEND
((string|array|Message)[]) Specify additional i18n messages to append to the normal message for this ...
parseContinueParamOrDie(string $continue, array $types)
Parse the 'continue' parameter in the usual format and validate the types of each part,...
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, or 'string' with PARAM_ISMULTI,...
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.
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.
__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.
const META_TYPE
Key for the 'type' metadata item.
A class containing constants representing the names of configuration variables.
static normalizeLinkUrl( $url)
Replace unusual escape codes in a URL with their equivalent characters.