-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStatus.php
89 lines (70 loc) · 1.74 KB
/
Status.php
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
<?php
declare(strict_types=1);
namespace Yokai\DoctrineValueObject\Tests;
use Webmozart\Assert\Assert;
use Yokai\DoctrineValueObject\IntegerValueObject;
final class Status implements IntegerValueObject
{
private const ANONYMOUS = 0;
private const REGISTERED = 1;
private const TRUSTED = 2;
private const RELIABLE = 3;
private const ALL = [
self::ANONYMOUS,
self::REGISTERED,
self::TRUSTED,
self::RELIABLE,
];
private int $status;
public function __construct(int $status)
{
Assert::oneOf($status, self::ALL);
$this->status = $status;
}
public static function init(): self
{
return new self(self::ANONYMOUS);
}
public static function fromValue(int $value): static
{
return new static($value);
}
public function toValue(): int
{
return $this->status;
}
public function promote(): self
{
if ($this->status === self::RELIABLE) {
throw new \LogicException();
}
return new self(++$this->status);
}
public function demote(): self
{
if ($this->status === self::ANONYMOUS) {
throw new \LogicException();
}
return new self(--$this->status);
}
public function getStatus(): int
{
return $this->status;
}
public function canComment(): bool
{
return $this->status >= self::REGISTERED;
}
public function canPost(): bool
{
return $this->status >= self::TRUSTED;
}
public function canVoteModeration(): bool
{
return $this->status >= self::RELIABLE;
}
public function canDecideModeration(): bool
{
return $this->status >= self::TRUSTED;
}
}