3 * Caches current user names and other info based on user IDs.
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
28 protected $cache = []; // (uid => property => value)
29 protected $typesCached = []; // (uid => cache type => 1)
34 public static function singleton() {
35 static $instance = null;
36 if ( $instance === null ) {
37 $instance = new self();
43 protected function __construct() {
47 * Get a property of a user based on their user ID
49 * @param int $userId User ID
50 * @param string $prop User property
51 * @return mixed|bool The property or false if the user does not exist
53 public function getProp( $userId, $prop ) {
54 if ( !isset( $this->cache
[$userId][$prop] ) ) {
55 wfDebug( __METHOD__
. ": querying DB for prop '$prop' for user ID '$userId'.\n" );
56 $this->doQuery( [ $userId ] ); // cache miss
59 return isset( $this->cache
[$userId][$prop] )
60 ?
$this->cache
[$userId][$prop]
61 : false; // user does not exist?
65 * Get the name of a user or return $ip if the user ID is 0
72 public function getUserName( $userId, $ip ) {
73 return $userId > 0 ?
$this->getProp( $userId, 'name' ) : $ip;
77 * Preloads user names for given list of users.
78 * @param array $userIds List of user IDs
79 * @param array $options Option flags; include 'userpage' and 'usertalk'
80 * @param string $caller The calling method
82 public function doQuery( array $userIds, $options = [], $caller = '' ) {
86 $userIds = array_unique( $userIds );
88 foreach ( $userIds as $userId ) {
89 $userId = (int)$userId;
91 continue; // skip anons
93 if ( isset( $this->cache
[$userId]['name'] ) ) {
94 $usersToCheck[$userId] = $this->cache
[$userId]['name']; // already have name
96 $usersToQuery[] = $userId; // we need to get the name
100 // Lookup basic info for users not yet loaded...
101 if ( count( $usersToQuery ) ) {
102 $dbr = wfGetDB( DB_REPLICA
);
104 $conds = [ 'user_id' => $usersToQuery ];
105 $fields = [ 'user_name', 'user_real_name', 'user_registration', 'user_id' ];
107 $comment = __METHOD__
;
108 if ( strval( $caller ) !== '' ) {
109 $comment .= "/$caller";
112 $res = $dbr->select( $table, $fields, $conds, $comment );
113 foreach ( $res as $row ) { // load each user into cache
114 $userId = (int)$row->user_id
;
115 $this->cache
[$userId]['name'] = $row->user_name
;
116 $this->cache
[$userId]['real_name'] = $row->user_real_name
;
117 $this->cache
[$userId]['registration'] = $row->user_registration
;
118 $usersToCheck[$userId] = $row->user_name
;
122 $lb = new LinkBatch();
123 foreach ( $usersToCheck as $userId => $name ) {
124 if ( $this->queryNeeded( $userId, 'userpage', $options ) ) {
125 $lb->add( NS_USER
, $name );
126 $this->typesCached
[$userId]['userpage'] = 1;
128 if ( $this->queryNeeded( $userId, 'usertalk', $options ) ) {
129 $lb->add( NS_USER_TALK
, $name );
130 $this->typesCached
[$userId]['usertalk'] = 1;
137 * Check if a cache type is in $options and was not loaded for this user
139 * @param int $uid User ID
140 * @param string $type Cache type
141 * @param array $options Requested cache types
144 protected function queryNeeded( $uid, $type, array $options ) {
145 return ( in_array( $type, $options ) && !isset( $this->typesCached
[$uid][$type] ) );