mediawiki-extensions-AbuseF.../includes/ActionSpecifier.php
Matěj Suchánek 396d892c60 Use ActionSpecifier to load the IP address
To avoid access to the global request context.

Change-Id: I4d97dbe8b693f1fcd5a4e84f2376752d8e954c18
2022-12-17 22:52:24 +01:00

83 lines
1.9 KiB
PHP

<?php
namespace MediaWiki\Extension\AbuseFilter;
use InvalidArgumentException;
use MediaWiki\Linker\LinkTarget;
use MediaWiki\User\UserIdentity;
/**
* Plain value object that univocally represents an action being filtered
* @todo Add constants for possible actions?
* @todo Add the timestamp
*/
class ActionSpecifier {
/** @var string */
private $action;
/** @var LinkTarget */
private $title;
/** @var UserIdentity */
private $user;
/** @var string */
private $requestIP;
/** @var string|null */
private $accountName;
/**
* @param string $action Action being filtered (e.g. 'edit' or 'createaccount')
* @param LinkTarget $title Where the current action is executed. This is the user page
* for account creations.
* @param UserIdentity $user
* @param string $requestIP
* @param string|null $accountName Required iff the action is an account creation
*/
public function __construct(
string $action, LinkTarget $title, UserIdentity $user, string $requestIP, ?string $accountName
) {
if ( $accountName === null && strpos( $action, 'createaccount' ) !== false ) {
throw new InvalidArgumentException( '$accountName required for account creations' );
}
$this->action = $action;
$this->title = $title;
$this->user = $user;
$this->requestIP = $requestIP;
$this->accountName = $accountName;
}
/**
* @return string
*/
public function getAction(): string {
return $this->action;
}
/**
* @return LinkTarget
*/
public function getTitle(): LinkTarget {
return $this->title;
}
/**
* @return UserIdentity
*/
public function getUser(): UserIdentity {
return $this->user;
}
/**
* @return string
* @note It may be an empty string for less recent changes.
*/
public function getIP(): string {
return $this->requestIP;
}
/**
* @return string|null
*/
public function getAccountName(): ?string {
return $this->accountName;
}
}