-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCheckoutFormCreateRequest.php
More file actions
78 lines (58 loc) · 1.91 KB
/
CheckoutFormCreateRequest.php
File metadata and controls
78 lines (58 loc) · 1.91 KB
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
<?php
//Müşteri bilgilerinin bulunduğı sınıfı temsil eder.
class Purchaser{
public $Name;
public $Surname;
public $BirthDate;
public $Email;
public $GsmPhone;
public $IdentityNumber;
public $ClientIp;
public $InvoiceAddress;
public $ShippingAddress;
}
//Müşteri adresi bilgilerinin bulunduğı sınıfı temsil eder.
class PurchaserAddress{
public $Name;
public $Surname;
public $Address;
public $ZipCode;
public $CityCode;
public $IdentityNumber;
public $CountryCode;
public $TaxNumber;
public $TaxOffice;
public $CompanyName;
public $PhoneNumber;
}
//Ürün bilgilerinin bulunduğu sınıfı temsil eder.
class Product{
public $Code;
public $Title;
public $Quantity;
public $Price;
}
class CheckoutFormCreateRequest extends BaseRequest
{
public $Threed;
public $OrderId;
public $Amount;
public $AllowedInstallments;
public $VendorId;
public $Products;
public $Purchaser;
public $CallbackUrl;
public static function execute(CheckoutFormCreateRequest $request, Settings $settings)
{
$settings->transactionDate = Helper::GetTransactionDateString();
$settings->HashString = $settings->PrivateKey . $request->Mode . $request->Purchaser->Name . $request->Purchaser->SurName . $request->Purchaser->Email . $settings->transactionDate;
return restHttpCaller::post($settings->BaseUrl . "rest/checkoutForm/create", Helper::GetHttpHeaders($settings, "application/json"), $this->toJsonString());
}
public function toJsonString()
{
return json_encode([
"script" => $this->script,
"iframeUrl" => $this->iframeUrl,
]);
}
}