1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
/** |
5
|
|
|
* ParseBunqDownload.php |
6
|
|
|
* Copyright (c) 2020 [email protected]. |
7
|
|
|
* |
8
|
|
|
* This file is part of the Firefly III bunq importer |
9
|
|
|
* (https://github.com/firefly-iii/bunq-importer). |
10
|
|
|
* |
11
|
|
|
* This program is free software: you can redistribute it and/or modify |
12
|
|
|
* it under the terms of the GNU Affero General Public License as |
13
|
|
|
* published by the Free Software Foundation, either version 3 of the |
14
|
|
|
* License, or (at your option) any later version. |
15
|
|
|
* |
16
|
|
|
* This program is distributed in the hope that it will be useful, |
17
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
18
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
19
|
|
|
* GNU Affero General Public License for more details. |
20
|
|
|
* |
21
|
|
|
* You should have received a copy of the GNU Affero General Public License |
22
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. |
23
|
|
|
*/ |
24
|
|
|
|
25
|
|
|
namespace App\Services\Sync; |
26
|
|
|
|
27
|
|
|
use App\Services\Sync\JobStatus\ProgressInformation; |
28
|
|
|
use Illuminate\Contracts\Filesystem\FileNotFoundException; |
29
|
|
|
use Illuminate\Support\Facades\Storage; |
30
|
|
|
use JsonException; |
31
|
|
|
|
32
|
|
|
/** |
33
|
|
|
* Class ParseBunqDownload. |
34
|
|
|
*/ |
35
|
|
|
class ParseBunqDownload |
36
|
|
|
{ |
37
|
|
|
use ProgressInformation; |
38
|
|
|
|
39
|
|
|
/** |
40
|
|
|
* @param string $downloadIdentifier |
41
|
|
|
* |
42
|
|
|
* @return array |
43
|
|
|
*/ |
44
|
|
|
public function getDownload(string $downloadIdentifier): array |
45
|
|
|
{ |
46
|
|
|
$disk = Storage::disk('downloads'); |
47
|
|
|
$result = []; |
48
|
|
|
$count = 0; |
49
|
|
|
if ($disk->exists($downloadIdentifier)) { |
50
|
|
|
try { |
51
|
|
|
$this->addMessage(0, 'Decoded bunq download.'); |
52
|
|
|
$result = json_decode($disk->get($downloadIdentifier), true, 512, JSON_THROW_ON_ERROR); |
53
|
|
|
} catch (FileNotFoundException | JsonException $e) { |
54
|
|
|
$this->addError(0, 'Could not decode bunq download.'); |
55
|
|
|
} |
56
|
|
|
} |
57
|
|
|
foreach ($result as $transactions) { |
58
|
|
|
$count += count($transactions); |
59
|
|
|
} |
60
|
|
|
|
61
|
|
|
app('log')->debug(sprintf('Parsed %d bunq account transactions.', $count)); |
62
|
|
|
|
63
|
|
|
return $result; |
64
|
|
|
} |
65
|
|
|
} |
66
|
|
|
|