MediaWiki  1.29.1
SpecialDeletedContributions.php
Go to the documentation of this file.
1 <?php
30  protected $mOpts;
31 
32  function __construct() {
33  parent::__construct( 'DeletedContributions', 'deletedhistory' );
34  }
35 
42  function execute( $par ) {
43  $this->setHeaders();
44  $this->outputHeader();
45  $this->checkPermissions();
46 
47  $user = $this->getUser();
48 
49  $out = $this->getOutput();
50  $out->setPageTitle( $this->msg( 'deletedcontributions-title' ) );
51 
52  $opts = new FormOptions();
53 
54  $opts->add( 'target', '' );
55  $opts->add( 'namespace', '' );
56  $opts->add( 'limit', 20 );
57 
58  $opts->fetchValuesFromRequest( $this->getRequest() );
59  $opts->validateIntBounds( 'limit', 0, $this->getConfig()->get( 'QueryPageDefaultLimit' ) );
60 
61  if ( $par !== null ) {
62  $opts->setValue( 'target', $par );
63  }
64 
65  $ns = $opts->getValue( 'namespace' );
66  if ( $ns !== null && $ns !== '' ) {
67  $opts->setValue( 'namespace', intval( $ns ) );
68  }
69 
70  $this->mOpts = $opts;
71 
72  $target = $opts->getValue( 'target' );
73  if ( !strlen( $target ) ) {
74  $this->getForm();
75 
76  return;
77  }
78 
79  $userObj = User::newFromName( $target, false );
80  if ( !$userObj ) {
81  $this->getForm();
82 
83  return;
84  }
85  $this->getSkin()->setRelevantUser( $userObj );
86 
87  $target = $userObj->getName();
88  $out->addSubtitle( $this->getSubTitle( $userObj ) );
89 
90  $this->getForm();
91 
92  $pager = new DeletedContribsPager( $this->getContext(), $target, $opts->getValue( 'namespace' ) );
93  if ( !$pager->getNumRows() ) {
94  $out->addWikiMsg( 'nocontribs' );
95 
96  return;
97  }
98 
99  # Show a message about replica DB lag, if applicable
100  $lag = wfGetLB()->safeGetLag( $pager->getDatabase() );
101  if ( $lag > 0 ) {
102  $out->showLagWarning( $lag );
103  }
104 
105  $out->addHTML(
106  '<p>' . $pager->getNavigationBar() . '</p>' .
107  $pager->getBody() .
108  '<p>' . $pager->getNavigationBar() . '</p>' );
109 
110  # If there were contributions, and it was a valid user or IP, show
111  # the appropriate "footer" message - WHOIS tools, etc.
112  if ( $target != 'newbies' ) {
113  $message = IP::isIPAddress( $target ) ?
114  'sp-contributions-footer-anon' :
115  'sp-contributions-footer';
116 
117  if ( !$this->msg( $message )->isDisabled() ) {
118  $out->wrapWikiMsg(
119  "<div class='mw-contributions-footer'>\n$1\n</div>",
120  [ $message, $target ]
121  );
122  }
123  }
124  }
125 
131  function getSubTitle( $userObj ) {
132  $linkRenderer = $this->getLinkRenderer();
133  if ( $userObj->isAnon() ) {
134  $user = htmlspecialchars( $userObj->getName() );
135  } else {
136  $user = $linkRenderer->makeLink( $userObj->getUserPage(), $userObj->getName() );
137  }
138  $links = '';
139  $nt = $userObj->getUserPage();
140  $talk = $nt->getTalkPage();
141  if ( $talk ) {
142  $tools = SpecialContributions::getUserLinks( $this, $userObj );
143 
144  # Link to contributions
145  $insert['contribs'] = $linkRenderer->makeKnownLink(
146  SpecialPage::getTitleFor( 'Contributions', $nt->getDBkey() ),
147  $this->msg( 'sp-deletedcontributions-contribs' )->text()
148  );
149 
150  // Swap out the deletedcontribs link for our contribs one
151  $tools = wfArrayInsertAfter( $tools, $insert, 'deletedcontribs' );
152  unset( $tools['deletedcontribs'] );
153 
154  $links = $this->getLanguage()->pipeList( $tools );
155 
156  // Show a note if the user is blocked and display the last block log entry.
157  $block = Block::newFromTarget( $userObj, $userObj );
158  if ( !is_null( $block ) && $block->getType() != Block::TYPE_AUTO ) {
159  if ( $block->getType() == Block::TYPE_RANGE ) {
160  $nt = MWNamespace::getCanonicalName( NS_USER ) . ':' . $block->getTarget();
161  }
162 
163  // LogEventsList::showLogExtract() wants the first parameter by ref
164  $out = $this->getOutput();
166  $out,
167  'block',
168  $nt,
169  '',
170  [
171  'lim' => 1,
172  'showIfEmpty' => false,
173  'msgKey' => [
174  'sp-contributions-blocked-notice',
175  $userObj->getName() # Support GENDER in 'sp-contributions-blocked-notice'
176  ],
177  'offset' => '' # don't use $this->getRequest() parameter offset
178  ]
179  );
180  }
181  }
182 
183  return $this->msg( 'contribsub2' )->rawParams( $user, $links )->params( $userObj->getName() );
184  }
185 
189  function getForm() {
190  $opts = $this->mOpts;
191 
192  $formDescriptor = [
193  'target' => [
194  'type' => 'user',
195  'name' => 'target',
196  'label-message' => 'sp-contributions-username',
197  'default' => $opts->getValue( 'target' ),
198  'ipallowed' => true,
199  ],
200 
201  'namespace' => [
202  'type' => 'namespaceselect',
203  'name' => 'namespace',
204  'label-message' => 'namespace',
205  'all' => '',
206  ],
207  ];
208 
209  HTMLForm::factory( 'ooui', $formDescriptor, $this->getContext() )
210  ->setWrapperLegendMsg( 'sp-contributions-search' )
211  ->setSubmitTextMsg( 'sp-contributions-submit' )
212  // prevent setting subpage and 'target' parameter at the same time
213  ->setAction( $this->getPageTitle()->getLocalURL() )
214  ->setMethod( 'get' )
215  ->prepareForm()
216  ->displayForm( false );
217  }
218 
227  public function prefixSearchSubpages( $search, $limit, $offset ) {
228  $user = User::newFromName( $search );
229  if ( !$user ) {
230  // No prefix suggestion for invalid user
231  return [];
232  }
233  // Autocomplete subpage as user list - public to allow caching
234  return UserNamePrefixSearch::search( 'public', $search, $limit, $offset );
235  }
236 
237  protected function getGroupName() {
238  return 'users';
239  }
240 }
wfArrayInsertAfter
wfArrayInsertAfter(array $array, array $insert, $after)
Insert array into another array after the specified KEY
Definition: GlobalFunctions.php:269
SpecialContributions\getUserLinks
static getUserLinks(SpecialPage $sp, User $target)
Links to different places.
Definition: SpecialContributions.php:322
DeletedContributionsPage\__construct
__construct()
Definition: SpecialDeletedContributions.php:32
SpecialPage\getOutput
getOutput()
Get the OutputPage being used for this instance.
Definition: SpecialPage.php:675
DeletedContributionsPage\execute
execute( $par)
Special page "deleted user contributions".
Definition: SpecialDeletedContributions.php:42
wfGetLB
wfGetLB( $wiki=false)
Get a load balancer object.
Definition: GlobalFunctions.php:3073
Block\TYPE_RANGE
const TYPE_RANGE
Definition: Block.php:85
DeletedContribsPager
Definition: DeletedContribsPager.php:29
$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
SpecialPage\checkPermissions
checkPermissions()
Checks if userCanExecute, and if not throws a PermissionsError.
Definition: SpecialPage.php:306
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:1113
DeletedContributionsPage\getForm
getForm()
Generates the namespace selector form with hidden attributes.
Definition: SpecialDeletedContributions.php:189
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:556
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:28
SpecialPage\getSkin
getSkin()
Shortcut to get the skin being used for this instance.
Definition: SpecialPage.php:695
SpecialPage\getLanguage
getLanguage()
Shortcut to get user's language.
Definition: SpecialPage.php:705
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
SpecialPage\getConfig
getConfig()
Shortcut to get main config object.
Definition: SpecialPage.php:714
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:1572
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 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:2114
SpecialPage\setHeaders
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
Definition: SpecialPage.php:484
SpecialPage\getUser
getUser()
Shortcut to get the User executing this instance.
Definition: SpecialPage.php:685
LogEventsList\showLogExtract
static showLogExtract(&$out, $types=[], $page='', $user='', $param=[])
Show log extract.
Definition: LogEventsList.php:564
SpecialPage\getContext
getContext()
Gets the context this SpecialPage is executed in.
Definition: SpecialPage.php:648
SpecialPage\msg
msg()
Wrapper around wfMessage that sets the current context.
Definition: SpecialPage.php:746
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:665
Block\TYPE_AUTO
const TYPE_AUTO
Definition: Block.php:86
DeletedContributionsPage\$mOpts
FormOptions $mOpts
Definition: SpecialDeletedContributions.php:30
SpecialPage\getLinkRenderer
getLinkRenderer()
Definition: SpecialPage.php:856
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
DeletedContributionsPage\getSubTitle
getSubTitle( $userObj)
Generates the subheading with links.
Definition: SpecialDeletedContributions.php:131
NS_USER
const NS_USER
Definition: Defines.php:64
name
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at name
Definition: design.txt:12
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
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:583
MWNamespace\getCanonicalName
static getCanonicalName( $index)
Returns the canonical (English) name for a given index.
Definition: MWNamespace.php:228
IP\isIPAddress
static isIPAddress( $ip)
Determine if a string is as valid IP address or network (CIDR prefix).
Definition: IP.php:79
$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:783