|
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 as json collection |
|
32
|
|
|
*/ |
|
33
|
|
|
final class JsonFormatter implements FormatterInterface |
|
34
|
|
|
{ |
|
35
|
|
|
use DependencyInjection\MoneyFormatterProperty; |
|
36
|
|
|
|
|
37
|
|
|
/** |
|
38
|
|
|
* @var OutputInterface |
|
39
|
|
|
*/ |
|
40
|
|
|
private $output; |
|
41
|
|
|
|
|
42
|
|
|
/** |
|
43
|
|
|
* @var array[] |
|
44
|
|
|
*/ |
|
45
|
|
|
private $data; |
|
46
|
|
|
|
|
47
|
|
|
public function getName(): string |
|
48
|
|
|
{ |
|
49
|
|
|
return 'json'; |
|
50
|
|
|
} |
|
51
|
|
|
|
|
52
|
|
|
public function initialize(OutputInterface $output): void |
|
53
|
|
|
{ |
|
54
|
|
|
$this->output = $output; |
|
55
|
|
|
$this->data = []; |
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
|
|
public function formatDonor(Donor $donor): void |
|
59
|
|
|
{ |
|
60
|
|
|
$this->data[] = [ |
|
61
|
|
|
'mandate-key' => $donor->getMandateKey(), |
|
62
|
|
|
'state' => $donor->getState()->getStateId(), |
|
63
|
|
|
'mandate-source' => $donor->getMandateSource(), |
|
64
|
|
|
'payer-number' => $donor->getPayerNumber(), |
|
65
|
|
|
'account' => $donor->getAccount()->getNumber(), |
|
66
|
|
|
'id' => $donor->getDonorId()->format('S-sk'), |
|
67
|
|
|
'name' => $donor->getName(), |
|
68
|
|
|
'address' => [ |
|
69
|
|
|
'line1' => $donor->getPostalAddress()->getLine1(), |
|
70
|
|
|
'line2' => $donor->getPostalAddress()->getLine2(), |
|
71
|
|
|
'line3' => $donor->getPostalAddress()->getLine3(), |
|
72
|
|
|
'postal_code' => $donor->getPostalAddress()->getPostalCode(), |
|
73
|
|
|
'postal_city' => $donor->getPostalAddress()->getPostalCity() |
|
74
|
|
|
], |
|
75
|
|
|
'email' => $donor->getEmail(), |
|
76
|
|
|
'phone' => $donor->getPhone(), |
|
77
|
|
|
'amount' => $this->moneyFormatter->format($donor->getDonationAmount()), |
|
78
|
|
|
'comment' => $donor->getComment(), |
|
79
|
|
|
'created' => $donor->getCreated()->format(\DateTime::W3C), |
|
80
|
|
|
'updated' => $donor->getUpdated()->format(\DateTime::W3C), |
|
81
|
|
|
'attributes' => $donor->getAttributes() |
|
82
|
|
|
]; |
|
83
|
|
|
} |
|
84
|
|
|
|
|
85
|
|
|
public function finalize(): void |
|
86
|
|
|
{ |
|
87
|
|
|
$data = count($this->data) == 1 ? $this->data[0] : $this->data; |
|
88
|
|
|
$this->output->writeln((string)json_encode($data, JSON_PRETTY_PRINT)); |
|
89
|
|
|
} |
|
90
|
|
|
} |
|
91
|
|
|
|