Localisation updates for core and extension messages from translatewiki.net (2010...
[lhc/web/wiklou.git] / includes / api / ApiQueryUserContributions.php
index 8ecbf6e..526014d 100644 (file)
@@ -1,11 +1,11 @@
 <?php
 
-/*
+/**
  * Created on Oct 16, 2006
  *
  * API for MediaWiki 1.8+
  *
- * Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
+ * Copyright © 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -25,7 +25,7 @@
 
 if ( !defined( 'MEDIAWIKI' ) ) {
        // Eclipse helper - will be ignored in production
-       require_once ( 'ApiQueryBase.php' );
+       require_once( 'ApiQueryBase.php' );
 }
 
 /**
@@ -36,7 +36,7 @@ if ( !defined( 'MEDIAWIKI' ) ) {
 class ApiQueryContributions extends ApiQueryBase {
 
        public function __construct( $query, $moduleName ) {
-               parent :: __construct( $query, $moduleName, 'uc' );
+               parent::__construct( $query, $moduleName, 'uc' );
        }
 
        private $params, $username;
@@ -63,21 +63,21 @@ class ApiQueryContributions extends ApiQueryBase {
                $this->selectNamedDB( 'contributions', DB_SLAVE, 'contributions' );
                $db = $this->getDB();
 
-               if ( isset( $this->params['userprefix'] ) )
-               {
+               if ( isset( $this->params['userprefix'] ) ) {
                        $this->prefixMode = true;
                        $this->multiUserMode = true;
                        $this->userprefix = $this->params['userprefix'];
-               }
-               else
-               {
+               } else {
                        $this->usernames = array();
-                       if ( !is_array( $this->params['user'] ) )
+                       if ( !is_array( $this->params['user'] ) ) {
                                $this->params['user'] = array( $this->params['user'] );
-                       if ( !count( $this->params['user'] ) )
+                       }
+                       if ( !count( $this->params['user'] ) ) {
                                $this->dieUsage( 'User parameter may not be empty.', 'param_user' );
-                       foreach ( $this->params['user'] as $u )
+                       }
+                       foreach ( $this->params['user'] as $u ) {
                                $this->prepareUsername( $u );
+                       }
                        $this->prefixMode = false;
                        $this->multiUserMode = ( count( $this->params['user'] ) > 1 );
                }
@@ -94,21 +94,22 @@ class ApiQueryContributions extends ApiQueryBase {
                while ( $row = $db->fetchObject( $res ) ) {
                        if ( ++ $count > $limit ) {
                                // We've reached the one extra which shows that there are additional pages to be had. Stop here...
-                               if ( $this->multiUserMode )
+                               if ( $this->multiUserMode ) {
                                        $this->setContinueEnumParameter( 'continue', $this->continueStr( $row ) );
-                               else
+                               } else {
                                        $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->rev_timestamp ) );
+                               }
                                break;
                        }
 
                        $vals = $this->extractRowInfo( $row );
                        $fit = $this->getResult()->addValue( array( 'query', $this->getModuleName() ), null, $vals );
-                       if ( !$fit )
-                       {
-                               if ( $this->multiUserMode )
+                       if ( !$fit ) {
+                               if ( $this->multiUserMode ) {
                                        $this->setContinueEnumParameter( 'continue', $this->continueStr( $row ) );
-                               else
+                               } else {
                                        $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->rev_timestamp ) );
+                               }
                                break;
                        }
                }
@@ -150,32 +151,37 @@ class ApiQueryContributions extends ApiQueryBase {
                $this->addWhere( 'page_id=rev_page' );
 
                // Handle continue parameter
-               if ( $this->multiUserMode && !is_null( $this->params['continue'] ) )
-               {
+               if ( $this->multiUserMode && !is_null( $this->params['continue'] ) ) {
                        $continue = explode( '|', $this->params['continue'] );
-                       if ( count( $continue ) != 2 )
-                               $this->dieUsage( "Invalid continue param. You should pass the original " .
-                                       "value returned by the previous query", "_badcontinue" );
+                       if ( count( $continue ) != 2 ) {
+                               $this->dieUsage( 'Invalid continue param. You should pass the original ' .
+                                       'value returned by the previous query', '_badcontinue' );
+                       }
                        $encUser = $this->getDB()->strencode( $continue[0] );
                        $encTS = wfTimestamp( TS_MW, $continue[1] );
                        $op = ( $this->params['dir'] == 'older' ? '<' : '>' );
-                       $this->addWhere( "rev_user_text $op '$encUser' OR " .
-                                       "(rev_user_text = '$encUser' AND " .
-                                       "rev_timestamp $op= '$encTS')" );
+                       $this->addWhere(
+                               "rev_user_text $op '$encUser' OR " .
+                               "(rev_user_text = '$encUser' AND " .
+                               "rev_timestamp $op= '$encTS')"
+                       );
                }
 
-               if ( !$wgUser->isAllowed( 'hideuser' ) )
+               if ( !$wgUser->isAllowed( 'hideuser' ) ) {
                        $this->addWhere( $this->getDB()->bitAnd( 'rev_deleted', Revision::DELETED_USER ) . ' = 0' );
+               }
                // We only want pages by the specified users.
-               if ( $this->prefixMode )
+               if ( $this->prefixMode ) {
                        $this->addWhere( 'rev_user_text' . $this->getDB()->buildLike( $this->userprefix, $this->getDB()->anyString() ) );
-               else
+               } else {
                        $this->addWhereFld( 'rev_user_text', $this->usernames );
+               }
                // ... and in the specified timeframe.
                // Ensure the same sort order for rev_user_text and rev_timestamp
                // so our query is indexed
-               if ( $this->multiUserMode )
+               if ( $this->multiUserMode ) {
                        $this->addWhereRange( 'rev_user_text', $this->params['dir'], null, null );
+               }
                $this->addWhereRange( 'rev_timestamp',
                        $this->params['dir'], $this->params['start'], $this->params['end'] );
                $this->addWhereFld( 'page_namespace', $this->params['namespace'] );
@@ -185,7 +191,9 @@ class ApiQueryContributions extends ApiQueryBase {
                        $show = array_flip( $show );
                        if ( ( isset( $show['minor'] ) && isset( $show['!minor'] ) )
                                        || ( isset( $show['patrolled'] ) && isset( $show['!patrolled'] ) ) )
-                               $this->dieUsageMsg( 'show' );
+                       {
+                               $this->dieUsageMsg( array( 'show' ) );
+                       }
 
                        $this->addWhereIf( 'rev_minor_edit = 0', isset( $show['!minor'] ) );
                        $this->addWhereIf( 'rev_minor_edit != 0', isset( $show['minor'] ) );
@@ -205,19 +213,19 @@ class ApiQueryContributions extends ApiQueryBase {
                        'rev_user_text',
                        'rev_deleted'
                ) );
-               
+
                if ( isset( $show['patrolled'] ) || isset( $show['!patrolled'] ) ||
                                 $this->fld_patrolled )
                {
                        global $wgUser;
-                       if ( !$wgUser->useRCPatrol() && !$wgUser->useNPPatrol() )
-                               $this->dieUsage( "You need the patrol right to request the patrolled flag", 'permissiondenied' );
+                       if ( !$wgUser->useRCPatrol() && !$wgUser->useNPPatrol() ) {
+                               $this->dieUsage( 'You need the patrol right to request the patrolled flag', 'permissiondenied' );
+                       }
                        // Use a redundant join condition on both
                        // timestamp and ID so we can use the timestamp
                        // index
                        $index['recentchanges'] = 'rc_user_text';
-                       if ( isset( $show['patrolled'] ) || isset( $show['!patrolled'] ) )
-                       {
+                       if ( isset( $show['patrolled'] ) || isset( $show['!patrolled'] ) ) {
                                // Put the tables in the right order for
                                // STRAIGHT_JOIN
                                $tables = array( 'revision', 'recentchanges', 'page' );
@@ -225,9 +233,7 @@ class ApiQueryContributions extends ApiQueryBase {
                                $this->addWhere( 'rc_user_text=rev_user_text' );
                                $this->addWhere( 'rc_timestamp=rev_timestamp' );
                                $this->addWhere( 'rc_this_oldid=rev_id' );
-                       }
-                       else
-                       {
+                       } else {
                                $tables[] = 'recentchanges';
                                $this->addJoinConds( array( 'recentchanges' => array(
                                        'LEFT JOIN', array(
@@ -241,28 +247,27 @@ class ApiQueryContributions extends ApiQueryBase {
                $this->addFieldsIf( 'rev_page', $this->fld_ids );
                $this->addFieldsIf( 'rev_id', $this->fld_ids || $this->fld_flags );
                $this->addFieldsIf( 'page_latest', $this->fld_flags );
-               // $this->addFieldsIf('rev_text_id', $this->fld_ids); // Should this field be exposed?
+               // $this->addFieldsIf( 'rev_text_id', $this->fld_ids ); // Should this field be exposed?
                $this->addFieldsIf( 'rev_comment', $this->fld_comment || $this->fld_parsedcomment );
                $this->addFieldsIf( 'rev_len', $this->fld_size );
                $this->addFieldsIf( 'rev_minor_edit', $this->fld_flags );
                $this->addFieldsIf( 'rev_parent_id', $this->fld_flags );
                $this->addFieldsIf( 'rc_patrolled', $this->fld_patrolled );
-               
-               if ( $this->fld_tags )
-               {
+
+               if ( $this->fld_tags ) {
                        $this->addTables( 'tag_summary' );
                        $this->addJoinConds( array( 'tag_summary' => array( 'LEFT JOIN', array( 'rev_id=ts_rev_id' ) ) ) );
                        $this->addFields( 'ts_tags' );
                }
-               
+
                if ( isset( $this->params['tag'] ) ) {
                        $this->addTables( 'change_tag' );
                        $this->addJoinConds( array( 'change_tag' => array( 'INNER JOIN', array( 'rev_id=ct_rev_id' ) ) ) );
                        $this->addWhereFld( 'ct_tag', $this->params['tag'] );
                        global $wgOldChangeTagsIndex;
-                       $index['change_tag'] = $wgOldChangeTagsIndex ?  'ct_tag' : 'change_tag_tag_id';
+                       $index['change_tag'] = $wgOldChangeTagsIndex ? 'ct_tag' : 'change_tag_tag_id';
                }
-               
+
                $this->addOption( 'USE INDEX', $index );
        }
 
@@ -270,42 +275,48 @@ class ApiQueryContributions extends ApiQueryBase {
         * Extract fields from the database row and append them to a result array
         */
        private function extractRowInfo( $row ) {
-
                $vals = array();
 
                $vals['user'] = $row->rev_user_text;
-               if ( $row->rev_deleted & Revision::DELETED_USER )
+               if ( $row->rev_deleted & Revision::DELETED_USER ) {
                        $vals['userhidden'] = '';
+               }
                if ( $this->fld_ids ) {
                        $vals['pageid'] = intval( $row->rev_page );
                        $vals['revid'] = intval( $row->rev_id );
-                       // $vals['textid'] = intval($row->rev_text_id); // todo: Should this field be exposed?
+                       // $vals['textid'] = intval( $row->rev_text_id ); // todo: Should this field be exposed?
                }
 
                $title = Title::makeTitle( $row->page_namespace, $row->page_title );
 
-               if ( $this->fld_title )
+               if ( $this->fld_title ) {
                        ApiQueryBase::addTitleInfo( $vals, $title );
+               }
 
-               if ( $this->fld_timestamp )
+               if ( $this->fld_timestamp ) {
                        $vals['timestamp'] = wfTimestamp( TS_ISO_8601, $row->rev_timestamp );
+               }
 
                if ( $this->fld_flags ) {
-                       if ( $row->rev_parent_id == 0 && !is_null( $row->rev_parent_id ) )
+                       if ( $row->rev_parent_id == 0 && !is_null( $row->rev_parent_id ) ) {
                                $vals['new'] = '';
-                       if ( $row->rev_minor_edit )
+                       }
+                       if ( $row->rev_minor_edit ) {
                                $vals['minor'] = '';
-                       if ( $row->page_latest == $row->rev_id )
+                       }
+                       if ( $row->page_latest == $row->rev_id ) {
                                $vals['top'] = '';
+                       }
                }
 
                if ( ( $this->fld_comment || $this->fld_parsedcomment ) && isset( $row->rev_comment ) ) {
-                       if ( $row->rev_deleted & Revision::DELETED_COMMENT )
+                       if ( $row->rev_deleted & Revision::DELETED_COMMENT ) {
                                $vals['commenthidden'] = '';
-                       else {
-                               if ( $this->fld_comment )
+                       else {
+                               if ( $this->fld_comment ) {
                                        $vals['comment'] = $row->rev_comment;
-                               
+                               }
+
                                if ( $this->fld_parsedcomment ) {
                                        global $wgUser;
                                        $vals['parsedcomment'] = $wgUser->getSkin()->formatComment( $row->rev_comment, $title );
@@ -313,11 +324,13 @@ class ApiQueryContributions extends ApiQueryBase {
                        }
                }
 
-               if ( $this->fld_patrolled && $row->rc_patrolled )
+               if ( $this->fld_patrolled && $row->rc_patrolled ) {
                        $vals['patrolled'] = '';
-               
-               if ( $this->fld_size && !is_null( $row->rev_len ) )
+               }
+
+               if ( $this->fld_size && !is_null( $row->rev_len ) ) {
                        $vals['size'] = intval( $row->rev_len );
+               }
 
                if ( $this->fld_tags ) {
                        if ( $row->ts_tags ) {
@@ -328,51 +341,50 @@ class ApiQueryContributions extends ApiQueryBase {
                                $vals['tags'] = array();
                        }
                }
-               
+
                return $vals;
        }
-       
-       private function continueStr( $row )
-       {
+
+       private function continueStr( $row ) {
                return $row->rev_user_text . '|' .
                        wfTimestamp( TS_ISO_8601, $row->rev_timestamp );
        }
 
        public function getAllowedParams() {
-               return array (
-                       'limit' => array (
-                               ApiBase :: PARAM_DFLT => 10,
-                               ApiBase :: PARAM_TYPE => 'limit',
-                               ApiBase :: PARAM_MIN => 1,
-                               ApiBase :: PARAM_MAX => ApiBase :: LIMIT_BIG1,
-                               ApiBase :: PARAM_MAX2 => ApiBase :: LIMIT_BIG2
+               return array(
+                       'limit' => array(
+                               ApiBase::PARAM_DFLT => 10,
+                               ApiBase::PARAM_TYPE => 'limit',
+                               ApiBase::PARAM_MIN => 1,
+                               ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
+                               ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
                        ),
-                       'start' => array (
-                               ApiBase :: PARAM_TYPE => 'timestamp'
+                       'start' => array(
+                               ApiBase::PARAM_TYPE => 'timestamp'
                        ),
-                       'end' => array (
-                               ApiBase :: PARAM_TYPE => 'timestamp'
+                       'end' => array(
+                               ApiBase::PARAM_TYPE => 'timestamp'
                        ),
                        'continue' => null,
-                       'user' => array (
-                               ApiBase :: PARAM_ISMULTI => true
+                       'user' => array(
+                               ApiBase::PARAM_ISMULTI => true
                        ),
                        'userprefix' => null,
-                       'dir' => array (
-                               ApiBase :: PARAM_DFLT => 'older',
-                               ApiBase :: PARAM_TYPE => array (
+                       'dir' => array(
+                               ApiBase::PARAM_DFLT => 'older',
+                               ApiBase::PARAM_TYPE => array(
                                        'newer',
                                        'older'
                                )
                        ),
-                       'namespace' => array (
-                               ApiBase :: PARAM_ISMULTI => true,
-                               ApiBase :: PARAM_TYPE => 'namespace'
+                       'namespace' => array(
+                               ApiBase::PARAM_ISMULTI => true,
+                               ApiBase::PARAM_TYPE => 'namespace'
                        ),
-                       'prop' => array (
-                               ApiBase :: PARAM_ISMULTI => true,
-                               ApiBase :: PARAM_DFLT => 'ids|title|timestamp|comment|size|flags',
-                               ApiBase :: PARAM_TYPE => array (
+                       'prop' => array(
+                               ApiBase::PARAM_ISMULTI => true,
+                               ApiBase::PARAM_DFLT => 'ids|title|timestamp|comment|size|flags',
+                               ApiBase::PARAM_TYPE => array(
                                        'ids',
                                        'title',
                                        'timestamp',
@@ -384,9 +396,9 @@ class ApiQueryContributions extends ApiQueryBase {
                                        'tags'
                                )
                        ),
-                       'show' => array (
-                               ApiBase :: PARAM_ISMULTI => true,
-                               ApiBase :: PARAM_TYPE => array (
+                       'show' => array(
+                               ApiBase::PARAM_ISMULTI => true,
+                               ApiBase::PARAM_TYPE => array(
                                        'minor',
                                        '!minor',
                                        'patrolled',
@@ -398,7 +410,7 @@ class ApiQueryContributions extends ApiQueryBase {
        }
 
        public function getParamDescription() {
-               return array (
+               return array(
                        'limit' => 'The maximum number of contributions to return.',
                        'start' => 'The start timestamp to return from.',
                        'end' => 'The end timestamp to return to.',
@@ -417,7 +429,7 @@ class ApiQueryContributions extends ApiQueryBase {
        public function getDescription() {
                return 'Get all edits by a user';
        }
-       
+
        public function getPossibleErrors() {
                return array_merge( parent::getPossibleErrors(), array(
                        array( 'code' => 'param_user', 'info' => 'User parameter may not be empty.' ),
@@ -428,7 +440,7 @@ class ApiQueryContributions extends ApiQueryBase {
        }
 
        protected function getExamples() {
-               return array (
+               return array(
                        'api.php?action=query&list=usercontribs&ucuser=YurikBot',
                        'api.php?action=query&list=usercontribs&ucuserprefix=217.121.114.',
                );