-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout-process.php
More file actions
138 lines (115 loc) · 3.98 KB
/
checkout-process.php
File metadata and controls
138 lines (115 loc) · 3.98 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
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
<?php
require_once 'vendor/autoload.php';
$dotenv = Dotenv\Dotenv::createImmutable(__DIR__);
$dotenv->load();
//Set Your server key
Midtrans\Config::$serverKey = $_ENV['MIDTRANS_SERVER_KEY'];
$clientKey = $_ENV['MIDTRANS_CLIENT_KEY'];
// Uncomment for production environment
// Midtrans\Config::$isProduction = true;
// Enable sanitization
Midtrans\Config::$isSanitized = true;
// Enable 3D-Secure
Midtrans\Config::$is3ds = true;
// Required
$transaction_details = array(
'order_id' => rand(),
'gross_amount' => 94000, // no decimal allowed for creditcard
);
// Optional
$item1_details = array(
'id' => 'a1',
'price' => 80000,
'quantity' => 1,
'name' => "Ebook Belajar PHP Dasar"
);
// Optional
$item2_details = array(
'id' => 'a2',
'price' => 50000,
'quantity' => 1,
'name' => "Ebook Belajar PHP OOP"
);
// Optional
$item_details = array($item1_details, $item2_details);
// Optional
$billing_address = array(
'first_name' => "Theis",
'last_name' => "Andatu",
'address' => "Asrama ITS",
'city' => "Surabaya",
'postal_code' => "60111",
'phone' => "081122334455",
'country_code' => 'IDN'
);
// Optional
$shipping_address = array(
'first_name' => "Theis",
'last_name' => "Andatu",
'address' => "Asrama ITS",
'city' => "Surabaya",
'postal_code' => "60111",
'phone' => "08113366345",
'country_code' => 'IDN'
);
// Optional
$customer_details = array(
'first_name' => "Theis",
'last_name' => "Andatu",
'email' => "theisandatu@gmail.com",
'phone' => "08113366345",
'billing_address' => $billing_address,
'shipping_address' => $shipping_address
);
// Optional, remove this to display all available payment methods
// $enable_payments = array('credit_card', 'cimb_clicks', 'mandiri_clickpay', 'echannel');
// Fill transaction details
$transaction = array(
// 'enabled_payments' => $enable_payments,
'transaction_details' => $transaction_details,
'customer_details' => $customer_details,
'item_details' => $item_details,
);
$snapToken = Midtrans\Snap::getSnapToken($transaction);
echo "snapToken = " . $snapToken;
$base = $_SERVER['REQUEST_URI'];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Checkout | Integrasi midtrans di aplikasi payment sederhana</title>
</head>
<body>
<br>
<br>
<button id="pay-button">Pay!</button>
<pre><div id="result-json">JSON result will appear here after payment:<br></div></pre>
<!-- TODO: Remove ".sandbox" from script src URL for production environment. Also input your client key in "data-client-key" -->
<script src="https://app.sandbox.midtrans.com/snap/snap.js" data-client-key="<?php echo $clientKey; ?>"></script>
<script type="text/javascript">
document.getElementById('pay-button').onclick = function() {
// SnapToken acquired from previous step
snap.pay('<?php echo $snapToken ?>', {
// Optional
onSuccess: function(result) {
/* You may add your own js here, this is just example */
document.getElementById('result-json').innerHTML += JSON.stringify(result, null, 2);
},
// Optional
onPending: function(result) {
/* You may add your own js here, this is just example */
document.getElementById('result-json').innerHTML += JSON.stringify(result, null, 2);
},
// Optional
onError: function(result) {
/* You may add your own js here, this is just example */
document.getElementById('result-json').innerHTML += JSON.stringify(result, null, 2);
}
});
};
</script>
</body>
</html>