MediaWiki  master
ActorNormalization.php
Go to the documentation of this file.
1 <?php
21 namespace MediaWiki\User;
22 
24 use InvalidArgumentException;
25 use stdClass;
28 
33 interface ActorNormalization {
34 
49  public function newActorFromRow( stdClass $row ): UserIdentity;
50 
67  public function newActorFromRowFields( $userId, $name, $actorId ): UserIdentity;
68 
77  public function findActorIdByName( string $name, IDatabase $db ): ?int;
78 
87  public function findActorId( UserIdentity $user, IReadableDatabase $db ): ?int;
88 
99  public function acquireActorId( UserIdentity $user, IDatabase $dbw ): int;
100 
109  public function getActorById( int $actorId, IDatabase $db ): ?UserIdentity;
110 
117  public function getUnknownActor(): UserIdentity;
118 }
Exception thrown when an actor can't be created.
Service for dealing with the actor table.
findActorIdByName(string $name, IDatabase $db)
Find the actor_id for the given name.
newActorFromRowFields( $userId, $name, $actorId)
Instantiate a new UserIdentity object based on field values from a DB row.
getUnknownActor()
In case all reasonable attempts of initializing a proper actor from the database have failed,...
acquireActorId(UserIdentity $user, IDatabase $dbw)
Attempt to assign an actor ID to the given $user If it is already assigned, return the existing ID.
newActorFromRow(stdClass $row)
Instantiate a new UserIdentity object based on a $row from the actor table.
findActorId(UserIdentity $user, IReadableDatabase $db)
Find the actor_id of the given $user.
getActorById(int $actorId, IDatabase $db)
Find an actor by $id.
Interface for objects representing user identity.
Basic database interface for live and lazy-loaded relation database handles.
Definition: IDatabase.php:36
A database connection without write operations.