API: * (bug 16159) Add wlshow=patrolled|!patrolled to list=watchlist
authorRoan Kattouw <catrope@users.mediawiki.org>
Tue, 28 Oct 2008 14:20:29 +0000 (14:20 +0000)
committerRoan Kattouw <catrope@users.mediawiki.org>
Tue, 28 Oct 2008 14:20:29 +0000 (14:20 +0000)
* Followup of r42077: fix bug 15945 (use User::useRCPatrol() and useNPPatrol() rather than isAllowed('patrol')) for list=watchlist as well

RELEASE-NOTES
includes/api/ApiQueryWatchlist.php

index 8726f65..977f8c1 100644 (file)
@@ -374,6 +374,7 @@ The following extensions are migrated into MediaWiki 1.14:
   an error
 * (bug 16105) Image metadata attributes containing spaces result in invalid XML
 * (bug 16126) Added siprop=magicwords to meta=siteinfo
+* (bug 16159) Added wlshow=patrolled|!patrolled to list=watchlist
 
 === Languages updated in 1.14 ===
 
index ca63347..a70ea49 100644 (file)
@@ -76,8 +76,8 @@ class ApiQueryWatchlist extends ApiQueryGeneratorBase {
                        $this->fld_patrol = isset($prop['patrol']);
 
                        if ($this->fld_patrol) {
-                               global $wgUseRCPatrol, $wgUser;
-                               if (!$wgUseRCPatrol || !$wgUser->isAllowed('patrol'))
+                               global $wgUser;
+                               if (!$wgUser->useRCPatrol() && !$wgUser->useNPPatrol())
                                        $this->dieUsage('patrol property is not available', 'patrol');
                        }
                }
@@ -141,10 +141,16 @@ class ApiQueryWatchlist extends ApiQueryGeneratorBase {
                        /* Check for conflicting parameters. */
                        if ((isset ($show['minor']) && isset ($show['!minor']))
                                        || (isset ($show['bot']) && isset ($show['!bot']))
-                                       || (isset ($show['anon']) && isset ($show['!anon']))) {
+                                       || (isset ($show['anon']) && isset ($show['!anon']))
+                                       || (isset ($show['patrolled']) && isset ($show['!patrolled']))) {
 
                                $this->dieUsage("Incorrect parameter - mutually exclusive values may not be supplied", 'show');
                        }
+                       
+                       // Check permissions
+                       global $wgUser;
+                       if((isset($show['patrolled']) || isset($show['!patrolled'])) && !$wgUser->useRCPatrol() && !$wgUser->useNPPatrol())
+                               $this->dieUsage("You need the patrol right to request the patrolled flag", 'permissiondenied');
 
                        /* Add additional conditions to query depending upon parameters. */
                        $this->addWhereIf('rc_minor = 0', isset ($show['!minor']));
@@ -153,6 +159,8 @@ class ApiQueryWatchlist extends ApiQueryGeneratorBase {
                        $this->addWhereIf('rc_bot != 0', isset ($show['bot']));
                        $this->addWhereIf('rc_user = 0', isset ($show['anon']));
                        $this->addWhereIf('rc_user != 0', isset ($show['!anon']));
+                       $this->addWhereIf('rc_patrolled = 0', isset($show['!patrolled']));
+                       $this->addWhereIf('rc_patrolled != 0', isset($show['patrolled']));                      
                }
 
 
@@ -292,7 +300,9 @@ class ApiQueryWatchlist extends ApiQueryGeneratorBase {
                                        'bot',
                                        '!bot',
                                        'anon',
-                                       '!anon'
+                                       '!anon',
+                                       'patrolled',
+                                       '!patrolled',
                                )
                        )
                );