-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAddress.php
200 lines (190 loc) · 7.6 KB
/
Address.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
<?php
namespace Dfe\TwoCheckout;
use Df\Core\Visitor;
use Magento\Sales\Model\Order as O;
use Magento\Sales\Model\Order\Address as A;
# 2016-05-20
final class Address extends \Df\Core\O {
/**
* @used-by self::city()
* @used-by self::countryIso3()
* @used-by self::line()
* @used-by self::postcode()
* @used-by self::region()
* @used-by self::visitor()
*/
private function aa():A {return $this[self::$P__A];}
/**
* 2016-05-20
* «Card holder’s city. (64 characters max) Required»
* https://www.2checkout.com/documentation/payment-api/create-sale
* @used-by self::build()
*/
private function city():string {return df_nts($this->aa()->getCity() ?: $this->visitor()->city());}
/**
* 2016-05-20
* @used-by build()
* @used-by req()
*/
private function countryIso3():string {return dfc($this, function():string {return df_country_2_to_3(
$this->aa()->getCountryId() ?: $this->visitor()->iso2()
);});}
/**
* 2016-05-20
* 1) «Card holder’s street address. (64 characters max) Required»
* https://www.2checkout.com/documentation/payment-api/create-sale
* 2) «Card holder’s street address line 2. (64 characters max)
* Required if “country” value is: CHN, JPN, RUS -
* Optional for all other “country” values.»
* https://www.2checkout.com/documentation/payment-api/create-sale
* https://mail.google.com/mail/u/0/#inbox/154ca839388e9f7d
* 2017-04-08
* 2017-09-16
* Any value longer than 64 characters will lead to the «600 - Authorization Failed» failure:
* {
* "exception": {
* "errorCode": "600",
* "errorMsg": "Authorization Failed",
* "exception": false,
* "httpStatus": "400"
* },
* "response": null,
* "validationErrors": null
* }
*
* @param int|null $i [optional]
* @return string[]
*/
private function line($i = null):array {/** @var string[] $r */ $r = dfc($this, function() {
/** @var string $s */ /** @var string $s1 */ /** @var string $s2 */
$s = mb_substr(df_trim(df_cc_s($this->aa()->getStreet())), 0, 128);
if (64 < mb_strlen($s)) {
$end1 = mb_strrpos(mb_substr($s, 0, 64), ' '); /** @var int $end1 */
$s1 = mb_substr($s, 0, $end1);
$s2 = mb_substr(trim(mb_substr($s, mb_strlen($s1))), 0, 64);
}
else {
/**
* 2017-09-16
* An empty value of `addrLine2` for CHN, JPN, RUS will lead to the «600 - Authorization Failed» failure.
* E.g., the following address will fail:
* "billingAddr": {
* "addrLine1": "проспект Ленина, 59",
* "addrLine2": "",
* "city": "Абакан",
* "country": "RUS",
* "email": "[email protected]",
* "name": "Dmitrii Fediuk",
* "phoneExt": "",
* "phoneNumber": "+79629197300",
* "state": "Хакасия",
* "zipCode": "655017"
* }
* 2024-06-06 "Use the «Symmetric array destructuring» PHP 7.1 feature": https://github.com/mage2pro/core/issues/379
*/
[$s1, $s2] = [$s, !in_array($this->countryIso3(), ['CHN', 'JPN', 'RUS']) ? '' : '---'];
}
return [$s1, $s2];
}); return is_null($i) ? $r : $r[$i - 1];}
/**
* 2016-05-20 https://www.2checkout.com/documentation/payment-api/create-sale
* @used-by self::build()
*/
private function postcode():string {return df_nts(
$this->aa()->getPostcode() ?: ($this->req() ? $this->visitor()->postCode() : '')
);}
/**
* 2016-05-20
* «Card holder’s state. (64 characters max)
* Required if “country” value is ARG, AUS, BGR, CAN, CHN, CYP, EGY, FRA, IND,
* IDN, ITA, JPN, MYS, MEX, NLD, PAN, PHL, POL, ROU, RUS, SRB, SGP, ZAF, ESP,
* SWE, THA, TUR, GBR, USA - Optional for all other “country” values.»
* https://www.2checkout.com/documentation/payment-api/create-sale
* @used-by self::build()
*/
private function region():string {return df_nts(
$this->aa()->getRegion() ?: ($this->req() ? $this->visitor()->regionName() : '')
);}
/**
* 2016-05-20
* @used-by self::postcode()
* @used-by self::region()
*/
private function req():bool {return in_array($this->countryIso3(), self::$req);}
/**
* 2016-05-20
* @used-by self::city()
* @used-by self::countryIso3()
* @used-by self::postcode()
* @used-by self::region()
*/
private function visitor():Visitor {return dfc($this, function() {return df_visitor($this->aa()->getOrder());});}
/**
* 2016-05-19 https://www.2checkout.com/documentation/payment-api/create-sale
* 2017-04-10
* An order/quote can be without a shipping address (consist of the Virtual products). In this case:
* *) @uses \Magento\Sales\Model\Order::getShippingAddress() returns null
* *) @uses \Magento\Quote\Model\Quote::getShippingAddress() returns an empty object.
* @used-by \Dfe\TwoCheckout\Charge::pCharge()
* @return array(mixed => mixed)
*/
static function build(A $oa = null, bool $isBilling = false):array {/** @var array(string => string) $r */
if (!$oa) {
$r = [];
}
else {
$a = new self([self::$P__A => $oa]); /** @var self $a */
$o = $oa->getOrder(); /** @var O $o */
$r = [
# 2016-05-19 «Card holder’s street address. (64 characters max) Required»
'addrLine1' => $a->line(1)
# 2016-05-19
# «Card holder’s street address line 2. (64 characters max)
# Required if “country” value is: CHN, JPN, RUS.
# Optional for all other “country” values.»
,'addrLine2' => $a->line(2)
,'city' => $a->city() # 2016-05-19 «Card holder’s city. (64 characters max) Required»
,'country' => $a->countryIso3() # 2016-05-19 «Card holder’s country. (64 characters max) Required»
,'name' => $oa->getName() # 2016-05-19 «Card holder’s name. (128 characters max) Required»
# 2016-05-19
# «Card holder’s state. (64 characters max)
# Required if “country” value is ARG, AUS, BGR, CAN, CHN, CYP, EGY, FRA, IND,
# IDN, ITA, JPN, MYS, MEX, NLD, PAN, PHL, POL, ROU, RUS, SRB, SGP, ZAF, ESP,
# SWE, THA, TUR, GBR, USA - Optional for all other “country” values.»
,'state' => $a->region()
# 2016-05-19
# «Card holder’s zip. (16 characters max)
# Required if “country” value is ARG, AUS, BGR, CAN, CHN, CYP, EGY, FRA, IND,
# IDN, ITA, JPN, MYS, MEX, NLD, PAN, PHL, POL, ROU, RUS, SRB, SGP, ZAF, ESP,
# SWE, THA, TUR, GBR, USA - Optional for all other “country” values.»
,'zipCode' => $a->postcode()
] + (!$isBilling ? [] : [
'email' => $o->getCustomerEmail() # 2016-05-19 «Card holder’s email. (64 characters max) Required»
,'phoneExt' => '' # 2016-05-19 «Card holder’s phone extension. (9 characters max) Optional»
,'phoneNumber' => $oa->getTelephone() # 2016-05-19 «Card holder’s phone. (16 characters max) Optional»
]);
}
return $r;
}
/** @var string */
private static $P__A = 'a';
/**
* 2016-05-20
* 1) «Card holder’s state. (64 characters max)
* Required if “country” value is ARG, AUS, BGR, CAN, CHN, CYP, EGY, FRA, IND,
* IDN, ITA, JPN, MYS, MEX, NLD, PAN, PHL, POL, ROU, RUS, SRB, SGP, ZAF, ESP,
* SWE, THA, TUR, GBR, USA - Optional for all other “country” values.»
* https://www.2checkout.com/documentation/payment-api/create-sale
* 2) «Card holder’s zip. (16 characters max)
* Required if “country” value is ARG, AUS, BGR, CAN, CHN, CYP, EGY, FRA, IND,
* IDN, ITA, JPN, MYS, MEX, NLD, PAN, PHL, POL, ROU, RUS, SRB, SGP, ZAF, ESP,
* SWE, THA, TUR, GBR, USA - Optional for all other “country” values.»
* https://www.2checkout.com/documentation/payment-api/create-sale
* @var string[]
*/
private static $req = [
'ARG', 'AUS', 'BGR', 'CAN', 'CHN', 'CYP', 'EGY', 'FRA', 'IND'
,'IDN', 'ITA', 'JPN', 'MYS', 'MEX', 'NLD', 'PAN', 'PHL', 'POL'
, 'ROU', 'RUS', 'SRB', 'SGP', 'ZAF', 'ESP', 'SWE', 'THA', 'TUR', 'GBR', 'USA'
];
}