r18496 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r18495‎ | r18496 | r18497 >
Date:19:43, 22 December 2006
Author:robchurch
Status:old
Tags:
Comment:
Sort out user rights when patrolling. If a user has the "autopatrol" right, then their edits are auto-marked as patrolled. If a user *doesn't* have this right, then they can't mark their own edits as patrolled in the normal fashion.
Modified paths:
  • /trunk/phase3/RELEASE-NOTES (modified) (history)
  • /trunk/phase3/includes/Article.php (modified) (history)
  • /trunk/phase3/includes/DefaultSettings.php (modified) (history)
  • /trunk/phase3/includes/RecentChange.php (modified) (history)
  • /trunk/phase3/languages/messages/MessagesEn.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/Article.php
@@ -1340,7 +1340,7 @@
13411341 $revisionId );
13421342
13431343 # Mark as patrolled if the user can do so
1344 - if( $wgUser->isAllowed( 'patrol' ) ) {
 1344+ if( $wgUser->isAllowed( 'autopatrol' ) ) {
13451345 RecentChange::markPatrolled( $rcid );
13461346 }
13471347 }
@@ -1401,7 +1401,7 @@
14021402 $rcid = RecentChange::notifyNew( $now, $this->mTitle, $isminor, $wgUser, $summary, $bot,
14031403 '', strlen( $text ), $revisionId );
14041404 # Mark as patrolled if the user can
1405 - if( $wgUser->isAllowed( 'patrol' ) ) {
 1405+ if( $wgUser->isAllowed( 'autopatrol' ) ) {
14061406 RecentChange::markPatrolled( $rcid );
14071407 }
14081408 }
@@ -1461,7 +1461,7 @@
14621462 */
14631463 function markpatrolled() {
14641464 global $wgOut, $wgRequest, $wgUseRCPatrol, $wgUser;
1465 - $wgOut->setRobotpolicy( 'noindex,nofollow' );
 1465+ $wgOut->setRobotPolicy( 'noindex,nofollow' );
14661466
14671467 # Check RC patrol config. option
14681468 if( !$wgUseRCPatrol ) {
@@ -1475,20 +1475,45 @@
14761476 return;
14771477 }
14781478
 1479+ # If we haven't been given an rc_id value, we can't do anything
14791480 $rcid = $wgRequest->getVal( 'rcid' );
1480 - if ( !is_null ( $rcid ) ) {
1481 - if( wfRunHooks( 'MarkPatrolled', array( &$rcid, &$wgUser, false ) ) ) {
1482 - RecentChange::markPatrolled( $rcid );
1483 - wfRunHooks( 'MarkPatrolledComplete', array( &$rcid, &$wgUser, false ) );
1484 - $wgOut->setPagetitle( wfMsg( 'markedaspatrolled' ) );
1485 - $wgOut->addWikiText( wfMsg( 'markedaspatrolledtext' ) );
 1481+ if( !$rcid ) {
 1482+ $wgOut->errorPage( 'markedaspatrollederror', 'markedaspatrollederrortext' );
 1483+ return;
 1484+ }
 1485+
 1486+ # Handle the 'MarkPatrolled' hook
 1487+ if( !wfRunHooks( 'MarkPatrolled', array( $rcid, &$wgUser, false ) ) ) {
 1488+ return;
 1489+ }
 1490+
 1491+ $return = SpecialPage::getTitleFor( 'Recentchanges' );
 1492+ # If it's left up to us, check that the user is allowed to patrol this edit
 1493+ # If the user has the "autopatrol" right, then we'll assume there are no
 1494+ # other conditions stopping them doing so
 1495+ if( !$wgUser->isAllowed( 'autopatrol' ) ) {
 1496+ $rc = RecentChange::newFromId( $rcid );
 1497+ # Graceful error handling, as we've done before here...
 1498+ # (If the recent change doesn't exist, then it doesn't matter whether
 1499+ # the user is allowed to patrol it or not; nothing is going to happen
 1500+ if( is_object( $rc ) && $wgUser->getName() == $rc->getAttribute( 'rc_user_text' ) ) {
 1501+ # The user made this edit, and can't patrol it
 1502+ # Tell them so, and then back off
 1503+ $wgOut->setPageTitle( wfMsg( 'markedaspatrollederror' ) );
 1504+ $wgOut->addWikiText( wfMsgNoTrans( 'markedaspatrollederror-noautopatrol' ) );
 1505+ $wgOut->returnToMain( false, $return );
 1506+ return;
14861507 }
1487 - $rcTitle = SpecialPage::getTitleFor( 'Recentchanges' );
1488 - $wgOut->returnToMain( false, $rcTitle->getPrefixedText() );
14891508 }
1490 - else {
1491 - $wgOut->showErrorPage( 'markedaspatrollederror', 'markedaspatrollederrortext' );
1492 - }
 1509+
 1510+ # Mark the edit as patrolled
 1511+ RecentChange::markPatrolled( $rcid );
 1512+ wfRunHooks( 'MarkPatrolledComplete', array( &$rcid, &$wgUser, false ) );
 1513+
 1514+ # Inform the user
 1515+ $wgOut->setPageTitle( wfMsg( 'markedaspatrolled' ) );
 1516+ $wgOut->addWikiText( wfMsgNoTrans( 'markedaspatrolledtext' ) );
 1517+ $wgOut->returnToMain( false, $return );
14931518 }
14941519
14951520 /**
Index: trunk/phase3/includes/RecentChange.php
@@ -64,6 +64,24 @@
6565 $rc->numberofWatchingusers = false;
6666 return $rc;
6767 }
 68+
 69+ /**
 70+ * Obtain the recent change with a given rc_id value
 71+ *
 72+ * @param $rcid rc_id value to retrieve
 73+ * @return RecentChange
 74+ */
 75+ public static function newFromId( $rcid ) {
 76+ $dbr =& wfGetDB( DB_SLAVE );
 77+ $res = $dbr->select( 'recentchanges', '*', array( 'rc_id' => $rcid ), __METHOD__ );
 78+ if( $res && $dbr->numRows( $res ) > 0 ) {
 79+ $row = $dbr->fetchObject( $res );
 80+ $dbr->freeResult( $res );
 81+ return self::newFromRow( $row );
 82+ } else {
 83+ return NULL;
 84+ }
 85+ }
6886
6987 # Accessors
7088
@@ -449,6 +467,15 @@
450468 $this->mExtra = array();
451469 }
452470
 471+ /**
 472+ * Get an attribute value
 473+ *
 474+ * @param $name Attribute name
 475+ * @return mixed
 476+ */
 477+ public function getAttribute( $name ) {
 478+ return isset( $this->mAttribs[$name] ) ? $this->mAttribs[$name] : NULL;
 479+ }
453480
454481 /**
455482 * Gets the end part of the diff URL associated with this object
Index: trunk/phase3/includes/DefaultSettings.php
@@ -935,6 +935,7 @@
936936 $wgGroupPermissions['sysop']['importupload'] = true;
937937 $wgGroupPermissions['sysop']['move'] = true;
938938 $wgGroupPermissions['sysop']['patrol'] = true;
 939+$wgGroupPermissions['sysop']['autopatrol'] = true;
939940 $wgGroupPermissions['sysop']['protect'] = true;
940941 $wgGroupPermissions['sysop']['proxyunbannable'] = true;
941942 $wgGroupPermissions['sysop']['rollback'] = true;
Index: trunk/phase3/RELEASE-NOTES
@@ -345,8 +345,6 @@
346346 * Don't show "you can view and copy the source of this page" message for
347347 pages which don't exist
348348 * (bug 8310) Blank line added to top of 'post' when page is blank
349 -* (bug 5411) Remove autopatrol preference; users who can mark edits patrolled
350 - will now have their edits marked as such regardless
351349 * (bug 8109) Template parameters ignored in "recentchangestext"
352350 * Gracefully skip redirect-to-fragment on WebKit versions less than 420;
353351 it messes up on current versions of Safari but is ok in the latest
@@ -373,6 +371,11 @@
374372 * (bug 7685) Use explicit values for ar_text and ar_flags when deleting,
375373 for better compatibility with MySQL's strict mode
376374 * Update default interwiki values to reflect changed location of ursine:
 375+* (bug 5411) Remove autopatrol preference
 376+* Users who have the "autopatrol" permission will have their edits marked as
 377+ patrolled automatically
 378+* Users who do not have the "autopatrol" permission will no longer be able
 379+ to mark their own edits as patrolled
377380
378381 == Languages updated ==
379382
Index: trunk/phase3/languages/messages/MessagesEn.php
@@ -2117,6 +2117,7 @@
21182118 'rcpatroldisabledtext' => "The Recent Changes Patrol feature is currently disabled.",
21192119 'markedaspatrollederror' => "Cannot mark as patrolled",
21202120 'markedaspatrollederrortext' => "You need to specify a revision to mark as patrolled.",
 2121+'markedaspatrollederror-noautopatrol' => 'You are not allowed to mark your own changes as patrolled.',
21212122
21222123 # Monobook.js: tooltips and access keys for monobook
21232124 'Monobook.js' => '/* tooltips and access keys */

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant