MediaWiki REL1_28
RevertAction.php
Go to the documentation of this file.
1<?php
31class RevertAction extends FormAction {
35 protected $oldFile;
36
37 public function getName() {
38 return 'revert';
39 }
40
41 public function getRestriction() {
42 return 'upload';
43 }
44
45 protected function checkCanExecute( User $user ) {
46 if ( $this->getTitle()->getNamespace() !== NS_FILE ) {
47 throw new ErrorPageError( $this->msg( 'nosuchaction' ), $this->msg( 'nosuchactiontext' ) );
48 }
49 parent::checkCanExecute( $user );
50
51 $oldimage = $this->getRequest()->getText( 'oldimage' );
52 if ( strlen( $oldimage ) < 16
53 || strpos( $oldimage, '/' ) !== false
54 || strpos( $oldimage, '\\' ) !== false
55 ) {
56 throw new ErrorPageError( 'internalerror', 'unexpected', [ 'oldimage', $oldimage ] );
57 }
58
59 $this->oldFile = RepoGroup::singleton()->getLocalRepo()->newFromArchiveName(
60 $this->getTitle(),
61 $oldimage
62 );
63
64 if ( !$this->oldFile->exists() ) {
65 throw new ErrorPageError( '', 'filerevert-badversion' );
66 }
67 }
68
69 protected function alterForm( HTMLForm $form ) {
70 $form->setWrapperLegendMsg( 'filerevert-legend' );
71 $form->setSubmitTextMsg( 'filerevert-submit' );
72 $form->addHiddenField( 'oldimage', $this->getRequest()->getText( 'oldimage' ) );
73 $form->setTokenSalt( [ 'revert', $this->getTitle()->getPrefixedDBkey() ] );
74 }
75
76 protected function getFormFields() {
78
79 $timestamp = $this->oldFile->getTimestamp();
80
81 $user = $this->getUser();
82 $lang = $this->getLanguage();
83 $userDate = $lang->userDate( $timestamp, $user );
84 $userTime = $lang->userTime( $timestamp, $user );
86 $ts = $siteTs->format( 'YmdHis' );
87 $siteDate = $wgContLang->date( $ts, false, false );
88 $siteTime = $wgContLang->time( $ts, false, false );
89 $tzMsg = $siteTs->getTimezoneMessage()->inContentLanguage()->text();
90
91 return [
92 'intro' => [
93 'type' => 'info',
94 'vertical-label' => true,
95 'raw' => true,
96 'default' => $this->msg( 'filerevert-intro',
97 $this->getTitle()->getText(), $userDate, $userTime,
99 $this->page->getFile()->getArchiveUrl( $this->getRequest()->getText( 'oldimage' ) ),
101 ) )->parseAsBlock()
102 ],
103 'comment' => [
104 'type' => 'text',
105 'label-message' => 'filerevert-comment',
106 'default' => $this->msg( 'filerevert-defaultcomment', $siteDate, $siteTime,
107 $tzMsg )->inContentLanguage()->text()
108 ]
109 ];
110 }
111
112 public function onSubmit( $data ) {
114
115 $old = $this->getRequest()->getText( 'oldimage' );
116 $localFile = $this->page->getFile();
117 $oldFile = OldLocalFile::newFromArchiveName( $this->getTitle(), $localFile->getRepo(), $old );
118
119 $source = $localFile->getArchiveVirtualUrl( $old );
120 $comment = $data['comment'];
121
122 if ( $localFile->getSha1() === $oldFile->getSha1() ) {
123 return Status::newFatal( 'filerevert-identical' );
124 }
125
126 // TODO: Preserve file properties from database instead of reloading from file
127 return $localFile->upload(
128 $source,
129 $comment,
130 $comment,
131 0,
132 false,
133 false,
134 $this->getUser()
135 );
136 }
137
138 public function onSuccess() {
139 $timestamp = $this->oldFile->getTimestamp();
140 $user = $this->getUser();
141 $lang = $this->getLanguage();
142 $userDate = $lang->userDate( $timestamp, $user );
143 $userTime = $lang->userTime( $timestamp, $user );
144
145 $this->getOutput()->addWikiMsg( 'filerevert-success', $this->getTitle()->getText(),
146 $userDate, $userTime,
147 wfExpandUrl( $this->page->getFile()->getArchiveUrl( $this->getRequest()->getText( 'oldimage' ) ),
149 ) );
150 $this->getOutput()->returnToMain( false, $this->getTitle() );
151 }
152
153 protected function getPageTitle() {
154 return $this->msg( 'filerevert', $this->getTitle()->getText() );
155 }
156
157 protected function getDescription() {
159 }
160
161 public function doesWrites() {
162 return true;
163 }
164}
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
msg()
Get a Message object with context set Parameters are the same as wfMessage()
Definition Action.php:256
getTitle()
Shortcut to get the Title object from the page.
Definition Action.php:246
getOutput()
Get the OutputPage being used for this instance.
Definition Action.php:207
getUser()
Shortcut to get the User being used for this instance.
Definition Action.php:217
useTransactionalTimeLimit()
Call wfTransactionalTimeLimit() if this request was POSTed.
Definition Action.php:418
getLanguage()
Shortcut to get the user Language being used for this instance.
Definition Action.php:236
getRequest()
Get the WebRequest being used for this instance.
Definition Action.php:197
An error page which can definitely be safely rendered using the OutputPage.
An action which shows a form and does something based on the input from the form.
Object handling generic submission, CSRF protection, layout and other logic for UI forms.
Definition HTMLForm.php:128
setSubmitTextMsg( $msg)
Set the text for the submit button to a message.
setWrapperLegendMsg( $msg)
Prompt the whole form to be wrapped in a "<fieldset>", with this message as its "<legend>" element.
addHiddenField( $name, $value, array $attribs=[])
Add a hidden field to the output.
Definition HTMLForm.php:894
setTokenSalt( $salt)
Set the salt for the edit token.
Definition HTMLForm.php:984
static getLocalInstance( $ts=false)
Get a timestamp instance in the server local timezone ($wgLocaltimezone)
Class to represent a file in the oldimage table.
static newFromArchiveName( $title, $repo, $archiveName)
static buildBacklinkSubtitle(Title $title, $query=[])
Build message object for a subtitle containing a backlink to a page.
static singleton()
Get a RepoGroup instance.
Definition RepoGroup.php:59
File reversion user interface.
OldLocalFile $oldFile
onSubmit( $data)
Process the form on POST submission.
getFormFields()
Get an HTMLForm descriptor array.
getPageTitle()
Returns the name that goes in the <h1> page title.
alterForm(HTMLForm $form)
Play with the HTMLForm if you need to more substantially.
getDescription()
Returns the description that goes below the <h1> tag.
onSuccess()
Do something exciting on successful processing of the form.
doesWrites()
Indicates whether this action may perform database writes.
getName()
Return the name of the action this object responds to.
getRestriction()
Get the permission required to perform this action.
checkCanExecute(User $user)
Checks if the given user (identified by an object) can perform this action.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:48
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
Definition design.txt:57
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
const NS_FILE
Definition Defines.php:62
const PROTO_CURRENT
Definition Defines.php:226
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:249
namespace are movable Hooks may change this value to override the return value of MWNamespace::isMovable(). 'NewDifferenceEngine' do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk page
Definition hooks.txt:2543
$comment
if( $limit) $timestamp
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
$source
if(!isset( $args[0])) $lang