mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-15 02:03:53 +00:00
71a61c2089
This is just a start; next step is adding a factory/store method to get/store these objects. And then use these value objects whenever applicable. Note: the actions-related code is still not fully implemented. This is going to happen as part of the FilterLookup. Change-Id: I5f33227887c035e301313bbe24d1c1fefb75bc6a
105 lines
1.8 KiB
PHP
105 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\AbuseFilter\Filter;
|
|
|
|
/**
|
|
* (Mutable) value object that represents the "specs" of a filter.
|
|
*/
|
|
class Specs {
|
|
/** @var string */
|
|
private $rules;
|
|
/** @var string */
|
|
private $comments;
|
|
/** @var string */
|
|
private $name;
|
|
/** @var string[] */
|
|
private $actionsNames;
|
|
/** @var string */
|
|
private $group;
|
|
|
|
/**
|
|
* @param string $rules
|
|
* @param string $comments
|
|
* @param string $name
|
|
* @param string[] $actionsNames
|
|
* @param string $group
|
|
*/
|
|
public function __construct( string $rules, string $comments, string $name, array $actionsNames, string $group ) {
|
|
$this->rules = $rules;
|
|
$this->comments = $comments;
|
|
$this->name = $name;
|
|
$this->actionsNames = $actionsNames;
|
|
$this->group = $group;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getRules(): string {
|
|
return $this->rules;
|
|
}
|
|
|
|
/**
|
|
* @param string $rules
|
|
*/
|
|
public function setRules( string $rules ): void {
|
|
$this->rules = $rules;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getComments(): string {
|
|
return $this->comments;
|
|
}
|
|
|
|
/**
|
|
* @param string $comments
|
|
*/
|
|
public function setComments( string $comments ): void {
|
|
$this->comments = $comments;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getName(): string {
|
|
return $this->name;
|
|
}
|
|
|
|
/**
|
|
* @param string $name
|
|
*/
|
|
public function setName( string $name ): void {
|
|
$this->name = $name;
|
|
}
|
|
|
|
/**
|
|
* @return string[]
|
|
*/
|
|
public function getActionsNames(): array {
|
|
return $this->actionsNames;
|
|
}
|
|
|
|
/**
|
|
* @param string[] $actionsNames
|
|
*/
|
|
public function setActionsNames( array $actionsNames ): void {
|
|
$this->actionsNames = $actionsNames;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getGroup(): string {
|
|
return $this->group;
|
|
}
|
|
|
|
/**
|
|
* @param string $group
|
|
*/
|
|
public function setGroup( string $group ): void {
|
|
$this->group = $group;
|
|
}
|
|
}
|