1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
/** |
5
|
|
|
* ApiContextManager.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\Bunq\ApiContext; |
26
|
|
|
|
27
|
|
|
use App\Exceptions\ImportException; |
28
|
|
|
use bunq\Context\ApiContext; |
29
|
|
|
use bunq\Context\BunqContext; |
30
|
|
|
use bunq\Exception\BadRequestException; |
31
|
|
|
use bunq\Exception\BunqException; |
32
|
|
|
use bunq\Util\BunqEnumApiEnvironmentType; |
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* Class ApiContextManager. |
36
|
|
|
*/ |
37
|
|
|
class ApiContextManager |
38
|
|
|
{ |
39
|
|
|
/** |
40
|
|
|
* @throws ImportException |
41
|
|
|
*/ |
42
|
|
|
public static function getApiContext(): ApiContext |
43
|
|
|
{ |
44
|
|
|
$contextFile = ''; |
45
|
|
|
$environmentType = BunqEnumApiEnvironmentType::SANDBOX(); |
46
|
|
|
if (config('bunq.use_sandbox')) { |
47
|
|
|
$environmentType = BunqEnumApiEnvironmentType::SANDBOX(); |
48
|
|
|
$contextFile = storage_path('context/bunq_sandbox.context'); |
49
|
|
|
app('log')->debug('Will create sandbox bunq API Context'); |
50
|
|
|
} |
51
|
|
|
if (config('bunq.use_production')) { |
52
|
|
|
$environmentType = BunqEnumApiEnvironmentType::PRODUCTION(); |
53
|
|
|
$contextFile = storage_path('context/bunq_pr.context'); |
54
|
|
|
app('log')->debug('Will create PR bunq API Context'); |
55
|
|
|
} |
56
|
|
|
// restore if exists. |
57
|
|
|
if (file_exists($contextFile)) { |
58
|
|
|
$apiContext = ApiContext::restore($contextFile); |
59
|
|
|
BunqContext::loadApiContext($apiContext); |
60
|
|
|
app('log')->debug('Restored existing bunq context.'); |
61
|
|
|
|
62
|
|
|
return $apiContext; |
63
|
|
|
} |
64
|
|
|
// create if not. |
65
|
|
|
$apiKey = config('bunq.api_code'); |
66
|
|
|
$deviceDescription = sprintf('Firefly III bunq importer v%s', config('bunq.version')); |
67
|
|
|
$permittedIps = []; // List the real expected IPs of this device or leave empty to use the current IP |
68
|
|
|
try { |
69
|
|
|
app('log')->debug('Try to build API context with given parameters.'); |
70
|
|
|
$apiContext = ApiContext::create( |
71
|
|
|
$environmentType, |
72
|
|
|
$apiKey, |
73
|
|
|
$deviceDescription, |
74
|
|
|
$permittedIps |
75
|
|
|
); |
76
|
|
|
} catch (BadRequestException $e) { |
77
|
|
|
app('log')->error($e->getMessage()); |
78
|
|
|
app('log')->error($e->getTraceAsString()); |
79
|
|
|
throw new ImportException($e->getMessage()); |
80
|
|
|
} |
81
|
|
|
|
82
|
|
|
BunqContext::loadApiContext($apiContext); |
83
|
|
|
try { |
84
|
|
|
app('log')->debug('Trying to save API context.'); |
85
|
|
|
$apiContext->save($contextFile); |
86
|
|
|
} catch (BunqException $e) { |
87
|
|
|
app('log')->error($e->getMessage()); |
88
|
|
|
app('log')->error($e->getTraceAsString()); |
89
|
|
|
throw new ImportException($e->getMessage()); |
90
|
|
|
} |
91
|
|
|
app('log')->debug('Done! return API context.'); |
92
|
|
|
|
93
|
|
|
return $apiContext; |
94
|
|
|
} |
95
|
|
|
} |
96
|
|
|
|