Passed
Push — main ( d81ed3...85783c )
by Iain
04:57
created

InvoiceProvider::downloadInvoiceById()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 5
rs 10
c 1
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * Copyright (C) 2020-2024 Iain Cambridge
7
 *
8
 *     This program is free software: you can redistribute it and/or modify
9
 *     it under the terms of the GNU General Public License as published by
10
 *     the Free Software Foundation, either version 3 of the License, or
11
 *     (at your option) any later version.
12
 *
13
 *     This program is distributed in the hope that it will be useful,
14
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 *     GNU General Public License for more details.
17
 *
18
 *     You should have received a copy of the GNU General Public License
19
 *     along with this program.  If not, see <https://www.gnu.org/licenses/>.
20
 */
21
22
namespace Parthenon\Billing\BillaBear\Invoice;
23
24
use BillaBear\Model\InlineResponse2004Data;
0 ignored issues
show
Bug introduced by
The type BillaBear\Model\InlineResponse2004Data was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
25
use Parthenon\Billing\BillaBear\SdkFactory;
26
use Parthenon\Billing\Entity\CustomerInterface;
27
use Parthenon\Billing\Invoice\Invoice;
28
use Parthenon\Billing\Invoice\InvoiceProviderInterface;
29
30
class InvoiceProvider implements InvoiceProviderInterface
31
{
32
    public function __construct(private SdkFactory $sdkFactory)
33
    {
34
    }
35
36
    public function fetchInvoices(CustomerInterface $customer, mixed $lastKey = null): array
37
    {
38
        $response = $this->sdkFactory->createCustomersApi()->listCustomerInvoices($customer->getExternalCustomerReference());
39
40
        $output = [];
41
        foreach ($response->getData() as $invoice) {
42
            $output[] = $this->buildDto($invoice);
43
        }
44
45
        return $output;
46
    }
47
48
    public function downloadInvoiceById(string $id): mixed
49
    {
50
        $downloadBlob = $this->sdkFactory->createInvoiceApi()->downloadInvoice($id);
51
52
        return $downloadBlob;
53
    }
54
55
    protected function buildDto(InlineResponse2004Data $invoiceData): Invoice
56
    {
57
        $invoice = new Invoice();
58
        $invoice->setId($invoiceData->getId());
59
        $invoice->setCurrency($invoiceData->getCurrency());
60
        $invoice->setAmount($invoiceData->getAmountDue());
61
        $invoice->setPaid($invoiceData->getPaid());
62
        $invoice->setCreatedAt(new \DateTime($invoiceData->getCreatedAt()));
63
64
        return $invoice;
65
    }
66
}
67