isBlacklisted( $title, $action ); if( $blacklisted instanceof TitleBlacklistEntry ) { wfLoadExtensionMessages( 'TitleBlacklist' ); $message = $blacklisted->getCustomMessage(); if( is_null( $message ) ) $message = 'titleblacklist-forbidden-edit'; $result = array( $message, htmlspecialchars( $blacklisted->getRaw() ), $title->getFullText() ); return false; } } return true; } /** AbortMove hook */ public static function abortMove( $old, $nt, $user, &$err ) { global $wgTitleBlacklist; efInitTitleBlacklist(); $blacklisted = $wgTitleBlacklist->isBlacklisted( $nt, 'move' ); if( !$blacklisted ) $blacklisted = $wgTitleBlacklist->isBlacklisted( $old, 'edit' ); if( $blacklisted instanceof TitleBlacklistEntry ) { wfLoadExtensionMessages( 'TitleBlacklist' ); $message = $blacklisted->getCustomMessage(); if( is_null( $message ) ) $message = 'titleblacklist-forbidden-move'; $err = wfMsgWikiHtml( $message, htmlspecialchars( $blacklisted->getRaw() ), htmlspecialchars( $old->getFullText() ), htmlspecialchars( $nt->getFullText() ) ); return false; } return true; } /** * Check whether a user name is acceptable, * and set a message if unacceptable. * * Used by abortNewAccount and centralAuthAutoCreate * * @return bool Acceptable */ private static function acceptNewUserName( $userName, &$message ) { efInitTitleBlacklist(); $title = Title::newFromText( $userName ); $blacklisted = $wgTitleBlacklist->isBlacklisted( $title, 'new-account' ); if( !( $blacklisted instanceof TitleBlacklistEntry ) ) $blacklisted = $wgTitleBlacklist->isBlacklisted( $title, 'create' ); if( $blacklisted instanceof TitleBlacklistEntry ) { wfLoadExtensionMessages( 'TitleBlacklist' ); $message = $blacklisted->getCustomMessage(); if( is_null( $message ) ) $message = wfMsgWikiHtml( 'titleblacklist-forbidden-new-account', $blacklisted->getRaw(), $userName ); $result = array( $message, htmlspecialchars( $blacklisted->getRaw() ), $title->getFullText() ); return false; } return true; } /** AbortNewAccount hook */ public static function abortNewAccount($user, &$message) { global $wgTitleBlacklist, $wgUser; if ( $wgUser->isAllowed( 'tboverride' ) ) return true; return self::acceptNewUserName( $user->getName(), $message ); } /** CentralAuthAutoCreate hook */ public static function centralAuthAutoCreate( $user, $userName ) { $message = ''; # Will be ignored return self::acceptNewUserName( $userName, $message ); } /** EditFilter hook */ public static function validateBlacklist( $editor, $text, $section, $error ) { global $wgTitleBlacklist; efInitTitleBlacklist(); $title = $editor->mTitle; if( $title->getNamespace() == NS_MEDIAWIKI && $title->getDBkey() == 'Titleblacklist' ) { $bl = $wgTitleBlacklist->parseBlacklist( $text ); $ok = $wgTitleBlacklist->validate( $bl ); if( count( $ok ) == 0 ) { return true; } wfLoadExtensionMessages( 'TitleBlacklist' ); $errmsg = wfMsgExt( 'titleblacklist-invalid', array( 'parsemag' ), count( $ok ) ); $errlines = '* ' . implode( "\n* ", array_map( 'wfEscapeWikiText', $ok ) ) . ''; $error = '