2020-09-19 13:37:58 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace MediaWiki\Extension\AbuseFilter\Filter;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* (Mutable) value object to represent flags that can be *manually* set on a filter.
|
|
|
|
*/
|
|
|
|
class Flags {
|
|
|
|
/** @var bool */
|
|
|
|
private $enabled;
|
|
|
|
/** @var bool */
|
|
|
|
private $deleted;
|
|
|
|
/** @var bool */
|
|
|
|
private $hidden;
|
2024-05-23 14:49:17 +00:00
|
|
|
/** @var bool */
|
|
|
|
private $protected;
|
2024-05-16 10:40:53 +00:00
|
|
|
/** @var int */
|
|
|
|
private $privacyLevel;
|
2020-09-19 13:37:58 +00:00
|
|
|
/** @var bool */
|
|
|
|
private $global;
|
|
|
|
|
2024-05-16 10:40:53 +00:00
|
|
|
public const FILTER_PUBLIC = 0b00;
|
|
|
|
public const FILTER_HIDDEN = 0b01;
|
2024-05-23 14:49:17 +00:00
|
|
|
public const FILTER_USES_PROTECTED_VARS = 0b10;
|
2024-05-16 10:40:53 +00:00
|
|
|
|
2020-09-19 13:37:58 +00:00
|
|
|
/**
|
|
|
|
* @param bool $enabled
|
|
|
|
* @param bool $deleted
|
2024-07-02 20:53:28 +00:00
|
|
|
* @param int $privacyLevel
|
2020-09-19 13:37:58 +00:00
|
|
|
* @param bool $global
|
|
|
|
*/
|
2024-07-02 20:53:28 +00:00
|
|
|
public function __construct( bool $enabled, bool $deleted, int $privacyLevel, bool $global ) {
|
2020-09-19 13:37:58 +00:00
|
|
|
$this->enabled = $enabled;
|
|
|
|
$this->deleted = $deleted;
|
2024-07-02 20:53:28 +00:00
|
|
|
$this->hidden = (bool)( self::FILTER_HIDDEN & $privacyLevel );
|
|
|
|
$this->protected = (bool)( self::FILTER_USES_PROTECTED_VARS & $privacyLevel );
|
|
|
|
$this->privacyLevel = $privacyLevel;
|
2020-09-19 13:37:58 +00:00
|
|
|
$this->global = $global;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getEnabled(): bool {
|
|
|
|
return $this->enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param bool $enabled
|
|
|
|
*/
|
|
|
|
public function setEnabled( bool $enabled ): void {
|
|
|
|
$this->enabled = $enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getDeleted(): bool {
|
|
|
|
return $this->deleted;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param bool $deleted
|
|
|
|
*/
|
|
|
|
public function setDeleted( bool $deleted ): void {
|
|
|
|
$this->deleted = $deleted;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getHidden(): bool {
|
|
|
|
return $this->hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param bool $hidden
|
|
|
|
*/
|
|
|
|
public function setHidden( bool $hidden ): void {
|
|
|
|
$this->hidden = $hidden;
|
2024-05-16 10:40:53 +00:00
|
|
|
$this->updatePrivacyLevel();
|
|
|
|
}
|
|
|
|
|
2024-05-23 14:49:17 +00:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getProtected(): bool {
|
|
|
|
return $this->protected;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param bool $protected
|
|
|
|
*/
|
|
|
|
public function setProtected( bool $protected ): void {
|
|
|
|
$this->protected = $protected;
|
|
|
|
$this->updatePrivacyLevel();
|
|
|
|
}
|
|
|
|
|
2024-05-16 10:40:53 +00:00
|
|
|
private function updatePrivacyLevel() {
|
|
|
|
$hidden = $this->hidden ? self::FILTER_HIDDEN : 0;
|
2024-05-23 14:49:17 +00:00
|
|
|
$protected = $this->protected ? self::FILTER_USES_PROTECTED_VARS : 0;
|
|
|
|
$this->privacyLevel = $hidden | $protected;
|
2024-05-16 10:40:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getPrivacyLevel(): int {
|
|
|
|
return $this->privacyLevel;
|
2020-09-19 13:37:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getGlobal(): bool {
|
|
|
|
return $this->global;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param bool $global
|
|
|
|
*/
|
|
|
|
public function setGlobal( bool $global ): void {
|
|
|
|
$this->global = $global;
|
|
|
|
}
|
|
|
|
}
|