-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathIdentityBluemRequest.php
231 lines (200 loc) · 7.21 KB
/
IdentityBluemRequest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
<?php
/**
* (c) 2023 - Bluem Plugin Support <pluginsupport@bluem.nl>
*
* This source file is subject to the license that is bundled
* with this source code in the file LICENSE.
*/
namespace Bluem\BluemPHP\Requests;
use Bluem\BluemPHP\Contexts\IdentityContext;
use Exception;
define("BLUEM_DEFAULT_MIN_AGE", 18);
/**
* IdentityBluemRequest object to request an Identity Transaction from the Bluem API.
*/
class IdentityBluemRequest extends BluemRequest
{
public $minage;
public $request_url_type = "ir";
public $typeIdentifier = "createTransaction";
public $transaction_code = "ITX";
protected $xmlInterfaceName = "IdentityInterface";
/**
* @var int
*/
private $minAge;
private string $requestCategory;
private string $description;
private string $debtorReturnURL;
/**
* @param $config
* @param $entranceCode
* @param $expectedReturn
* @param array $requestCategory
* @param string $description
* @param string $debtorReference
* @param string $debtorReturnURL
*
* @throws Exception
*/
public function __construct(
$config,
$entranceCode,
$expectedReturn,
array $requestCategory = [],
string $description = "",
private string $debtorReference = "",
$debtorReturnURL = ""
) {
parent::__construct($config, $entranceCode, $expectedReturn);
// @todo: verify return URL can no longer be set in IdentityBluemRequest construction, instead it is created in the config
// override specific brand ID
$this->brandID = isset($config->IDINBrandID) && $config->IDINBrandID !== "" ? $config->IDINBrandID : $config->brandID;
$this->requestCategory = $this->getRequestCategoryElement($requestCategory);
$this->description = $this->_sanitizeDescription($description);
if ($debtorReturnURL == "") {
throw new Exception("Debtor return URL is required");
}
$this->debtorReturnURL = $debtorReturnURL . "?debtorReference=$this->debtorReference";
// @todo: make this a configurable setting
$this->minAge = $config->minAge ?? BLUEM_DEFAULT_MIN_AGE;
// @todo: validate this , also based on XSD
$this->context = new IdentityContext();
// @todo: decide whether or not to use the context pattern
}
/**
* @throws Exception
*/
private function getRequestCategoryElement(array $active_categories = []): string
{
// @todo perform more validation on active categories?
$all_cats = [
'CustomerIDRequest',
'CustomerIDLoginRequest',
'NameRequest',
'AddressRequest',
'BirthDateRequest',
'AgeCheckRequest',
'GenderRequest',
'TelephoneRequest',
'EmailRequest',
];
// @todo: Add DocumentRequestSign later (add after EmailRequest).
$result = "<RequestCategory>";
foreach ($all_cats as $cat) {
$result .= $this->getIdinRequestCategory(
$cat,
in_array(
$cat,
$active_categories
)
);
// @todo deal with possible exception here
}
return $result . "</RequestCategory>";
}
/**
* @param $category
*
* @throws Exception
*/
private function getIdinRequestCategory($category, bool $active = true): string
{
$action = ( $active ? "request" : "skip" );
return match ($category) {
'CustomerIDRequest' => "<CustomerIDRequest action=\"$action\"/>",
'NameRequest' => "<NameRequest action=\"$action\"/>",
'AddressRequest' => "<AddressRequest action=\"$action\"/>",
'BirthDateRequest' => "<BirthDateRequest action=\"$action\"/>",
'GenderRequest' => "<GenderRequest action=\"$action\"/>",
'TelephoneRequest' => "<TelephoneRequest action=\"$action\"/>",
'EmailRequest' => "<EmailRequest action=\"$action\"/>",
'AgeCheckRequest' => "<AgeCheckRequest ageOrOlder=\"" .
$this->getMinAge() .
"\" action=\"$action\"/>",
'CustomerIDLoginRequest' => "<CustomerIDLoginRequest action=\"$action\"/>",
default => throw new Exception("No proper iDIN request category given", 1),
};
}
private function getMinAge(): string
{
return "" . ( $this->minage ?? BLUEM_DEFAULT_MIN_AGE );
}
public function TransactionType(): string
{
return "ITX";
}
public function XmlString(): string
{
return $this->XmlRequestInterfaceWrap(
$this->xmlInterfaceName,
'TransactionRequest',
$this->XmlRequestObjectWrap(
'IdentityTransactionRequest',
( $this->requestCategory ) . '
<Description>' . $this->description . '</Description>
<DebtorReference>' . $this->debtorReference . '</DebtorReference>
<DebtorReturnURL automaticRedirect="1">' . $this->debtorReturnURL . '</DebtorReturnURL>' .
$this->XmlWrapDebtorWalletForPaymentMethod() .
$this->XmlWrapDebtorAdditionalData(),
[
'sendOption' => "none",
'language' => "nl",
'brandID' => $this->brandID,
]
)
);
}
/**
* EntranceCodes for iDIN starting with the prefix `showConsumerGui`,
* will always get to a test status page
* of the bank where you can choose which status you want to receive back.
*
* This does clip your current entranceCode
* to ensure the max length is respected.
*
* @return void
*/
public function enableStatusGUI()
{
$this->entranceCode = "showConsumerGui" .
substr($this->entranceCode, 0, 25);
}
private function XmlWrapDebtorWalletForPaymentMethod(): string
{
$res = '';
if ($this->context->isIDIN()) {
$bic = '';
if (empty($this->context->getPaymentDetail('BIC'))) {
if (!empty($this->debtorWallet)) {
$bic = $this->debtorWallet;
}
} else {
$bic = $this->context->getPaymentDetail('BIC');
}
if (empty($bic)) {
return '';
}
$res = PHP_EOL . "<DebtorWallet>" . PHP_EOL;
$res .= "<{$this->context->debtorWalletElementName}>";
$res .= "<BIC>" . $bic . "</BIC>";
$res .= "</{$this->context->debtorWalletElementName}>" . PHP_EOL;
return $res . ("</DebtorWallet>" . PHP_EOL);
}
}
/**
* Package a certain BIC code to be sent with the response. It has to be a BIC valid for this context.
*
* @param [type] $BIC
*
* @return void
* @throws Exception
*/
public function selectDebtorWallet($BIC)
{
if (! in_array($BIC, $this->context->getBICCodes())) {
throw new Exception("Invalid BIC code given, should be a valid BIC of a supported bank.");
}
$this->debtorWallet = $BIC;
}
}