Merge "mw.Feedback: If the message is posted remotely, link the title correctly"
[lhc/web/wiklou.git] / includes / specials / SpecialDeletedContributions.php
1 <?php
2 /**
3 * Implements Special:DeletedContributions
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup SpecialPage
22 */
23
24 use MediaWiki\MediaWikiServices;
25
26 /**
27 * Implements Special:DeletedContributions to display archived revisions
28 * @ingroup SpecialPage
29 */
30 class DeletedContributionsPage extends SpecialPage {
31 /** @var FormOptions */
32 protected $mOpts;
33
34 function __construct() {
35 parent::__construct( 'DeletedContributions', 'deletedhistory' );
36 }
37
38 /**
39 * Special page "deleted user contributions".
40 * Shows a list of the deleted contributions of a user.
41 *
42 * @param string $par (optional) user name of the user for which to show the contributions
43 */
44 function execute( $par ) {
45 $this->setHeaders();
46 $this->outputHeader();
47 $this->checkPermissions();
48
49 $user = $this->getUser();
50
51 $out = $this->getOutput();
52 $out->setPageTitle( $this->msg( 'deletedcontributions-title' ) );
53
54 $opts = new FormOptions();
55
56 $opts->add( 'target', '' );
57 $opts->add( 'namespace', '' );
58 $opts->add( 'limit', 20 );
59
60 $opts->fetchValuesFromRequest( $this->getRequest() );
61 $opts->validateIntBounds( 'limit', 0, $this->getConfig()->get( 'QueryPageDefaultLimit' ) );
62
63 if ( $par !== null ) {
64 $opts->setValue( 'target', $par );
65 }
66
67 $ns = $opts->getValue( 'namespace' );
68 if ( $ns !== null && $ns !== '' ) {
69 $opts->setValue( 'namespace', intval( $ns ) );
70 }
71
72 $this->mOpts = $opts;
73
74 $target = $opts->getValue( 'target' );
75 if ( !strlen( $target ) ) {
76 $this->getForm();
77
78 return;
79 }
80
81 $userObj = User::newFromName( $target, false );
82 if ( !$userObj ) {
83 $this->getForm();
84
85 return;
86 }
87 $this->getSkin()->setRelevantUser( $userObj );
88
89 $target = $userObj->getName();
90 $out->addSubtitle( $this->getSubTitle( $userObj ) );
91
92 $this->getForm();
93
94 $pager = new DeletedContribsPager( $this->getContext(), $target, $opts->getValue( 'namespace' ) );
95 if ( !$pager->getNumRows() ) {
96 $out->addWikiMsg( 'nocontribs' );
97
98 return;
99 }
100
101 # Show a message about replica DB lag, if applicable
102 $lb = MediaWikiServices::getInstance()->getDBLoadBalancer();
103 $lag = $lb->safeGetLag( $pager->getDatabase() );
104 if ( $lag > 0 ) {
105 $out->showLagWarning( $lag );
106 }
107
108 $out->addHTML(
109 '<p>' . $pager->getNavigationBar() . '</p>' .
110 $pager->getBody() .
111 '<p>' . $pager->getNavigationBar() . '</p>' );
112
113 # If there were contributions, and it was a valid user or IP, show
114 # the appropriate "footer" message - WHOIS tools, etc.
115 if ( $target != 'newbies' ) {
116 $message = IP::isIPAddress( $target ) ?
117 'sp-contributions-footer-anon' :
118 'sp-contributions-footer';
119
120 if ( !$this->msg( $message )->isDisabled() ) {
121 $out->wrapWikiMsg(
122 "<div class='mw-contributions-footer'>\n$1\n</div>",
123 [ $message, $target ]
124 );
125 }
126 }
127 }
128
129 /**
130 * Generates the subheading with links
131 * @param User $userObj User object for the target
132 * @return string Appropriately-escaped HTML to be output literally
133 */
134 function getSubTitle( $userObj ) {
135 $linkRenderer = $this->getLinkRenderer();
136 if ( $userObj->isAnon() ) {
137 $user = htmlspecialchars( $userObj->getName() );
138 } else {
139 $user = $linkRenderer->makeLink( $userObj->getUserPage(), $userObj->getName() );
140 }
141 $links = '';
142 $nt = $userObj->getUserPage();
143 $talk = $nt->getTalkPage();
144 if ( $talk ) {
145 $tools = SpecialContributions::getUserLinks( $this, $userObj );
146
147 # Link to contributions
148 $insert['contribs'] = $linkRenderer->makeKnownLink(
149 SpecialPage::getTitleFor( 'Contributions', $nt->getDBkey() ),
150 $this->msg( 'sp-deletedcontributions-contribs' )->text()
151 );
152
153 // Swap out the deletedcontribs link for our contribs one
154 $tools = wfArrayInsertAfter( $tools, $insert, 'deletedcontribs' );
155 unset( $tools['deletedcontribs'] );
156
157 $links = $this->getLanguage()->pipeList( $tools );
158
159 // Show a note if the user is blocked and display the last block log entry.
160 $block = Block::newFromTarget( $userObj, $userObj );
161 if ( !is_null( $block ) && $block->getType() != Block::TYPE_AUTO ) {
162 if ( $block->getType() == Block::TYPE_RANGE ) {
163 $nt = MWNamespace::getCanonicalName( NS_USER ) . ':' . $block->getTarget();
164 }
165
166 // LogEventsList::showLogExtract() wants the first parameter by ref
167 $out = $this->getOutput();
168 LogEventsList::showLogExtract(
169 $out,
170 'block',
171 $nt,
172 '',
173 [
174 'lim' => 1,
175 'showIfEmpty' => false,
176 'msgKey' => [
177 'sp-contributions-blocked-notice',
178 $userObj->getName() # Support GENDER in 'sp-contributions-blocked-notice'
179 ],
180 'offset' => '' # don't use $this->getRequest() parameter offset
181 ]
182 );
183 }
184 }
185
186 return $this->msg( 'contribsub2' )->rawParams( $user, $links )->params( $userObj->getName() );
187 }
188
189 /**
190 * Generates the namespace selector form with hidden attributes.
191 */
192 function getForm() {
193 $opts = $this->mOpts;
194
195 $formDescriptor = [
196 'target' => [
197 'type' => 'user',
198 'name' => 'target',
199 'label-message' => 'sp-contributions-username',
200 'default' => $opts->getValue( 'target' ),
201 'ipallowed' => true,
202 ],
203
204 'namespace' => [
205 'type' => 'namespaceselect',
206 'name' => 'namespace',
207 'label-message' => 'namespace',
208 'all' => '',
209 ],
210 ];
211
212 HTMLForm::factory( 'ooui', $formDescriptor, $this->getContext() )
213 ->setWrapperLegendMsg( 'sp-contributions-search' )
214 ->setSubmitTextMsg( 'sp-contributions-submit' )
215 // prevent setting subpage and 'target' parameter at the same time
216 ->setAction( $this->getPageTitle()->getLocalURL() )
217 ->setMethod( 'get' )
218 ->prepareForm()
219 ->displayForm( false );
220 }
221
222 /**
223 * Return an array of subpages beginning with $search that this special page will accept.
224 *
225 * @param string $search Prefix to search for
226 * @param int $limit Maximum number of results to return (usually 10)
227 * @param int $offset Number of results to skip (usually 0)
228 * @return string[] Matching subpages
229 */
230 public function prefixSearchSubpages( $search, $limit, $offset ) {
231 $user = User::newFromName( $search );
232 if ( !$user ) {
233 // No prefix suggestion for invalid user
234 return [];
235 }
236 // Autocomplete subpage as user list - public to allow caching
237 return UserNamePrefixSearch::search( 'public', $search, $limit, $offset );
238 }
239
240 protected function getGroupName() {
241 return 'users';
242 }
243 }