HumanFormatter::getName()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
/**
4
 * This file is part of byrokrat\giroapp.
5
 *
6
 * byrokrat\giroapp is free software: you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License as published
8
 * by the Free Software Foundation, either version 3 of the License, or
9
 * (at your option) any later version.
10
 *
11
 * byrokrat\giroapp is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with byrokrat\giroapp. If not, see <http://www.gnu.org/licenses/>.
18
 *
19
 * Copyright 2016-21 Hannes Forsgård
20
 */
21
22
declare(strict_types=1);
23
24
namespace byrokrat\giroapp\Formatter;
25
26
use byrokrat\giroapp\DependencyInjection;
27
use byrokrat\giroapp\Domain\Donor;
28
use Symfony\Component\Console\Output\OutputInterface;
29
30
/**
31
 * Output donors in a human readable manner
32
 */
33
final class HumanFormatter implements FormatterInterface
34
{
35
    use DependencyInjection\MoneyFormatterProperty;
36
37
    /**
38
     * @var OutputInterface
39
     */
40
    private $output;
41
42
    /**
43
     * @var bool
44
     */
45
    private $firstItem;
46
47
    public function getName(): string
48
    {
49
        return 'human';
50
    }
51
52
    public function initialize(OutputInterface $output): void
53
    {
54
        $this->output = $output;
55
        $this->firstItem = true;
56
    }
57
58
    public function formatDonor(Donor $donor): void
59
    {
60
        if (!$this->firstItem) {
61
            $this->output->writeln("");
62
        }
63
64
        $this->firstItem = false;
65
66
        $address = array_filter([
67
            $donor->getPostalAddress()->getLine1(),
68
            $donor->getPostalAddress()->getLine2(),
69
            $donor->getPostalAddress()->getLine3(),
70
            $donor->getPostalAddress()->getPostalCode(),
71
            $donor->getPostalAddress()->getPostalCity()
72
        ]);
73
74
        $this->output->writeln("mandate-key: <info>{$donor->getMandateKey()}</info>");
75
        $this->output->writeln("state: <info>{$donor->getState()->getStateId()}</info>");
76
        $this->output->writeln("mandate-source: <info>{$donor->getMandateSource()}</info>");
77
        $this->output->writeln("payer-number: <info>{$donor->getPayerNumber()}</info>");
78
        $this->output->writeln("account: <info>{$donor->getAccount()}</info>");
79
        $this->output->writeln("id: <info>{$donor->getDonorId()->format('S-sk')}</info>");
80
        $this->output->writeln("name: <info>{$donor->getName()}</info>");
81
        $this->output->writeln("address: <info>" . implode(", ", $address) . "</info>");
82
        $this->output->writeln("email: <info>{$donor->getEmail()}</info>");
83
        $this->output->writeln("phone: <info>{$donor->getPhone()}</info>");
84
        $this->output->writeln("amount: <info>{$this->moneyFormatter->format($donor->getDonationAmount())}</info>");
85
        $this->output->writeln("comment: <info>{$donor->getComment()}</info>");
86
        $this->output->writeln("created: <info>{$donor->getCreated()->format('Y-m-d')}</info>");
87
        $this->output->writeln("updated: <info>{$donor->getUpdated()->format('Y-m-d')}</info>");
88
89
        foreach ($donor->getAttributes() as $attrKey => $attrValue) {
90
            $this->output->writeln("attribute.<comment>$attrKey</comment>: <info>$attrValue</info>");
91
        }
92
    }
93
94
    public function finalize(): void
95
    {
96
    }
97
}
98