Completed
Push — master ( a8687a...737d23 )
by Joachim
07:33
created

Details::getBatchId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php declare(strict_types=1);
2
namespace Loevgaard\Linkmobility\Response\BatchStatusResponse;
3
4
use Assert\Assert;
5
use Loevgaard\Linkmobility\Response\Response;
6
7
class Details extends Response
8
{
9
    /**
10
     * The batch is ready for processing. The batch will be processed shortly after sendtime has passed.
11
     */
12
    const STATE_QUEUED = 'QUEUED';
13
14
    /**
15
     * The batch is currently processing. Messages are being sent, and the "buffered",
16
     * "received" and "rejected" numbers will be updated as it is processed.
17
     */
18
    const STATE_RUNNING = 'RUNNING';
19
20
    /**
21
     * The batch has finished processing. Up to 48 hours after this the messages will still be sent out for delivery.
22
     */
23
    const STATE_DONE = 'DONE';
24
25
    /**
26
     * @var \DateTimeImmutable
27
     */
28
    protected $sendTime;
29
30
    /**
31
     * @var int
32
     */
33
    protected $batchId;
34
35
    /**
36
     * @var string
37
     */
38
    protected $state;
39
40 1
    public function init() : void
41
    {
42 1
        Assert::that($this->data)
43 1
            ->isArray()->keyExists('sendtime')
44 1
            ->keyExists('batchid')
45 1
            ->keyExists('state')
46
        ;
47
48 1
        Assert::that($this->data['state'])->choice(self::getStates());
49
50 1
        $this->sendTime = \DateTimeImmutable::createFromFormat('d-m-Y H:i:s', $this->data['sendtime']);
51 1
        Assert::that($this->sendTime)->isInstanceOf(\DateTimeImmutable::class, '`sendtime` does not have the correct format. Value given: '.$this->data['sendtime']);
52
53 1
        $this->batchId = (int)$this->data['batchid'];
54 1
        $this->state = $this->data['state'];
55 1
    }
56
57 1 View Code Duplication
    public static function getStates() : array
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
58
    {
59
        return [
60 1
            self::STATE_DONE => self::STATE_DONE,
61 1
            self::STATE_QUEUED => self::STATE_QUEUED,
62 1
            self::STATE_RUNNING => self::STATE_RUNNING,
63
        ];
64
    }
65
66
    public function isState(string $state) : bool
67
    {
68
        return $this->state === $state;
69
    }
70
71
    /**
72
     * @return bool
73
     */
74
    public function isDone() : bool
75
    {
76
        return $this->isState(self::STATE_DONE);
77
    }
78
79
    /**
80
     * @return bool
81
     */
82
    public function isQueued() : bool
83
    {
84
        return $this->isState(self::STATE_QUEUED);
85
    }
86
87
    /**
88
     * @return bool
89
     */
90
    public function isRunning() : bool
91
    {
92
        return $this->isState(self::STATE_RUNNING);
93
    }
94
95
    /**
96
     * @return \DateTimeImmutable
97
     */
98 1
    public function getSendTime(): \DateTimeImmutable
99
    {
100 1
        return $this->sendTime;
101
    }
102
103
    /**
104
     * @return int
105
     */
106 1
    public function getBatchId(): int
107
    {
108 1
        return $this->batchId;
109
    }
110
111
    /**
112
     * @return string
113
     */
114 1
    public function getState(): string
115
    {
116 1
        return $this->state;
117
    }
118
}
119