From a1789ddde42033f1b05cc4929491214ee6e79383 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Thu, 17 Dec 2015 09:15:42 +0100 Subject: Update to MediaWiki 1.26.0 --- extensions/TitleBlacklist/TitleBlacklist.list.php | 40 +++++++++++++---------- 1 file changed, 23 insertions(+), 17 deletions(-) (limited to 'extensions/TitleBlacklist/TitleBlacklist.list.php') diff --git a/extensions/TitleBlacklist/TitleBlacklist.list.php b/extensions/TitleBlacklist/TitleBlacklist.list.php index a9578a59..489e87ab 100644 --- a/extensions/TitleBlacklist/TitleBlacklist.list.php +++ b/extensions/TitleBlacklist/TitleBlacklist.list.php @@ -37,9 +37,11 @@ class TitleBlacklist { * Load all configured blacklist sources */ public function load() { - global $wgTitleBlacklistSources, $wgMemc, $wgTitleBlacklistCaching; + global $wgTitleBlacklistSources, $wgTitleBlacklistCaching; + + $cache = ObjectCache::getMainWANInstance(); // Try to find something in the cache - $cachedBlacklist = $wgMemc->get( wfMemcKey( "title_blacklist_entries" ) ); + $cachedBlacklist = $cache->get( wfMemcKey( "title_blacklist_entries" ) ); if ( is_array( $cachedBlacklist ) && count( $cachedBlacklist ) > 0 && ( $cachedBlacklist[0]->getFormatVersion() == self::VERSION ) ) { $this->mBlacklist = $cachedBlacklist; return; @@ -51,7 +53,7 @@ class TitleBlacklist { foreach( $sources as $sourceName => $source ) { $this->mBlacklist = array_merge( $this->mBlacklist, $this->parseBlacklist( $this->getBlacklistText( $source ), $sourceName ) ); } - $wgMemc->set( wfMemcKey( "title_blacklist_entries" ), $this->mBlacklist, $wgTitleBlacklistCaching['expiry'] ); + $cache->set( wfMemcKey( "title_blacklist_entries" ), $this->mBlacklist, $wgTitleBlacklistCaching['expiry'] ); wfDebugLog( 'TitleBlacklist-cache', 'Updated ' . wfMemcKey( "title_blacklist_entries" ) . ' with ' . count( $this->mBlacklist ) . ' entries.' ); } @@ -60,15 +62,17 @@ class TitleBlacklist { * Load local whitelist */ public function loadWhitelist() { - global $wgMemc, $wgTitleBlacklistCaching; - $cachedWhitelist = $wgMemc->get( wfMemcKey( "title_whitelist_entries" ) ); + global $wgTitleBlacklistCaching; + + $cache = ObjectCache::getMainWANInstance(); + $cachedWhitelist = $cache->get( wfMemcKey( "title_whitelist_entries" ) ); if ( is_array( $cachedWhitelist ) && count( $cachedWhitelist ) > 0 && ( $cachedWhitelist[0]->getFormatVersion() != self::VERSION ) ) { $this->mWhitelist = $cachedWhitelist; return; } $this->mWhitelist = $this->parseBlacklist( wfMessage( 'titlewhitelist' ) ->inContentLanguage()->text(), 'whitelist' ); - $wgMemc->set( wfMemcKey( "title_whitelist_entries" ), $this->mWhitelist, $wgTitleBlacklistCaching['expiry'] ); + $cache->set( wfMemcKey( "title_whitelist_entries" ), $this->mWhitelist, $wgTitleBlacklistCaching['expiry'] ); } /** @@ -136,7 +140,7 @@ class TitleBlacklist { } /** - * Check whether the blacklist restricts giver nuser + * Check whether the blacklist restricts given user * performing a specific action on the given Title * * @param $title Title to check @@ -147,16 +151,18 @@ class TitleBlacklist { * blacklisted; otherwise false */ public function userCannot( $title, $user, $action = 'edit', $override = true ) { + $entry = $this->isBlacklisted( $title, $action ); + if ( !$entry ) { + return false; + } + $params = $entry->getParams(); + if ( isset( $params['autoconfirmed'] ) && $user->isAllowed( 'autoconfirmed' ) ) { + return false; + } if ( $override && self::userCanOverride( $user, $action ) ) { return false; - } else { - $entry = $this->isBlacklisted( $title, $action ); - if ( !$entry ) { - return false; - } - $params = $entry->getParams(); - return isset( $params['autoconfirmed'] ) && $user->isAllowed( 'autoconfirmed' ) ? false : $entry; } + return $entry; } /** @@ -220,7 +226,7 @@ class TitleBlacklist { /** * Get the current blacklist * - * @return Array of TitleBlacklistEntry items + * @return TitleBlacklistEntry[] */ public function getBlacklist() { if ( is_null( $this->mBlacklist ) ) { @@ -265,8 +271,8 @@ class TitleBlacklist { * Invalidate the blacklist cache */ public function invalidate() { - global $wgMemc; - $wgMemc->delete( wfMemcKey( "title_blacklist_entries" ) ); + $cache = ObjectCache::getMainWANInstance(); + $cache->delete( wfMemcKey( "title_blacklist_entries" ) ); } /** -- cgit v1.2.2