wiki.techinc.nl/includes/user/UserIdentity.php
Cindy Cicalese f992c7d8a3 Add type hints for return types to methods on UserIdentity
Bug: T273285
Change-Id: I0ffc4963e8362264d1f10455af0f6222c05be7d8
2021-02-02 20:58:51 +00:00

96 lines
2.8 KiB
PHP

<?php
/**
* Interface for objects representing user identity.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
*/
namespace MediaWiki\User;
use MediaWiki\DAO\WikiAwareEntity;
use Wikimedia\Assert\PreconditionException;
/**
* Interface for objects representing user identity.
*
* This represents the identity of a user in the context of page revisions and log entries.
*
* @since 1.31
*/
interface UserIdentity extends WikiAwareEntity {
/**
* @since 1.31
*
* @return int The user ID. May be 0 for anonymous users or for users with no local account.
*
* @deprecated since 1.36, use getUserId() instead
*/
public function getId() : int;
/**
* @since 1.36
*
* @param string|false $wikiId The wiki ID expected by the caller.
* Use self::LOCAL for the local wiki.
*
* @return int The user id. May be 0 for anonymous users or for users with no local account.
*
* @throws PreconditionException if $wikiId mismatches $this->getWikiId()
*/
public function getUserId( $wikiId = self::LOCAL ) : int;
/**
* @since 1.31
*
* @return string The user's logical name. May be an IPv4 or IPv6 address for anonymous users.
*/
public function getName() : string;
/**
* @since 1.31
*
* @param string|false $wikiId The wiki ID expected by the caller.
* Use self::LOCAL for the local wiki.
*
* @return int The user's actor ID. May be 0 if no actor ID is set.
*
* @note This will trigger a deprecation warning when $wikiId mismatches $this->getWikiId().
* In the future, it will throw PreconditionException.
*/
public function getActorId( $wikiId = self::LOCAL ) : int;
// TODO: we may want to (optionally?) provide a global ID, see CentralIdLookup.
/**
* @since 1.32
*
* @param UserIdentity $user
* @return bool
*/
public function equals( UserIdentity $user ) : bool;
/**
* @since 1.34
*
* @return bool True if user is registered on this wiki, i.e., has a user ID. False if user is
* anonymous or has no local account (which can happen when importing). This must be
* equivalent to getId() != 0 and is provided for code readability.
*/
public function isRegistered() : bool;
}