43 parent::__construct( $query, $moduleName,
'pt' );
52 $this->
run( $resultPageSet );
59 private function run( $resultPageSet =
null ) {
63 $this->
addFields( [
'pt_namespace',
'pt_title',
'pt_timestamp' ] );
65 $prop = array_fill_keys( $params[
'prop'],
true );
66 $this->
addFieldsIf(
'pt_user', isset( $prop[
'user'] ) || isset( $prop[
'userid'] ) );
67 $this->
addFieldsIf(
'pt_expiry', isset( $prop[
'expiry'] ) );
68 $this->
addFieldsIf(
'pt_create_perm', isset( $prop[
'level'] ) );
70 if ( isset( $prop[
'comment'] ) || isset( $prop[
'parsedcomment'] ) ) {
71 $commentQuery = $this->commentStore->getJoin(
'pt_reason' );
72 $this->
addTables( $commentQuery[
'tables'] );
73 $this->
addFields( $commentQuery[
'fields'] );
78 $this->
addWhereFld(
'pt_namespace', $params[
'namespace'] );
79 $this->
addWhereFld(
'pt_create_perm', $params[
'level'] );
82 $this->
addWhereRange(
'pt_namespace', $params[
'dir'],
null,
null );
83 $this->
addWhereRange(
'pt_title', $params[
'dir'],
null,
null );
85 if ( $params[
'continue'] !==
null ) {
86 $cont = explode(
'|', $params[
'continue'] );
88 $op = ( $params[
'dir'] ===
'newer' ?
'>' :
'<' );
90 $continueTimestamp = $db->addQuotes( $db->timestamp( $cont[0] ) );
91 $continueNs = (int)$cont[1];
93 $continueTitle = $db->addQuotes( $cont[2] );
94 $this->
addWhere(
"pt_timestamp $op $continueTimestamp OR " .
95 "(pt_timestamp = $continueTimestamp AND " .
96 "(pt_namespace $op $continueNs OR " .
97 "(pt_namespace = $continueNs AND " .
98 "pt_title $op= $continueTitle)))"
102 if ( isset( $prop[
'user'] ) ) {
110 $this->
addOption(
'LIMIT', $params[
'limit'] + 1 );
113 if ( $resultPageSet ===
null ) {
122 foreach (
$res as $row ) {
123 if ( ++$count > $params[
'limit'] ) {
127 "$row->pt_timestamp|$row->pt_namespace|$row->pt_title"
132 $title = Title::makeTitle( $row->pt_namespace, $row->pt_title );
133 if ( $resultPageSet ===
null ) {
136 if ( isset( $prop[
'timestamp'] ) ) {
137 $vals[
'timestamp'] =
wfTimestamp( TS_ISO_8601, $row->pt_timestamp );
140 if ( isset( $prop[
'user'] ) && $row->user_name !==
null ) {
141 $vals[
'user'] = $row->user_name;
144 if ( isset( $prop[
'userid'] ) || isset( $prop[
'user'] ) ) {
145 $vals[
'userid'] = (int)$row->pt_user;
148 if ( isset( $prop[
'comment'] ) ) {
149 $vals[
'comment'] = $this->commentStore->getComment(
'pt_reason', $row )->text;
152 if ( isset( $prop[
'parsedcomment'] ) ) {
154 $this->commentStore->getComment(
'pt_reason', $row )->text
158 if ( isset( $prop[
'expiry'] ) ) {
159 $vals[
'expiry'] = ApiResult::formatExpiry( $row->pt_expiry );
162 if ( isset( $prop[
'level'] ) ) {
163 $vals[
'level'] = $row->pt_create_perm;
166 $fit = $result->addValue( [
'query', $this->
getModuleName() ],
null, $vals );
169 "$row->pt_timestamp|$row->pt_namespace|$row->pt_title"
178 if ( $resultPageSet ===
null ) {
179 $result->addIndexedTagName(
184 $resultPageSet->populateFromTitles( $titles );
189 if ( $params[
'prop'] !==
null && in_array(
'parsedcomment', $params[
'prop'] ) ) {
191 return 'anon-public-user-private';
250 'action=query&list=protectedtitles'
251 =>
'apihelp-query+protectedtitles-example-simple',
252 'action=query&generator=protectedtitles&gptnamespace=0&prop=linkshere'
253 =>
'apihelp-query+protectedtitles-example-generator',
258 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Protectedtitles';
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
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.
addWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, and an ORDER BY clause to sort in the right direction.
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.
addTimestampWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, similar to addWhereRange, but converts $start and $end t...
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.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
Query module to enumerate all create-protected pages.
getCacheMode( $params)
Get the cache mode for the data generated by 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.
__construct(ApiQuery $query, $moduleName, CommentStore $commentStore)
executeGenerator( $resultPageSet)
Execute this module as a generator.
run( $resultPageSet=null)
CommentStore $commentStore
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
getExamplesMessages()
Returns usage examples for this module.
This is the main query class.
static formatComment( $comment, $title=null, $local=false, $wikiId=null)
This function is called by all recent changes variants, by the page history, and by the user contribu...