MediaWiki  1.29.2
ImageHistoryPseudoPager.php
Go to the documentation of this file.
1 <?php
22  protected $preventClickjacking = false;
23 
27  protected $mImg;
28 
32  protected $mTitle;
33 
38  public $mImagePage;
39 
44  public $mHist;
45 
50  public $mRange;
51 
55  public function __construct( $imagePage ) {
56  parent::__construct( $imagePage->getContext() );
57  $this->mImagePage = $imagePage;
58  $this->mTitle = clone $imagePage->getTitle();
59  $this->mTitle->setFragment( '#filehistory' );
60  $this->mImg = null;
61  $this->mHist = [];
62  $this->mRange = [ 0, 0 ]; // display range
63 
64  // Only display 10 revisions at once by default, otherwise the list is overwhelming
65  $this->mLimitsShown = array_merge( [ 10 ], $this->mLimitsShown );
66  $this->mDefaultLimit = 10;
67  list( $this->mLimit, /* $offset */ ) =
68  $this->mRequest->getLimitOffset( $this->mDefaultLimit, '' );
69  }
70 
74  public function getTitle() {
75  return $this->mTitle;
76  }
77 
78  public function getQueryInfo() {
79  return false;
80  }
81 
85  public function getIndexField() {
86  return '';
87  }
88 
93  public function formatRow( $row ) {
94  return '';
95  }
96 
100  public function getBody() {
101  $s = '';
102  $this->doQuery();
103  if ( count( $this->mHist ) ) {
104  if ( $this->mImg->isLocal() ) {
105  // Do a batch existence check for user pages and talkpages
106  $linkBatch = new LinkBatch();
107  for ( $i = $this->mRange[0]; $i <= $this->mRange[1]; $i++ ) {
108  $file = $this->mHist[$i];
109  $user = $file->getUser( 'text' );
110  $linkBatch->add( NS_USER, $user );
111  $linkBatch->add( NS_USER_TALK, $user );
112  }
113  $linkBatch->execute();
114  }
115 
116  $list = new ImageHistoryList( $this->mImagePage );
117  # Generate prev/next links
118  $navLink = $this->getNavigationBar();
119  $s = $list->beginImageHistoryList( $navLink );
120  // Skip rows there just for paging links
121  for ( $i = $this->mRange[0]; $i <= $this->mRange[1]; $i++ ) {
122  $file = $this->mHist[$i];
123  $s .= $list->imageHistoryLine( !$file->isOld(), $file );
124  }
125  $s .= $list->endImageHistoryList( $navLink );
126 
127  if ( $list->getPreventClickjacking() ) {
128  $this->preventClickjacking();
129  }
130  }
131  return $s;
132  }
133 
134  public function doQuery() {
135  if ( $this->mQueryDone ) {
136  return;
137  }
138  $this->mImg = $this->mImagePage->getPage()->getFile(); // ensure loading
139  if ( !$this->mImg->exists() ) {
140  return;
141  }
142  $queryLimit = $this->mLimit + 1; // limit plus extra row
143  if ( $this->mIsBackwards ) {
144  // Fetch the file history
145  $this->mHist = $this->mImg->getHistory( $queryLimit, null, $this->mOffset, false );
146  // The current rev may not meet the offset/limit
147  $numRows = count( $this->mHist );
148  if ( $numRows <= $this->mLimit && $this->mImg->getTimestamp() > $this->mOffset ) {
149  $this->mHist = array_merge( [ $this->mImg ], $this->mHist );
150  }
151  } else {
152  // The current rev may not meet the offset
153  if ( !$this->mOffset || $this->mImg->getTimestamp() < $this->mOffset ) {
154  $this->mHist[] = $this->mImg;
155  }
156  // Old image versions (fetch extra row for nav links)
157  $oiLimit = count( $this->mHist ) ? $this->mLimit : $this->mLimit + 1;
158  // Fetch the file history
159  $this->mHist = array_merge( $this->mHist,
160  $this->mImg->getHistory( $oiLimit, $this->mOffset, null, false ) );
161  }
162  $numRows = count( $this->mHist ); // Total number of query results
163  if ( $numRows ) {
164  # Index value of top item in the list
165  $firstIndex = $this->mIsBackwards ?
166  $this->mHist[$numRows - 1]->getTimestamp() : $this->mHist[0]->getTimestamp();
167  # Discard the extra result row if there is one
168  if ( $numRows > $this->mLimit && $numRows > 1 ) {
169  if ( $this->mIsBackwards ) {
170  # Index value of item past the index
171  $this->mPastTheEndIndex = $this->mHist[0]->getTimestamp();
172  # Index value of bottom item in the list
173  $lastIndex = $this->mHist[1]->getTimestamp();
174  # Display range
175  $this->mRange = [ 1, $numRows - 1 ];
176  } else {
177  # Index value of item past the index
178  $this->mPastTheEndIndex = $this->mHist[$numRows - 1]->getTimestamp();
179  # Index value of bottom item in the list
180  $lastIndex = $this->mHist[$numRows - 2]->getTimestamp();
181  # Display range
182  $this->mRange = [ 0, $numRows - 2 ];
183  }
184  } else {
185  # Setting indexes to an empty string means that they will be
186  # omitted if they would otherwise appear in URLs. It just so
187  # happens that this is the right thing to do in the standard
188  # UI, in all the relevant cases.
189  $this->mPastTheEndIndex = '';
190  # Index value of bottom item in the list
191  $lastIndex = $this->mIsBackwards ?
192  $this->mHist[0]->getTimestamp() : $this->mHist[$numRows - 1]->getTimestamp();
193  # Display range
194  $this->mRange = [ 0, $numRows - 1 ];
195  }
196  } else {
197  $firstIndex = '';
198  $lastIndex = '';
199  $this->mPastTheEndIndex = '';
200  }
201  if ( $this->mIsBackwards ) {
202  $this->mIsFirst = ( $numRows < $queryLimit );
203  $this->mIsLast = ( $this->mOffset == '' );
204  $this->mLastShown = $firstIndex;
205  $this->mFirstShown = $lastIndex;
206  } else {
207  $this->mIsFirst = ( $this->mOffset == '' );
208  $this->mIsLast = ( $numRows < $queryLimit );
209  $this->mLastShown = $lastIndex;
210  $this->mFirstShown = $firstIndex;
211  }
212  $this->mQueryDone = true;
213  }
214 
218  protected function preventClickjacking( $enable = true ) {
219  $this->preventClickjacking = $enable;
220  }
221 
225  public function getPreventClickjacking() {
227  }
228 
229 }
ImageHistoryPseudoPager\$mImg
File $mImg
Definition: ImageHistoryPseudoPager.php:27
ImageHistoryPseudoPager\$mRange
int[] $mRange
Definition: ImageHistoryPseudoPager.php:50
ImageHistoryPseudoPager\$mImagePage
ImagePage $mImagePage
Definition: ImageHistoryPseudoPager.php:38
LinkBatch
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition: LinkBatch.php:34
ImageHistoryList
Builds the image revision log shown on image pages.
Definition: ImageHistoryList.php:26
ImageHistoryPseudoPager\__construct
__construct( $imagePage)
Definition: ImageHistoryPseudoPager.php:55
captcha-old.count
count
Definition: captcha-old.py:225
$user
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
Definition: hooks.txt:246
$s
$s
Definition: mergeMessageFileList.php:188
ImagePage
Class for viewing MediaWiki file description pages.
Definition: ImagePage.php:30
ImageHistoryPseudoPager\preventClickjacking
preventClickjacking( $enable=true)
Definition: ImageHistoryPseudoPager.php:218
ImageHistoryPseudoPager\formatRow
formatRow( $row)
Definition: ImageHistoryPseudoPager.php:93
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
ImageHistoryPseudoPager\getBody
getBody()
Definition: ImageHistoryPseudoPager.php:100
ImageHistoryPseudoPager\doQuery
doQuery()
Do the query, using information from the object context.
Definition: ImageHistoryPseudoPager.php:134
File
Implements some public methods and some protected utility functions which are required by multiple ch...
Definition: File.php:51
ImageHistoryPseudoPager\$preventClickjacking
$preventClickjacking
Definition: ImageHistoryPseudoPager.php:22
ImageHistoryPseudoPager\getIndexField
getIndexField()
Definition: ImageHistoryPseudoPager.php:85
ImageHistoryPseudoPager\getPreventClickjacking
getPreventClickjacking()
Definition: ImageHistoryPseudoPager.php:225
ImageHistoryPseudoPager\getQueryInfo
getQueryInfo()
This function should be overridden to provide all parameters needed for the main paged query.
Definition: ImageHistoryPseudoPager.php:78
list
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
ImageHistoryPseudoPager\getTitle
getTitle()
Definition: ImageHistoryPseudoPager.php:74
NS_USER_TALK
const NS_USER_TALK
Definition: Defines.php:65
IndexPager\$mOffset
$mOffset
Definition: IndexPager.php:81
ImageHistoryPseudoPager\$mTitle
Title $mTitle
Definition: ImageHistoryPseudoPager.php:32
Title
Represents a title within MediaWiki.
Definition: Title.php:39
ImageHistoryPseudoPager\$mHist
File[] $mHist
Definition: ImageHistoryPseudoPager.php:44
NS_USER
const NS_USER
Definition: Defines.php:64
ReverseChronologicalPager
IndexPager with a formatted navigation bar.
Definition: ReverseChronologicalPager.php:29
ImageHistoryPseudoPager
Definition: ImageHistoryPseudoPager.php:21
ReverseChronologicalPager\getNavigationBar
getNavigationBar()
Definition: ReverseChronologicalPager.php:35