Update to r32375 / bug 11874 -- !important may have whitespace between ! and important
[lhc/web/wiklou.git] / includes / FileDeleteForm.php
index fec993a..16a2d11 100644 (file)
@@ -29,7 +29,7 @@ class FileDeleteForm {
         * pending authentication, confirmation, etc.
         */
        public function execute() {
-               global $wgOut, $wgRequest, $wgUser, $wgLang, $wgServer;
+               global $wgOut, $wgRequest, $wgUser;
                $this->setHeaders();
 
                if( wfReadOnly() ) {
@@ -39,7 +39,7 @@ class FileDeleteForm {
                        $wgOut->showErrorPage( 'uploadnologin', 'uploadnologintext' );
                        return;
                } elseif( !$wgUser->isAllowed( 'delete' ) ) {
-                       $wgOut->permissionError( 'delete' );
+                       $wgOut->permissionRequired( 'delete' );
                        return;
                } elseif( $wgUser->isBlocked() ) {
                        $wgOut->blockedPage();
@@ -48,6 +48,9 @@ class FileDeleteForm {
                
                $this->oldimage = $wgRequest->getText( 'oldimage', false );
                $token = $wgRequest->getText( 'wpEditToken' );
+               # Flag to hide all contents of the archived revisions
+               $suppress = $wgRequest->getVal( 'wpSuppress' ) && $wgUser->isAllowed('deleterevision');
+               
                if( $this->oldimage && !$this->isValidOldSpec() ) {
                        $wgOut->showUnexpectedValueError( 'oldimage', htmlspecialchars( $this->oldimage ) );
                        return;
@@ -63,25 +66,42 @@ class FileDeleteForm {
                
                // Perform the deletion if appropriate
                if( $wgRequest->wasPosted() && $wgUser->matchEditToken( $token, $this->oldimage ) ) {
-                       $comment = $wgRequest->getText( 'wpComment' );
+                       $this->DeleteReasonList = $wgRequest->getText( 'wpDeleteReasonList' );
+                       $this->DeleteReason = $wgRequest->getText( 'wpReason' );
+                       $reason = $this->DeleteReasonList;
+                       if ( $reason != 'other' && $this->DeleteReason != '') {
+                               // Entry from drop down menu + additional comment
+                               $reason .= ': ' . $this->DeleteReason;
+                       } elseif ( $reason == 'other' ) {
+                               $reason = $this->DeleteReason;
+                       }
+                               
+                       $article = null;
                        if( $this->oldimage ) {
-                               $status = $this->file->deleteOld( $this->oldimage, $comment );
+                               $status = $this->file->deleteOld( $this->oldimage, $reason, $suppress );
                                if( $status->ok ) {
                                        // Need to do a log item
                                        $log = new LogPage( 'delete' );
-                                       $log->addEntry( 'delete', $this->title, wfMsg( 'deletedrevision' , $this->oldimage ) );
+                                       $logComment = wfMsgForContent( 'deletedrevision', $this->oldimage );
+                                       if( trim( $reason ) != '' )
+                                               $logComment .= ": {$reason}";
+                                       $log->addEntry( 'delete', $this->title, $logComment );
                                }
                        } else {
-                               $status = $this->file->delete( $comment );
+                               $status = $this->file->delete( $reason, $suppress );
                                if( $status->ok ) {
                                        // Need to delete the associated article
                                        $article = new Article( $this->title );
-                                       $article->doDeleteArticle( $comment );
+                                       $article->doDeleteArticle( $reason, $suppress );
                                }
                        }
+                       if( $status->isGood() ) wfRunHooks('FileDeleteComplete', array( 
+                               &$this->file, &$this->oldimage, &$article, &$wgUser, &$reason));
+                       
                        if( !$status->isGood() )
                                $wgOut->addWikiText( $status->getWikiText( 'filedeleteerror-short', 'filedeleteerror-long' ) );
                        if( $status->ok ) {
+                               $wgOut->setPagetitle( wfMsg( 'actioncomplete' ) );
                                $wgOut->addHtml( $this->prepareMessage( 'filedelete-success' ) );
                                // Return to the main page if we just deleted all versions of the
                                // file, otherwise go back to the description page
@@ -90,28 +110,87 @@ class FileDeleteForm {
                        return;
                }
                
-               // Show the form
-               $this->showForm();              
+               $this->showForm();
+               $this->showLogEntries();
        }
-       
+
        /**
         * Show the confirmation form
         */
        private function showForm() {
-               global $wgOut, $wgUser;
-               
-               $form  = Xml::openElement( 'form', array( 'method' => 'post', 'action' => $this->getAction() ) );
-               $form .= Xml::hidden( 'wpEditToken', $wgUser->editToken( $this->oldimage ) );
-               $form .= '<fieldset><legend>' . wfMsgHtml( 'filedelete-legend' ) . '</legend>';
-               $form .= $this->prepareMessage( 'filedelete-intro' );
-               
-               $form .= '<p>' . Xml::inputLabel( wfMsg( 'filedelete-comment' ), 'wpComment', 'wpComment', 60 ) . '</p>';
-               $form .= '<p>' . Xml::submitButton( wfMsg( 'filedelete-submit' ) ) . '</p>';
-               $form .= '</fieldset>';
-               $form .= '</form>';
-               
+               global $wgOut, $wgUser, $wgRequest, $wgContLang;
+               $align = $wgContLang->isRtl() ? 'left' : 'right';
+
+               if( $wgUser->isAllowed( 'deleterevision' ) ) {
+                       $suppress = "<tr id=\"wpDeleteSuppressRow\" name=\"wpDeleteSuppressRow\"><td></td><td>";
+                       $suppress .= Xml::checkLabel( wfMsg( 'revdelete-suppress' ), 'wpSuppress', 'wpSuppress', false, array( 'tabindex' => '2' ) );
+                       $suppress .= "</td></tr>";
+               } else {
+                       $suppress = '';
+               }
+
+               $form = Xml::openElement( 'form', array( 'method' => 'post', 'action' => $this->getAction() ) ) .
+                       Xml::openElement( 'fieldset' ) .
+                       Xml::element( 'legend', null, wfMsg( 'filedelete-legend' ) ) .
+                       Xml::hidden( 'wpEditToken', $wgUser->editToken( $this->oldimage ) ) .
+                       $this->prepareMessage( 'filedelete-intro' ) .
+                       Xml::openElement( 'table' ) .
+                       "<tr>
+                               <td align='$align'>" .
+                                       Xml::label( wfMsg( 'filedelete-comment' ), 'wpDeleteReasonList' ) .
+                               "</td>
+                               <td>" .
+                                       Xml::listDropDown( 'wpDeleteReasonList',
+                                               wfMsgForContent( 'filedelete-reason-dropdown' ), 
+                                               wfMsgForContent( 'filedelete-reason-otherlist' ), '', 'wpReasonDropDown', 1 ) .
+                               "</td>
+                       </tr>
+                       <tr>
+                               <td align='$align'>" .
+                                       Xml::label( wfMsg( 'filedelete-otherreason' ), 'wpReason' ) .
+                               "</td>
+                               <td>" .
+                                       Xml::input( 'wpReason', 60, $wgRequest->getText( 'wpReason' ), array( 'type' => 'text', 'maxlength' => '255', 'tabindex' => '2', 'id' => 'wpReason' ) ) .
+                               "</td>
+                       </tr>
+                       {$suppress}
+                       <tr>
+                               <td></td>
+                               <td>" .
+                                       Xml::submitButton( wfMsg( 'filedelete-submit' ), array( 'name' => 'mw-filedelete-submit', 'id' => 'mw-filedelete-submit', 'tabindex' => '3' ) ) .
+                               "</td>
+                       </tr>" .
+                       Xml::closeElement( 'table' ) .
+                       Xml::closeElement( 'fieldset' ) .
+                       Xml::closeElement( 'form' );
+
+                       if ( $wgUser->isAllowed( 'editinterface' ) ) {
+                               $skin = $wgUser->getSkin();
+                               $link = $skin->makeLink ( 'MediaWiki:Filedelete-reason-dropdown', wfMsgHtml( 'filedelete-edit-reasonlist' ) );
+                               $form .= '<p class="mw-filedelete-editreasons">' . $link . '</p>';
+                       }
+
                $wgOut->addHtml( $form );
        }
+
+       /**
+        * Show deletion log fragments pertaining to the current file
+        */
+       private function showLogEntries() {
+               global $wgOut;
+               $wgOut->addHtml( '<h2>' . htmlspecialchars( LogPage::logName( 'delete' ) ) . "</h2>\n" );
+               $reader = new LogViewer(
+                       new LogReader(
+                               new FauxRequest(
+                                       array(
+                                               'type' => 'delete',
+                                               'page' => $this->title->getPrefixedText(),
+                                       )
+                               )
+                       )
+               );
+               $reader->showList( $wgOut );            
+       }
        
        /**
         * Prepare a message referring to the file being deleted,
@@ -122,16 +201,16 @@ class FileDeleteForm {
         * @return string
         */
        private function prepareMessage( $message ) {
-               global $wgLang, $wgServer;
+               global $wgLang;
                if( $this->oldimage ) {
+                       $url = $this->file->getArchiveUrl( $this->oldimage );
                        return wfMsgExt(
-                               "{$message}-old",
+                               "{$message}-old", # To ensure grep will find them: 'filedelete-intro-old', 'filedelete-nofile-old', 'filedelete-success-old'
                                'parse',
                                $this->title->getText(),
                                $wgLang->date( $this->getTimestamp(), true ),
                                $wgLang->time( $this->getTimestamp(), true ),
-                               $wgServer . $this->file->getArchiveUrl( $this->oldimage )
-                       );
+                               wfExpandUrl( $this->file->getArchiveUrl( $this->oldimage ) ) );
                } else {
                        return wfMsgExt(
                                $message,
@@ -145,9 +224,10 @@ class FileDeleteForm {
         * Set headers, titles and other bits
         */
        private function setHeaders() {
-               global $wgOut;
+               global $wgOut, $wgUser;
                $wgOut->setPageTitle( wfMsg( 'filedelete', $this->title->getText() ) );
                $wgOut->setRobotPolicy( 'noindex,nofollow' );
+               $wgOut->setSubtitle( wfMsg( 'filedelete-backlink', $wgUser->getSkin()->makeKnownLinkObj( $this->title ) ) );
        }
        
        /**
@@ -196,4 +276,4 @@ class FileDeleteForm {
                return $this->oldfile->getTimestamp();
        }
        
-}
\ No newline at end of file
+}