Update git submodules
[mediawiki.git] / includes / user / UserIdentityLookup.php
blobe3c030a5441e6cfb400624d76be8cd78a601a9af
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
18 * @file
21 namespace MediaWiki\User;
23 use IDBAccessObject;
24 use InvalidArgumentException;
25 use Wikimedia\Rdbms\IReadableDatabase;
27 /**
28 * Service for looking up UserIdentity
30 * @package MediaWiki\User
31 * @since 1.36
33 interface UserIdentityLookup extends IDBAccessObject {
35 /**
36 * Find an identity of a user by $name
38 * @param string $name
39 * @param int $queryFlags one of IDBAccessObject constants
40 * @return UserIdentity|null
41 * @throws InvalidArgumentException if non-normalizable actor name is passed.
43 public function getUserIdentityByName(
44 string $name,
45 int $queryFlags = self::READ_NORMAL
46 ): ?UserIdentity;
48 /**
49 * Find an identity of a user by $userId
51 * @param int $userId
52 * @param int $queryFlags one of IDBAccessObject constants
53 * @return UserIdentity|null
55 public function getUserIdentityByUserId(
56 int $userId,
57 int $queryFlags = self::READ_NORMAL
58 ): ?UserIdentity;
60 /**
61 * Returns a specialized SelectQueryBuilder for querying the UserIdentity objects.
63 * @param IReadableDatabase|int $dbOrQueryFlags The database connection to perform the query on,
64 * or one of the self::READ_* constants.
65 * @return UserSelectQueryBuilder
67 public function newSelectQueryBuilder( $dbOrQueryFlags = self::READ_NORMAL ): UserSelectQueryBuilder;