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
21 namespace MediaWiki\User
;
23 use InvalidArgumentException
;
24 use Wikimedia\Rdbms\IDBAccessObject
;
25 use Wikimedia\Rdbms\IReadableDatabase
;
28 * Service for looking up UserIdentity
30 * Default implementation is MediaWiki\User\ActorStore.
35 interface UserIdentityLookup
{
38 * Find an identity of a user by $name
41 * @param int $queryFlags one of IDBAccessObject constants
42 * @return UserIdentity|null
43 * @throws InvalidArgumentException if non-normalizable actor name is passed.
45 public function getUserIdentityByName(
47 int $queryFlags = IDBAccessObject
::READ_NORMAL
51 * Find an identity of a user by $userId
54 * @param int $queryFlags one of IDBAccessObject constants
55 * @return UserIdentity|null
57 public function getUserIdentityByUserId(
59 int $queryFlags = IDBAccessObject
::READ_NORMAL
63 * Returns a specialized SelectQueryBuilder for querying the UserIdentity objects.
65 * @param IReadableDatabase|int $dbOrQueryFlags The database connection to perform the query on,
66 * or one of the IDBAccessObject::READ_* constants.
67 * @return UserSelectQueryBuilder
69 public function newSelectQueryBuilder( $dbOrQueryFlags = IDBAccessObject
::READ_NORMAL
): UserSelectQueryBuilder
;