3 * Caches user genders when needed to use correct namespace aliases.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @author Niklas Laxström
24 use MediaWiki\MediaWikiServices
;
27 * Caches user genders when needed to use correct namespace aliases.
32 protected $cache = [];
34 protected $misses = 0;
35 protected $missLimit = 1000;
38 * @deprecated in 1.28 see MediaWikiServices::getInstance()->getGenderCache()
41 public static function singleton() {
42 return MediaWikiServices
::getInstance()->getGenderCache();
46 * Returns the default gender option in this wiki.
49 protected function getDefault() {
50 if ( $this->default === null ) {
51 $this->default = User
::getDefaultOption( 'gender' );
54 return $this->default;
58 * Returns the gender for given username.
59 * @param string|User $username Username
60 * @param string $caller The calling method
63 public function getGenderOf( $username, $caller = '' ) {
66 if ( $username instanceof User
) {
67 $username = $username->getName();
70 $username = self
::normalizeUsername( $username );
71 if ( !isset( $this->cache
[$username] ) ) {
72 if ( $this->misses
>= $this->missLimit
&& $wgUser->getName() !== $username ) {
73 if ( $this->misses
=== $this->missLimit
) {
75 wfDebug( __METHOD__
. ": too many misses, returning default onwards\n" );
78 return $this->getDefault();
81 $this->doQuery( $username, $caller );
85 /* Undefined if there is a valid username which for some reason doesn't
86 * exist in the database.
88 return isset( $this->cache
[$username] ) ?
$this->cache
[$username] : $this->getDefault();
92 * Wrapper for doQuery that processes raw LinkBatch data.
95 * @param string $caller
97 public function doLinkBatch( $data, $caller = '' ) {
99 foreach ( $data as $ns => $pagenames ) {
100 if ( !MWNamespace
::hasGenderDistinction( $ns ) ) {
103 foreach ( array_keys( $pagenames ) as $username ) {
104 $users[$username] = true;
108 $this->doQuery( array_keys( $users ), $caller );
112 * Wrapper for doQuery that processes a title or string array.
115 * @param array $titles Array of Title objects or strings
116 * @param string $caller The calling method
118 public function doTitlesArray( $titles, $caller = '' ) {
120 foreach ( $titles as $title ) {
121 $titleObj = is_string( $title ) ? Title
::newFromText( $title ) : $title;
125 if ( !MWNamespace
::hasGenderDistinction( $titleObj->getNamespace() ) ) {
128 $users[] = $titleObj->getText();
131 $this->doQuery( $users, $caller );
135 * Preloads genders for given list of users.
136 * @param array|string $users Usernames
137 * @param string $caller The calling method
139 public function doQuery( $users, $caller = '' ) {
140 $default = $this->getDefault();
143 foreach ( (array)$users as $value ) {
144 $name = self
::normalizeUsername( $value );
145 // Skip users whose gender setting we already know
146 if ( !isset( $this->cache
[$name] ) ) {
147 // For existing users, this value will be overwritten by the correct value
148 $this->cache
[$name] = $default;
149 // query only for valid names, which can be in the database
150 if ( User
::isValidUserName( $name ) ) {
151 $usersToCheck[] = $name;
156 if ( count( $usersToCheck ) === 0 ) {
160 $dbr = wfGetDB( DB_SLAVE
);
161 $table = [ 'user', 'user_properties' ];
162 $fields = [ 'user_name', 'up_value' ];
163 $conds = [ 'user_name' => $usersToCheck ];
164 $joins = [ 'user_properties' =>
165 [ 'LEFT JOIN', [ 'user_id = up_user', 'up_property' => 'gender' ] ] ];
167 $comment = __METHOD__
;
168 if ( strval( $caller ) !== '' ) {
169 $comment .= "/$caller";
171 $res = $dbr->select( $table, $fields, $conds, $comment, [], $joins );
173 foreach ( $res as $row ) {
174 $this->cache
[$row->user_name
] = $row->up_value ?
$row->up_value
: $default;
178 private static function normalizeUsername( $username ) {
179 // Strip off subpages
180 $indexSlash = strpos( $username, '/' );
181 if ( $indexSlash !== false ) {
182 $username = substr( $username, 0, $indexSlash );
185 // normalize underscore/spaces
186 return strtr( $username, '_', ' ' );