3 * Represents the membership of a user to a user group.
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
24 * Represents a "user group membership" -- a specific instance of a user belonging
25 * to a group. For example, the fact that user Mary belongs to the sysop group is a
26 * user group membership.
28 * The class encapsulates rows in the user_groups table. The logic is low-level and
29 * doesn't run any hooks. Often, you will want to call User::addGroup() or
30 * User::removeGroup() instead.
34 class UserGroupMembership
{
35 /** @var int The ID of the user who belongs to the group */
41 /** @var string|null Timestamp of expiry in TS_MW format, or null if no expiry */
45 * @param int $userId The ID of the user who belongs to the group
46 * @param string $group The internal group name
47 * @param string|null $expiry Timestamp of expiry in TS_MW format, or null if no expiry
49 public function __construct( $userId = 0, $group = null, $expiry = null ) {
50 global $wgDisableUserGroupExpiry;
51 if ( $wgDisableUserGroupExpiry ) {
55 $this->userId
= (int)$userId;
56 $this->group
= $group; // TODO throw on invalid group?
57 $this->expiry
= $expiry ?
: null;
63 public function getUserId() {
70 public function getGroup() {
75 * @return string|null Timestamp of expiry in TS_MW format, or null if no expiry
77 public function getExpiry() {
78 global $wgDisableUserGroupExpiry;
79 if ( $wgDisableUserGroupExpiry ) {
86 protected function initFromRow( $row ) {
87 global $wgDisableUserGroupExpiry;
89 $this->userId
= (int)$row->ug_user
;
90 $this->group
= $row->ug_group
;
91 if ( $wgDisableUserGroupExpiry ) {
94 $this->expiry
= $row->ug_expiry
=== null ?
96 wfTimestamp( TS_MW
, $row->ug_expiry
);
101 * Creates a new UserGroupMembership object from a database row.
103 * @param stdClass $row The row from the user_groups table
104 * @return UserGroupMembership
106 public static function newFromRow( $row ) {
108 $ugm->initFromRow( $row );
113 * Returns the list of user_groups fields that should be selected to create
114 * a new user group membership.
117 public static function selectFields() {
118 global $wgDisableUserGroupExpiry;
119 if ( $wgDisableUserGroupExpiry ) {
134 * Delete the row from the user_groups table.
136 * @throws MWException
137 * @param IDatabase|null $dbw Optional master database connection to use
138 * @return bool Whether or not anything was deleted
140 public function delete( IDatabase
$dbw = null ) {
141 global $wgDisableUserGroupExpiry;
142 if ( wfReadOnly() ) {
146 if ( $dbw === null ) {
147 $dbw = wfGetDB( DB_MASTER
);
150 if ( $wgDisableUserGroupExpiry ) {
151 $dbw->delete( 'user_groups', $this->getDatabaseArray( $dbw ), __METHOD__
);
155 [ 'ug_user' => $this->userId
, 'ug_group' => $this->group
],
158 if ( !$dbw->affectedRows() ) {
162 // Remember that the user was in this group
164 'user_former_groups',
165 [ 'ufg_user' => $this->userId
, 'ufg_group' => $this->group
],
173 * Insert a user right membership into the database. When $allowUpdate is false,
174 * the function fails if there is a conflicting membership entry (same user and
175 * group) already in the table.
177 * @throws MWException
178 * @param bool $allowUpdate Whether to perform "upsert" instead of INSERT
179 * @param IDatabase|null $dbw If you have one available
180 * @return bool Whether or not anything was inserted
182 public function insert( $allowUpdate = false, IDatabase
$dbw = null ) {
183 global $wgDisableUserGroupExpiry;
184 if ( $dbw === null ) {
185 $dbw = wfGetDB( DB_MASTER
);
188 // Purge old, expired memberships from the DB
189 self
::purgeExpired( $dbw );
191 // Check that the values make sense
192 if ( $this->group
=== null ) {
193 throw new UnexpectedValueException(
194 'Don\'t try inserting an uninitialized UserGroupMembership object' );
195 } elseif ( $this->userId
<= 0 ) {
196 throw new UnexpectedValueException(
197 'UserGroupMembership::insert() needs a positive user ID. ' .
198 'Did you forget to add your User object to the database before calling addGroup()?' );
201 $row = $this->getDatabaseArray( $dbw );
202 $dbw->insert( 'user_groups', $row, __METHOD__
, [ 'IGNORE' ] );
203 $affected = $dbw->affectedRows();
205 // Don't collide with expired user group memberships
206 // Do this after trying to insert, in order to avoid locking
207 if ( !$wgDisableUserGroupExpiry && !$affected ) {
209 'ug_user' => $row['ug_user'],
210 'ug_group' => $row['ug_group'],
212 // if we're unconditionally updating, check that the expiry is not already the
213 // same as what we are trying to update it to; otherwise, only update if
214 // the expiry date is in the past
215 if ( $allowUpdate ) {
216 if ( $this->expiry
) {
217 $conds[] = 'ug_expiry IS NULL OR ug_expiry != ' .
218 $dbw->addQuotes( $dbw->timestamp( $this->expiry
) );
220 $conds[] = 'ug_expiry IS NOT NULL';
223 $conds[] = 'ug_expiry < ' . $dbw->addQuotes( $dbw->timestamp() );
226 $row = $dbw->selectRow( 'user_groups', $this::selectFields(), $conds, __METHOD__
);
230 [ 'ug_expiry' => $this->expiry ?
$dbw->timestamp( $this->expiry
) : null ],
231 [ 'ug_user' => $row->ug_user
, 'ug_group' => $row->ug_group
],
233 $affected = $dbw->affectedRows();
237 return $affected > 0;
241 * Get an array suitable for passing to $dbw->insert() or $dbw->update()
242 * @param IDatabase $db
245 protected function getDatabaseArray( IDatabase
$db ) {
246 global $wgDisableUserGroupExpiry;
249 'ug_user' => $this->userId
,
250 'ug_group' => $this->group
,
252 if ( !$wgDisableUserGroupExpiry ) {
253 $a['ug_expiry'] = $this->expiry ?
$db->timestamp( $this->expiry
) : null;
259 * Has the membership expired?
262 public function isExpired() {
263 global $wgDisableUserGroupExpiry;
264 if ( $wgDisableUserGroupExpiry ||
!$this->expiry
) {
267 return wfTimestampNow() > $this->expiry
;
272 * Purge expired memberships from the user_groups table
274 * @param IDatabase|null $dbw
276 public static function purgeExpired( IDatabase
$dbw = null ) {
277 global $wgDisableUserGroupExpiry;
278 if ( $wgDisableUserGroupExpiry ||
wfReadOnly() ) {
282 if ( $dbw === null ) {
283 $dbw = wfGetDB( DB_MASTER
);
286 DeferredUpdates
::addUpdate( new AtomicSectionUpdate(
289 function ( IDatabase
$dbw, $fname ) {
290 $expiryCond = [ 'ug_expiry < ' . $dbw->addQuotes( $dbw->timestamp() ) ];
291 $res = $dbw->select( 'user_groups', self
::selectFields(), $expiryCond, $fname );
293 // save an array of users/groups to insert to user_former_groups
294 $usersAndGroups = [];
295 foreach ( $res as $row ) {
296 $usersAndGroups[] = [ 'ufg_user' => $row->ug_user
, 'ufg_group' => $row->ug_group
];
300 $dbw->delete( 'user_groups', $expiryCond, $fname );
302 // and push the groups to user_former_groups
303 $dbw->insert( 'user_former_groups', $usersAndGroups, __METHOD__
, [ 'IGNORE' ] );
309 * Returns UserGroupMembership objects for all the groups a user currently
312 * @param int $userId ID of the user to search for
313 * @param IDatabase|null $db Optional database connection
314 * @return array Associative array of (group name => UserGroupMembership object)
316 public static function getMembershipsForUser( $userId, IDatabase
$db = null ) {
318 $db = wfGetDB( DB_REPLICA
);
321 $res = $db->select( 'user_groups',
322 self
::selectFields(),
323 [ 'ug_user' => $userId ],
327 foreach ( $res as $row ) {
328 $ugm = self
::newFromRow( $row );
329 if ( !$ugm->isExpired() ) {
330 $ugms[$ugm->group
] = $ugm;
338 * Returns a UserGroupMembership object that pertains to the given user and group,
339 * or false if the user does not belong to that group (or the assignment has
342 * @param int $userId ID of the user to search for
343 * @param string $group User group name
344 * @param IDatabase|null $db Optional database connection
345 * @return UserGroupMembership|false
347 public static function getMembership( $userId, $group, IDatabase
$db = null ) {
349 $db = wfGetDB( DB_REPLICA
);
352 $row = $db->selectRow( 'user_groups',
353 self
::selectFields(),
354 [ 'ug_user' => $userId, 'ug_group' => $group ],
360 $ugm = self
::newFromRow( $row );
361 if ( !$ugm->isExpired() ) {
369 * Gets a link for a user group, possibly including the expiry date if relevant.
371 * @param string|UserGroupMembership $ugm Either a group name as a string, or
372 * a UserGroupMembership object
373 * @param IContextSource $context
374 * @param string $format Either 'wiki' or 'html'
375 * @param string|null $userName If you want to use the group member message
376 * ("administrator"), pass the name of the user who belongs to the group; it
377 * is used for GENDER of the group member message. If you instead want the
378 * group name message ("Administrators"), omit this parameter.
381 public static function getLink( $ugm, IContextSource
$context, $format,
384 if ( $format !== 'wiki' && $format !== 'html' ) {
385 throw new MWException( 'UserGroupMembership::getLink() $format parameter should be ' .
386 "'wiki' or 'html'" );
389 if ( $ugm instanceof UserGroupMembership
) {
390 $expiry = $ugm->getExpiry();
391 $group = $ugm->getGroup();
397 if ( $userName !== null ) {
398 $groupName = self
::getGroupMemberName( $group, $userName );
400 $groupName = self
::getGroupName( $group );
403 // link to the group description page, if it exists
404 $linkTitle = self
::getGroupPage( $group );
406 if ( $format === 'wiki' ) {
407 $linkPage = $linkTitle->getFullText();
408 $groupLink = "[[$linkPage|$groupName]]";
410 $groupLink = Linker
::link( $linkTitle, htmlspecialchars( $groupName ) );
413 $groupLink = htmlspecialchars( $groupName );
417 // format the expiry to a nice string
418 $uiLanguage = $context->getLanguage();
419 $uiUser = $context->getUser();
420 $expiryDT = $uiLanguage->userTimeAndDate( $expiry, $uiUser );
421 $expiryD = $uiLanguage->userDate( $expiry, $uiUser );
422 $expiryT = $uiLanguage->userTime( $expiry, $uiUser );
423 if ( $format === 'html' ) {
424 $groupLink = Message
::rawParam( $groupLink );
426 return $context->msg( 'group-membership-link-with-expiry' )
427 ->params( $groupLink, $expiryDT, $expiryD, $expiryT )->text();
434 * Gets the localized friendly name for a group, if it exists. For example,
435 * "Administrators" or "Bureaucrats"
437 * @param string $group Internal group name
438 * @return string Localized friendly group name
440 public static function getGroupName( $group ) {
441 $msg = wfMessage( "group-$group" );
442 return $msg->isBlank() ?
$group : $msg->text();
446 * Gets the localized name for a member of a group, if it exists. For example,
447 * "administrator" or "bureaucrat"
449 * @param string $group Internal group name
450 * @param string $username Username for gender
451 * @return string Localized name for group member
453 public static function getGroupMemberName( $group, $username ) {
454 $msg = wfMessage( "group-$group-member", $username );
455 return $msg->isBlank() ?
$group : $msg->text();
459 * Gets the title of a page describing a particular user group. When the name
460 * of the group appears in the UI, it can link to this page.
462 * @param string $group Internal group name
463 * @return Title|bool Title of the page if it exists, false otherwise
465 public static function getGroupPage( $group ) {
466 $msg = wfMessage( "grouppage-$group" )->inContentLanguage();
467 if ( $msg->exists() ) {
468 $title = Title
::newFromText( $msg->text() );
469 if ( is_object( $title ) ) {