MediaWiki  1.32.0
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  // Beautify the username
65  $par = User::getCanonicalName( $par, false );
66  $opts->setValue( 'target', (string)$par );
67  }
68 
69  $ns = $opts->getValue( 'namespace' );
70  if ( $ns !== null && $ns !== '' ) {
71  $opts->setValue( 'namespace', intval( $ns ) );
72  }
73 
74  $this->mOpts = $opts;
75 
76  $target = trim( $opts->getValue( 'target' ) );
77  if ( !strlen( $target ) ) {
78  $this->getForm();
79 
80  return;
81  }
82 
83  $userObj = User::newFromName( $target, false );
84  if ( !$userObj ) {
85  $this->getForm();
86 
87  return;
88  }
89  $this->getSkin()->setRelevantUser( $userObj );
90 
91  $target = $userObj->getName();
92  $out->addSubtitle( $this->getSubTitle( $userObj ) );
93 
94  $this->getForm();
95 
96  $pager = new DeletedContribsPager( $this->getContext(), $target, $opts->getValue( 'namespace' ) );
97  if ( !$pager->getNumRows() ) {
98  $out->addWikiMsg( 'nocontribs' );
99 
100  return;
101  }
102 
103  # Show a message about replica DB lag, if applicable
104  $lb = MediaWikiServices::getInstance()->getDBLoadBalancer();
105  $lag = $lb->safeGetLag( $pager->getDatabase() );
106  if ( $lag > 0 ) {
107  $out->showLagWarning( $lag );
108  }
109 
110  $out->addHTML(
111  '<p>' . $pager->getNavigationBar() . '</p>' .
112  $pager->getBody() .
113  '<p>' . $pager->getNavigationBar() . '</p>' );
114 
115  # If there were contributions, and it was a valid user or IP, show
116  # the appropriate "footer" message - WHOIS tools, etc.
117  if ( $target != 'newbies' ) {
118  $message = IP::isIPAddress( $target ) ?
119  'sp-contributions-footer-anon' :
120  'sp-contributions-footer';
121 
122  if ( !$this->msg( $message )->isDisabled() ) {
123  $out->wrapWikiMsg(
124  "<div class='mw-contributions-footer'>\n$1\n</div>",
125  [ $message, $target ]
126  );
127  }
128  }
129  }
130 
136  function getSubTitle( $userObj ) {
137  $linkRenderer = $this->getLinkRenderer();
138  if ( $userObj->isAnon() ) {
139  $user = htmlspecialchars( $userObj->getName() );
140  } else {
141  $user = $linkRenderer->makeLink( $userObj->getUserPage(), $userObj->getName() );
142  }
143  $links = '';
144  $nt = $userObj->getUserPage();
145  $talk = $nt->getTalkPage();
146  if ( $talk ) {
147  $tools = SpecialContributions::getUserLinks( $this, $userObj );
148 
149  # Link to contributions
150  $insert['contribs'] = $linkRenderer->makeKnownLink(
151  SpecialPage::getTitleFor( 'Contributions', $nt->getDBkey() ),
152  $this->msg( 'sp-deletedcontributions-contribs' )->text()
153  );
154 
155  // Swap out the deletedcontribs link for our contribs one
156  $tools = wfArrayInsertAfter( $tools, $insert, 'deletedcontribs' );
157  unset( $tools['deletedcontribs'] );
158 
159  $links = $this->getLanguage()->pipeList( $tools );
160 
161  // Show a note if the user is blocked and display the last block log entry.
162  $block = Block::newFromTarget( $userObj, $userObj );
163  if ( !is_null( $block ) && $block->getType() != Block::TYPE_AUTO ) {
164  if ( $block->getType() == Block::TYPE_RANGE ) {
165  $nt = MWNamespace::getCanonicalName( NS_USER ) . ':' . $block->getTarget();
166  }
167 
168  // LogEventsList::showLogExtract() wants the first parameter by ref
169  $out = $this->getOutput();
171  $out,
172  'block',
173  $nt,
174  '',
175  [
176  'lim' => 1,
177  'showIfEmpty' => false,
178  'msgKey' => [
179  'sp-contributions-blocked-notice',
180  $userObj->getName() # Support GENDER in 'sp-contributions-blocked-notice'
181  ],
182  'offset' => '' # don't use $this->getRequest() parameter offset
183  ]
184  );
185  }
186  }
187 
188  return $this->msg( 'contribsub2' )->rawParams( $user, $links )->params( $userObj->getName() );
189  }
190 
194  function getForm() {
195  $opts = $this->mOpts;
196 
197  $formDescriptor = [
198  'target' => [
199  'type' => 'user',
200  'name' => 'target',
201  'label-message' => 'sp-contributions-username',
202  'default' => $opts->getValue( 'target' ),
203  'ipallowed' => true,
204  ],
205 
206  'namespace' => [
207  'type' => 'namespaceselect',
208  'name' => 'namespace',
209  'label-message' => 'namespace',
210  'all' => '',
211  ],
212  ];
213 
214  HTMLForm::factory( 'ooui', $formDescriptor, $this->getContext() )
215  ->setWrapperLegendMsg( 'sp-contributions-search' )
216  ->setSubmitTextMsg( 'sp-contributions-submit' )
217  // prevent setting subpage and 'target' parameter at the same time
218  ->setAction( $this->getPageTitle()->getLocalURL() )
219  ->setMethod( 'get' )
220  ->prepareForm()
221  ->displayForm( false );
222  }
223 
232  public function prefixSearchSubpages( $search, $limit, $offset ) {
233  $user = User::newFromName( $search );
234  if ( !$user ) {
235  // No prefix suggestion for invalid user
236  return [];
237  }
238  // Autocomplete subpage as user list - public to allow caching
239  return UserNamePrefixSearch::search( 'public', $search, $limit, $offset );
240  }
241 
242  protected function getGroupName() {
243  return 'users';
244  }
245 }
wfArrayInsertAfter
wfArrayInsertAfter(array $array, array $insert, $after)
Insert array into another array after the specified KEY
Definition: GlobalFunctions.php:229
$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:244
SpecialPage\msg
msg( $key)
Wrapper around wfMessage that sets the current context.
Definition: SpecialPage.php:796
SpecialContributions\getUserLinks
static getUserLinks(SpecialPage $sp, User $target)
Links to different places.
Definition: SpecialContributions.php:358
DeletedContributionsPage\__construct
__construct()
Definition: SpecialDeletedContributions.php:34
SpecialPage\getOutput
getOutput()
Get the OutputPage being used for this instance.
Definition: SpecialPage.php:725
DeletedContributionsPage\execute
execute( $par)
Special page "deleted user contributions".
Definition: SpecialDeletedContributions.php:44
Block\TYPE_RANGE
const TYPE_RANGE
Definition: Block.php:85
DeletedContribsPager
Definition: DeletedContribsPager.php:30
SpecialPage\checkPermissions
checkPermissions()
Checks if userCanExecute, and if not throws a PermissionsError.
Definition: SpecialPage.php:309
Block\newFromTarget
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:1174
DeletedContributionsPage\getForm
getForm()
Generates the namespace selector form with hidden attributes.
Definition: SpecialDeletedContributions.php:194
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:592
SpecialPage\getTitleFor
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,...
Definition: SpecialPage.php:82
DeletedContributionsPage
Implements Special:DeletedContributions to display archived revisions.
Definition: SpecialDeletedContributions.php:30
SpecialPage\getSkin
getSkin()
Shortcut to get the skin being used for this instance.
Definition: SpecialPage.php:745
SpecialPage\getLanguage
getLanguage()
Shortcut to get user's language.
Definition: SpecialPage.php:755
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
name
and how to run hooks for an and one after Each event has a name
Definition: hooks.txt:6
SpecialPage\getConfig
getConfig()
Shortcut to get main config object.
Definition: SpecialPage.php:764
user
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same user
Definition: distributors.txt:9
in
null for the wiki Added in
Definition: hooks.txt:1627
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
SpecialPage\setHeaders
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
Definition: SpecialPage.php:531
SpecialPage\getUser
getUser()
Shortcut to get the User executing this instance.
Definition: SpecialPage.php:735
LogEventsList\showLogExtract
static showLogExtract(&$out, $types=[], $page='', $user='', $param=[])
Show log extract.
Definition: LogEventsList.php:606
SpecialPage\getContext
getContext()
Gets the context this SpecialPage is executed in.
Definition: SpecialPage.php:698
SpecialPage
Parent class for all special pages.
Definition: SpecialPage.php:36
SpecialPage\getRequest
getRequest()
Get the WebRequest being used for this instance.
Definition: SpecialPage.php:715
Block\TYPE_AUTO
const TYPE_AUTO
Definition: Block.php:86
message
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a message
Definition: hooks.txt:2205
DeletedContributionsPage\$mOpts
FormOptions $mOpts
Definition: SpecialDeletedContributions.php:32
SpecialPage\getLinkRenderer
getLinkRenderer()
Definition: SpecialPage.php:908
User\getCanonicalName
static getCanonicalName( $name, $validate='valid')
Given unvalidated user input, return a canonical username, or false if the username is invalid.
Definition: User.php:1238
DeletedContributionsPage\getSubTitle
getSubTitle( $userObj)
Generates the subheading with links.
Definition: SpecialDeletedContributions.php:136
NS_USER
const NS_USER
Definition: Defines.php:66
FormOptions
Helper class to keep track of options when mixing links and form elements.
Definition: FormOptions.php:35
SpecialPage\$linkRenderer
MediaWiki Linker LinkRenderer null $linkRenderer
Definition: SpecialPage.php:66
MediaWikiServices
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 MediaWikiServices
Definition: injection.txt:23
type
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 as and are nearing end of 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:22
SpecialPage\outputHeader
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
Definition: SpecialPage.php:633
MWNamespace\getCanonicalName
static getCanonicalName( $index)
Returns the canonical (English) name for a given index.
Definition: MWNamespace.php:255
IP\isIPAddress
static isIPAddress( $ip)
Determine if a string is as valid IP address or network (CIDR prefix).
Definition: IP.php:77
$out
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:813