MediaWiki REL1_31
SpecialDeletedContributions.php
Go to the documentation of this file.
1<?php
25
32 protected $mOpts;
33
34 function __construct() {
35 parent::__construct( 'DeletedContributions', 'deletedhistory' );
36 }
37
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
134 function getSubTitle( $userObj ) {
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();
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
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
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}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfArrayInsertAfter(array $array, array $insert, $after)
Insert array into another array after the specified KEY
const TYPE_RANGE
Definition Block.php:85
const TYPE_AUTO
Definition Block.php:86
static newFromTarget( $specificTarget, $vagueTarget=null, $fromMaster=false)
Given a target and the target's type, get an existing Block object if possible.
Definition Block.php:1173
Implements Special:DeletedContributions to display archived revisions.
execute( $par)
Special page "deleted user contributions".
getSubTitle( $userObj)
Generates the subheading with links.
getForm()
Generates the namespace selector form with hidden attributes.
Helper class to keep track of options when mixing links and form elements.
static showLogExtract(&$out, $types=[], $page='', $user='', $param=[])
Show log extract.
MediaWikiServices is the service locator for the application scope of MediaWiki.
static getUserLinks(SpecialPage $sp, User $target)
Links to different places.
Parent class for all special pages.
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getOutput()
Get the OutputPage being used for this instance.
getUser()
Shortcut to get the User executing this instance.
getSkin()
Shortcut to get the skin being used for this instance.
checkPermissions()
Checks if userCanExecute, and if not throws a PermissionsError.
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
getContext()
Gets the context this SpecialPage is executed in.
msg( $key)
Wrapper around wfMessage that sets the current context.
getConfig()
Shortcut to get main config object.
getRequest()
Get the WebRequest being used for this instance.
getLanguage()
Shortcut to get user's language.
MediaWiki Linker LinkRenderer null $linkRenderer
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition User.php:591
const NS_USER
Definition Defines.php:76
null for the local wiki Added in
Definition hooks.txt:1591
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition hooks.txt:864
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 local account $user
Definition hooks.txt:247
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:37
This document describes the state of Postgres support in and is fairly well maintained The main code is very well while extensions are very hit and miss it is probably the most supported database after MySQL Much of the work in making MediaWiki database agnostic came about through the work of creating Postgres but without copying over all the usage comments General notes on the but these can almost always be programmed around *Although Postgres has a true BOOLEAN type
Definition postgres.txt:30