MediaWiki  1.34.0
NewPagesPager.php
Go to the documentation of this file.
1 <?php
26 
28 
32  protected $opts;
33 
37  protected $mForm;
38 
43  public function __construct( $form, FormOptions $opts ) {
44  parent::__construct( $form->getContext() );
45  $this->mForm = $form;
46  $this->opts = $opts;
47  }
48 
49  function getQueryInfo() {
50  $rcQuery = RecentChange::getQueryInfo();
51 
52  $conds = [];
53  $conds['rc_new'] = 1;
54 
55  $username = $this->opts->getValue( 'username' );
56  $user = Title::makeTitleSafe( NS_USER, $username );
57 
58  $size = abs( intval( $this->opts->getValue( 'size' ) ) );
59  if ( $size > 0 ) {
60  if ( $this->opts->getValue( 'size-mode' ) === 'max' ) {
61  $conds[] = 'page_len <= ' . $size;
62  } else {
63  $conds[] = 'page_len >= ' . $size;
64  }
65  }
66 
67  if ( $user ) {
68  $conds[] = ActorMigration::newMigration()->getWhere(
69  $this->mDb, 'rc_user', User::newFromName( $user->getText(), false ), false
70  )['conds'];
71  } elseif ( MediaWikiServices::getInstance()
73  ->groupHasPermission( '*', 'createpage' ) &&
74  $this->opts->getValue( 'hideliu' )
75  ) {
76  # If anons cannot make new pages, don't "exclude logged in users"!
77  $conds[] = ActorMigration::newMigration()->isAnon( $rcQuery['fields']['rc_user'] );
78  }
79 
80  $conds = array_merge( $conds, $this->getNamespaceCond() );
81 
82  # If this user cannot see patrolled edits or they are off, don't do dumb queries!
83  if ( $this->opts->getValue( 'hidepatrolled' ) && $this->getUser()->useNPPatrol() ) {
84  $conds['rc_patrolled'] = RecentChange::PRC_UNPATROLLED;
85  }
86 
87  if ( $this->opts->getValue( 'hidebots' ) ) {
88  $conds['rc_bot'] = 0;
89  }
90 
91  if ( $this->opts->getValue( 'hideredirs' ) ) {
92  $conds['page_is_redirect'] = 0;
93  }
94 
95  // Allow changes to the New Pages query
96  $tables = array_merge( $rcQuery['tables'], [ 'page' ] );
97  $fields = array_merge( $rcQuery['fields'], [
98  'length' => 'page_len', 'rev_id' => 'page_latest', 'page_namespace', 'page_title'
99  ] );
100  $join_conds = [ 'page' => [ 'JOIN', 'page_id=rc_cur_id' ] ] + $rcQuery['joins'];
101 
102  // Avoid PHP 7.1 warning from passing $this by reference
103  $pager = $this;
104  Hooks::run( 'SpecialNewpagesConditions',
105  [ &$pager, $this->opts, &$conds, &$tables, &$fields, &$join_conds ] );
106 
107  $info = [
108  'tables' => $tables,
109  'fields' => $fields,
110  'conds' => $conds,
111  'options' => [],
112  'join_conds' => $join_conds
113  ];
114 
115  // Modify query for tags
117  $info['tables'],
118  $info['fields'],
119  $info['conds'],
120  $info['join_conds'],
121  $info['options'],
122  $this->opts['tagfilter']
123  );
124 
125  return $info;
126  }
127 
128  // Based on ContribsPager.php
129  function getNamespaceCond() {
130  $namespace = $this->opts->getValue( 'namespace' );
131  if ( $namespace === 'all' || $namespace === '' ) {
132  return [];
133  }
134 
135  $namespace = intval( $namespace );
136  $invert = $this->opts->getValue( 'invert' );
137  $associated = $this->opts->getValue( 'associated' );
138 
139  $eq_op = $invert ? '!=' : '=';
140  $bool_op = $invert ? 'AND' : 'OR';
141 
142  $selectedNS = $this->mDb->addQuotes( $namespace );
143  if ( !$associated ) {
144  return [ "rc_namespace $eq_op $selectedNS" ];
145  }
146 
147  $associatedNS = $this->mDb->addQuotes(
148  MediaWikiServices::getInstance()->getNamespaceInfo()->getAssociated( $namespace )
149  );
150  return [
151  "rc_namespace $eq_op $selectedNS " .
152  $bool_op .
153  " rc_namespace $eq_op $associatedNS"
154  ];
155  }
156 
157  function getIndexField() {
158  return 'rc_timestamp';
159  }
160 
161  function formatRow( $row ) {
162  return $this->mForm->formatRow( $row );
163  }
164 
165  protected function getStartBody() {
166  # Do a batch existence check on pages
167  $linkBatch = new LinkBatch();
168  foreach ( $this->mResult as $row ) {
169  $linkBatch->add( NS_USER, $row->rc_user_text );
170  $linkBatch->add( NS_USER_TALK, $row->rc_user_text );
171  $linkBatch->add( $row->page_namespace, $row->page_title );
172  }
173  $linkBatch->execute();
174 
175  return '<ul>';
176  }
177 
178  protected function getEndBody() {
179  return '</ul>';
180  }
181 }
RecentChange\getQueryInfo
static getQueryInfo()
Return the tables, fields, and join conditions to be selected to create a new recentchanges object.
Definition: RecentChange.php:233
NewPagesPager\getIndexField
getIndexField()
This function should be overridden to return the name of the index fi- eld.
Definition: NewPagesPager.php:157
NewPagesPager\$opts
FormOptions $opts
Definition: NewPagesPager.php:32
LinkBatch
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition: LinkBatch.php:34
MediaWiki\MediaWikiServices
MediaWikiServices is the service locator for the application scope of MediaWiki.
Definition: MediaWikiServices.php:117
NewPagesPager\getStartBody
getStartBody()
Hook into getBody(), allows text to be inserted at the start.
Definition: NewPagesPager.php:165
NewPagesPager\getNamespaceCond
getNamespaceCond()
Definition: NewPagesPager.php:129
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:515
NewPagesPager\getEndBody
getEndBody()
Hook into getBody() for the end of the list.
Definition: NewPagesPager.php:178
ContextSource\getUser
getUser()
Definition: ContextSource.php:120
ActorMigration\newMigration
static newMigration()
Static constructor.
Definition: ActorMigration.php:136
ChangeTags\modifyDisplayQuery
static modifyDisplayQuery(&$tables, &$fields, &$conds, &$join_conds, &$options, $filter_tag='')
Applies all tags-related changes to a query.
Definition: ChangeTags.php:772
NewPagesPager\getQueryInfo
getQueryInfo()
This function should be overridden to provide all parameters needed for the main paged query.
Definition: NewPagesPager.php:49
getPermissionManager
getPermissionManager()
Title\makeTitleSafe
static makeTitleSafe( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:613
NS_USER_TALK
const NS_USER_TALK
Definition: Defines.php:63
NewPagesPager\formatRow
formatRow( $row)
Abstract formatting function.
Definition: NewPagesPager.php:161
NewPagesPager
Definition: NewPagesPager.php:27
SpecialNewpages
A special page that list newly created pages.
Definition: SpecialNewpages.php:31
RecentChange\PRC_UNPATROLLED
const PRC_UNPATROLLED
Definition: RecentChange.php:79
NewPagesPager\__construct
__construct( $form, FormOptions $opts)
Definition: NewPagesPager.php:43
NS_USER
const NS_USER
Definition: Defines.php:62
ReverseChronologicalPager
Efficient paging for SQL queries.
Definition: ReverseChronologicalPager.php:28
FormOptions
Helper class to keep track of options when mixing links and form elements.
Definition: FormOptions.php:35
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:200
NewPagesPager\$mForm
SpecialNewpages $mForm
Definition: NewPagesPager.php:37