Fix a Fatal: Call to a member function isLoggedIn() on a non-object in /var/www/w...
[lhc/web/wiklou.git] / includes / FileDeleteForm.php
1 <?php
2
3 /**
4 * File deletion user interface
5 *
6 * @ingroup Media
7 * @author Rob Church <robchur@gmail.com>
8 */
9 class FileDeleteForm {
10
11 private $title = null;
12 private $file = null;
13
14 private $oldfile = null;
15 private $oldimage = '';
16
17 /**
18 * Constructor
19 *
20 * @param File $file File we're deleting
21 */
22 public function __construct( $file ) {
23 $this->title = $file->getTitle();
24 $this->file = $file;
25 }
26
27 /**
28 * Fulfil the request; shows the form or deletes the file,
29 * pending authentication, confirmation, etc.
30 */
31 public function execute() {
32 global $wgOut, $wgRequest, $wgUser;
33 $this->setHeaders();
34
35 if( wfReadOnly() ) {
36 $wgOut->readOnlyPage();
37 return;
38 }
39 $permission_errors = $this->title->getUserPermissionsErrors('delete', $wgUser);
40 if (count($permission_errors)>0) {
41 $wgOut->showPermissionsErrorPage( $permission_errors );
42 return;
43 }
44
45 $this->oldimage = $wgRequest->getText( 'oldimage', false );
46 $token = $wgRequest->getText( 'wpEditToken' );
47 # Flag to hide all contents of the archived revisions
48 $suppress = $wgRequest->getVal( 'wpSuppress' ) && $wgUser->isAllowed('suppressrevision');
49
50 if( $this->oldimage && !self::isValidOldSpec($this->oldimage) ) {
51 $wgOut->showUnexpectedValueError( 'oldimage', htmlspecialchars( $this->oldimage ) );
52 return;
53 }
54 if( $this->oldimage )
55 $this->oldfile = RepoGroup::singleton()->getLocalRepo()->newFromArchiveName( $this->title, $this->oldimage );
56
57 if( !self::haveDeletableFile($this->file, $this->oldfile, $this->oldimage) ) {
58 $wgOut->addHTML( $this->prepareMessage( 'filedelete-nofile' ) );
59 $wgOut->addReturnTo( $this->title );
60 return;
61 }
62
63 // Perform the deletion if appropriate
64 if( $wgRequest->wasPosted() && $wgUser->matchEditToken( $token, $this->oldimage ) ) {
65 $this->DeleteReasonList = $wgRequest->getText( 'wpDeleteReasonList' );
66 $this->DeleteReason = $wgRequest->getText( 'wpReason' );
67 $reason = $this->DeleteReasonList;
68 if ( $reason != 'other' && $this->DeleteReason != '') {
69 // Entry from drop down menu + additional comment
70 $reason .= wfMsgForContent( 'colon-separator' ) . $this->DeleteReason;
71 } elseif ( $reason == 'other' ) {
72 $reason = $this->DeleteReason;
73 }
74
75 $status = self::doDelete( $this->title, $this->file, $this->oldimage, $reason, $suppress );
76
77 if( !$status->isGood() )
78 $wgOut->addWikiText( $status->getWikiText( 'filedeleteerror-short', 'filedeleteerror-long' ) );
79 if( $status->ok ) {
80 $wgOut->setPagetitle( wfMsg( 'actioncomplete' ) );
81 $wgOut->addHTML( $this->prepareMessage( 'filedelete-success' ) );
82 // Return to the main page if we just deleted all versions of the
83 // file, otherwise go back to the description page
84 $wgOut->addReturnTo( $this->oldimage ? $this->title : Title::newMainPage() );
85 }
86 return;
87 }
88
89 $this->showForm();
90 $this->showLogEntries();
91 }
92
93 public static function doDelete( &$title, &$file, &$oldimage, $reason, $suppress ) {
94 global $wgUser;
95 $article = null;
96 if( $oldimage ) {
97 $status = $file->deleteOld( $oldimage, $reason, $suppress );
98 if( $status->ok ) {
99 // Need to do a log item
100 $log = new LogPage( 'delete' );
101 $logComment = wfMsgForContent( 'deletedrevision', $oldimage );
102 if( trim( $reason ) != '' )
103 $logComment .= wfMsgForContent( 'colon-separator' ) . $reason;
104 $log->addEntry( 'delete', $title, $logComment );
105 }
106 } else {
107 $status = $file->delete( $reason, $suppress );
108 if( $status->ok ) {
109 $id = $title->getArticleID( GAID_FOR_UPDATE );
110 // Need to delete the associated article
111 $article = new Article( $title );
112 $error = '';
113 if( wfRunHooks('ArticleDelete', array(&$article, &$wgUser, &$reason, &$error)) ) {
114 if( $article->doDeleteArticle( $reason, $suppress, $id ) ) {
115 global $wgRequest;
116 if( $wgRequest->getCheck( 'wpWatch' ) && $wgUser->isLoggedIn() ) {
117 $article->doWatch();
118 } elseif( $title->userIsWatching() ) {
119 $article->doUnwatch();
120 }
121 wfRunHooks('ArticleDeleteComplete', array(&$article, &$wgUser, $reason, $id));
122 }
123 }
124 }
125 }
126 if( $status->isGood() )
127 wfRunHooks('FileDeleteComplete', array( &$file, &$oldimage, &$article, &$wgUser, &$reason));
128
129 return $status;
130 }
131
132 /**
133 * Show the confirmation form
134 */
135 private function showForm() {
136 global $wgOut, $wgUser, $wgRequest;
137
138 if( $wgUser->isAllowed( 'suppressrevision' ) ) {
139 $suppress = "<tr id=\"wpDeleteSuppressRow\">
140 <td></td>
141 <td class='mw-input'><strong>" .
142 Xml::checkLabel( wfMsg( 'revdelete-suppress' ),
143 'wpSuppress', 'wpSuppress', false, array( 'tabindex' => '3' ) ) .
144 "</strong></td>
145 </tr>";
146 } else {
147 $suppress = '';
148 }
149
150 $checkWatch = $wgUser->getBoolOption( 'watchdeletion' ) || $this->title->userIsWatching();
151 $form = Xml::openElement( 'form', array( 'method' => 'post', 'action' => $this->getAction(),
152 'id' => 'mw-img-deleteconfirm' ) ) .
153 Xml::openElement( 'fieldset' ) .
154 Xml::element( 'legend', null, wfMsg( 'filedelete-legend' ) ) .
155 Xml::hidden( 'wpEditToken', $wgUser->editToken( $this->oldimage ) ) .
156 $this->prepareMessage( 'filedelete-intro' ) .
157 Xml::openElement( 'table', array( 'id' => 'mw-img-deleteconfirm-table' ) ) .
158 "<tr>
159 <td class='mw-label'>" .
160 Xml::label( wfMsg( 'filedelete-comment' ), 'wpDeleteReasonList' ) .
161 "</td>
162 <td class='mw-input'>" .
163 Xml::listDropDown( 'wpDeleteReasonList',
164 wfMsgForContent( 'filedelete-reason-dropdown' ),
165 wfMsgForContent( 'filedelete-reason-otherlist' ), '', 'wpReasonDropDown', 1 ) .
166 "</td>
167 </tr>
168 <tr>
169 <td class='mw-label'>" .
170 Xml::label( wfMsg( 'filedelete-otherreason' ), 'wpReason' ) .
171 "</td>
172 <td class='mw-input'>" .
173 Xml::input( 'wpReason', 60, $wgRequest->getText( 'wpReason' ),
174 array( 'type' => 'text', 'maxlength' => '255', 'tabindex' => '2', 'id' => 'wpReason' ) ) .
175 "</td>
176 </tr>
177 {$suppress}";
178 if( $wgUser->isLoggedIn() ) {
179 $form .= "
180 <tr>
181 <td></td>
182 <td class='mw-input'>" .
183 Xml::checkLabel( wfMsg( 'watchthis' ),
184 'wpWatch', 'wpWatch', $checkWatch, array( 'tabindex' => '3' ) ) .
185 "</td>
186 </tr>";
187 }
188 $form .= "
189 <tr>
190 <td></td>
191 <td class='mw-submit'>" .
192 Xml::submitButton( wfMsg( 'filedelete-submit' ),
193 array( 'name' => 'mw-filedelete-submit', 'id' => 'mw-filedelete-submit', 'tabindex' => '4' ) ) .
194 "</td>
195 </tr>" .
196 Xml::closeElement( 'table' ) .
197 Xml::closeElement( 'fieldset' ) .
198 Xml::closeElement( 'form' );
199
200 if ( $wgUser->isAllowed( 'editinterface' ) ) {
201 $skin = $wgUser->getSkin();
202 $title = Title::makeTitle( NS_MEDIAWIKI, 'Filedelete-reason-dropdown' );
203 $link = $skin->link(
204 $title,
205 wfMsgHtml( 'filedelete-edit-reasonlist' ),
206 array(),
207 array( 'action' => 'edit' )
208 );
209 $form .= '<p class="mw-filedelete-editreasons">' . $link . '</p>';
210 }
211
212 $wgOut->addHTML( $form );
213 }
214
215 /**
216 * Show deletion log fragments pertaining to the current file
217 */
218 private function showLogEntries() {
219 global $wgOut;
220 $wgOut->addHTML( '<h2>' . htmlspecialchars( LogPage::logName( 'delete' ) ) . "</h2>\n" );
221 LogEventsList::showLogExtract( $wgOut, 'delete', $this->title->getPrefixedText() );
222 }
223
224 /**
225 * Prepare a message referring to the file being deleted,
226 * showing an appropriate message depending upon whether
227 * it's a current file or an old version
228 *
229 * @param string $message Message base
230 * @return string
231 */
232 private function prepareMessage( $message ) {
233 global $wgLang;
234 if( $this->oldimage ) {
235 $url = $this->file->getArchiveUrl( $this->oldimage );
236 return wfMsgExt(
237 "{$message}-old", # To ensure grep will find them: 'filedelete-intro-old', 'filedelete-nofile-old', 'filedelete-success-old'
238 'parse',
239 $this->title->getText(),
240 $wgLang->date( $this->getTimestamp(), true ),
241 $wgLang->time( $this->getTimestamp(), true ),
242 wfExpandUrl( $this->file->getArchiveUrl( $this->oldimage ) ) );
243 } else {
244 return wfMsgExt(
245 $message,
246 'parse',
247 $this->title->getText()
248 );
249 }
250 }
251
252 /**
253 * Set headers, titles and other bits
254 */
255 private function setHeaders() {
256 global $wgOut, $wgUser;
257 $wgOut->setPageTitle( wfMsg( 'filedelete', $this->title->getText() ) );
258 $wgOut->setRobotPolicy( 'noindex,nofollow' );
259 $wgOut->setSubtitle( wfMsg(
260 'filedelete-backlink',
261 $wgUser->getSkin()->link(
262 $this->title,
263 null,
264 array(),
265 array(),
266 array( 'known', 'noclasses' )
267 )
268 ) );
269 }
270
271 /**
272 * Is the provided `oldimage` value valid?
273 *
274 * @return bool
275 */
276 public static function isValidOldSpec($oldimage) {
277 return strlen( $oldimage ) >= 16
278 && strpos( $oldimage, '/' ) === false
279 && strpos( $oldimage, '\\' ) === false;
280 }
281
282 /**
283 * Could we delete the file specified? If an `oldimage`
284 * value was provided, does it correspond to an
285 * existing, local, old version of this file?
286 *
287 * @return bool
288 */
289 public static function haveDeletableFile(&$file, &$oldfile, $oldimage) {
290 return $oldimage
291 ? $oldfile && $oldfile->exists() && $oldfile->isLocal()
292 : $file && $file->exists() && $file->isLocal();
293 }
294
295 /**
296 * Prepare the form action
297 *
298 * @return string
299 */
300 private function getAction() {
301 $q = array();
302 $q['action'] = 'delete';
303
304 if( $this->oldimage )
305 $q['oldimage'] = $this->oldimage;
306
307 return $this->title->getLocalUrl( $q );
308 }
309
310 /**
311 * Extract the timestamp of the old version
312 *
313 * @return string
314 */
315 private function getTimestamp() {
316 return $this->oldfile->getTimestamp();
317 }
318 }