Commit stuff from my w/c
[lhc/web/wiklou.git] / includes / api / ApiPurge.php
index 8c287e3..fe54d5f 100644 (file)
@@ -45,9 +45,13 @@ class ApiPurge extends ApiBase {
        public function execute() {
                global $wgUser;
                $params = $this->extractRequestParams();
-               if ( !$wgUser->isAllowed( 'purge' ) ) {
-                       $this->dieUsageMsg( array( 'cantpurge' ) );
+               if ( !$wgUser->isAllowed( 'purge' ) && !$this->getMain()->isInternalMode() &&
+                               !$this->getMain()->getRequest()->wasPosted() ) {
+                       $this->dieUsageMsg( array( 'mustbeposted', $this->getModuleName() ) );
                }
+
+               $forceLinkUpdate = $params['forcelinkupdate'];
+
                $result = array();
                foreach ( $params['titles'] as $t ) {
                        $r = array();
@@ -67,17 +71,35 @@ class ApiPurge extends ApiBase {
                        $article = MediaWiki::articleFromTitle( $title );
                        $article->doPurge(); // Directly purge and skip the UI part of purge().
                        $r['purged'] = '';
+                       
+                       if( $forceLinkUpdate ) {
+                               if ( !$wgUser->pingLimiter() ) {
+                                       global $wgParser, $wgEnableParserCache;
+                                       $popts = new ParserOptions();
+                                       $p_result = $wgParser->parse( $article->getContent(), $title, $popts );
+
+                                       # Update the links tables
+                                       $u = new LinksUpdate( $title, $p_result );
+                                       $u->doUpdate();
+
+                                       $r['linkupdate'] = '';
+
+                                       if ( $wgEnableParserCache ) {
+                                               $pcache = ParserCache::singleton();
+                                               $pcache->save( $p_result, $article, $popts );
+                                       }
+                               } else {
+                                       $this->setWarning( $this->parseMsg( array( 'actionthrottledtext' ) ) );
+                                       $forceLinkUpdate = false;
+                               }
+                       }
+                       
                        $result[] = $r;
                }
                $this->getResult()->setIndexedTagName( $result, 'page' );
                $this->getResult()->addValue( null, $this->getModuleName(), $result );
        }
 
-       public function mustBePosted() {
-               global $wgUser;
-               return $wgUser->isAnon();
-       }
-
        public function isWriteMode() {
                return true;
        }
@@ -87,18 +109,22 @@ class ApiPurge extends ApiBase {
                        'titles' => array(
                                ApiBase::PARAM_ISMULTI => true,
                                ApiBase::PARAM_REQUIRED => true
-                       )
+                       ),
+                       'forcelinkupdate' => false,
                );
        }
 
        public function getParamDescription() {
                return array(
                        'titles' => 'A list of titles',
+                       'forcelinkupdate' => 'Update the links tables',
                );
        }
 
        public function getDescription() {
-               return 'Purge the cache for the given titles';
+               return array( 'Purge the cache for the given titles.',
+                       'This module requires a POST request if the user is not logged in.'
+               );
        }
 
        public function getPossibleErrors() {