1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
<?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;
/** @var bool */
private $protected;
/** @var int */
private $privacyLevel;
/** @var bool */
private $global;
public const FILTER_PUBLIC = 0b00;
public const FILTER_HIDDEN = 0b01;
public const FILTER_USES_PROTECTED_VARS = 0b10;
/**
* @param bool $enabled
* @param bool $deleted
* @param int $privacyLevel
* @param bool $global
*/
public function __construct( bool $enabled, bool $deleted, int $privacyLevel, bool $global ) {
$this->enabled = $enabled;
$this->deleted = $deleted;
$this->hidden = (bool)( self::FILTER_HIDDEN & $privacyLevel );
$this->protected = (bool)( self::FILTER_USES_PROTECTED_VARS & $privacyLevel );
$this->privacyLevel = $privacyLevel;
$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;
$this->updatePrivacyLevel();
}
/**
* @return bool
*/
public function getProtected(): bool {
return $this->protected;
}
/**
* @param bool $protected
*/
public function setProtected( bool $protected ): void {
$this->protected = $protected;
$this->updatePrivacyLevel();
}
private function updatePrivacyLevel() {
$hidden = $this->hidden ? self::FILTER_HIDDEN : 0;
$protected = $this->protected ? self::FILTER_USES_PROTECTED_VARS : 0;
$this->privacyLevel = $hidden | $protected;
}
/**
* @return int
*/
public function getPrivacyLevel(): int {
return $this->privacyLevel;
}
/**
* @return bool
*/
public function getGlobal(): bool {
return $this->global;
}
/**
* @param bool $global
*/
public function setGlobal( bool $global ): void {
$this->global = $global;
}
}
|