-
Notifications
You must be signed in to change notification settings - Fork 3
/
braintree_dropin_demo.php
336 lines (307 loc) · 11.8 KB
/
braintree_dropin_demo.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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
<?php
/**
* Braintree - Payment Gateway integration example
* ==============================================================================
*
* @version v1.0: braintree_dropin_demo.php 2016/03/25
* @copyright Copyright (c) 2016, http://www.ilovephp.net
* @author Sagar Deshmukh <sagarsdeshmukh91@gmail.com>
* You are free to use, distribute, and modify this software
* ==============================================================================
*
*/
// Braintree library
require 'braintree/lib/Braintree.php';
$params = array(
"testmode" => "on",
"merchantid" => "xxxxxxx",
"publickey" => "xxxxxxx",
"privatekey" => "xxxxxxxxxxxxxxxxxxxxx",
);
if ($params['testmode'] == "on")
{
Braintree_Configuration::environment('sandbox');
}
else
{
Braintree_Configuration::environment('production');
}
Braintree_Configuration::merchantId($params["merchantid"]);
Braintree_Configuration::publicKey($params["publickey"]);
Braintree_Configuration::privateKey($params["privatekey"]);
if(isset($_POST['payment_method_nonce']))
{
// Customer details
$customer_firstname = $_POST['c_firstname'];
$customer_lastname = $_POST['c_lastname'];
$customer_email = $_POST['c_email'];
$customer_phonenumber = $_POST['c_phonenumber'];
// EOF Customer details
// Customer billing details
$firstname = $_POST['firstname'];
$lastname = $_POST['lastname'];
$email = $_POST['c_email'];
$address1 = $_POST['address1'];
$address2 = $_POST['address2'];
$city = $_POST['city'];
$state = $_POST['state'];
$postcode = $_POST['postcode'];
$country = $_POST['country'];
$phone = $_POST['c_phonenumber'];
// EOF Customer billing details
$sale = array(
'amount' => $_POST['amount'],
'orderId' => $_POST['invoiceid'],
'paymentMethodNonce' => $_POST['payment_method_nonce'], // Autogenerated field from braintree
'customer' => array(
'firstName' => $customer_firstname,
'lastName' => $customer_lastname,
'phone' => $customer_phonenumber,
'email' => $customer_email
),
'billing' => array(
'firstName' => $firstname,
'lastName' => $lastname,
'streetAddress' => $address1,
'extendedAddress' => $address2,
'locality' => $city,
'region' => $state,
'postalCode' => $postcode,
'countryCodeAlpha2' => $country
),
'options' => array(
'submitForSettlement' => true,
'storeInVaultOnSuccess' => true
)
);
$result = Braintree_Transaction::sale($sale);
if ($result->success)
{
echo "Braintree_cust_id : ".$braintree_cust_id = $result->transaction->_attributes['customer']['id']; // After first successfull transaction, save this Braintree_cust_id in DB and use for future transactions
}
else
{
echo "Error : ".$result->_attributes['message'];
}
print_r($result); exit;
}
else
if (isset($_POST['braintree_cust_id']))
{
$sale = array(
'customerId' => $braintree_cust_id,
'amount' => $_POST['amount'],
'orderId' => $_POST['invoiceid'], // This field is get back in responce to track this transaction
'options' => array(
'submitForSettlement' => true
)
);
}
else
if (isset($_POST['action']) && $_POST['action'] == 'generateclienttoken')
{
//$braintree_cust_id = "60033487";
// Generate the nonce and send it back
try
{
$clientToken = Braintree_ClientToken::generate(array(
// use customerId to get a previous customer from the vault
// 'customerId' => $braintree_cust_id // $braintree_cust_id is Fetch from DB
));
}
catch(Exception $e)
{
// cannot get the customer from the vault!!
$clientToken = Braintree_ClientToken::generate();
}
echo $clientToken; exit;
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Checkout</title>
</head>
<body>
<link href="style.css" type="text/css" rel="stylesheet" />
<h1 class="bt_title">Braintree Drop-in</h1>
<div class="dropin-page">
<form id="checkout" method="post" action="">
<h4 class="bt_title">Customer Information</h4>
<input type="hidden" name="invoiceid" value="123456">
<fieldset class="one_off_firstname">
<label class="input-label" for="firstname">
<span class="field-name">First Name</span>
<input id="c_firstname" name="c_firstname" class="input-field card-field" type="text" placeholder="First Name" autocomplete="off">
<div class="invalid-bottom-bar"></div>
</label>
</fieldset>
<fieldset class="one_off_lastname">
<label class="input-label" for="lastname">
<span class="field-name">Last Name</span>
<input id="c_lastname" name="c_lastname" class="input-field card-field" type="text" placeholder="Last Name" autocomplete="off">
<div class="invalid-bottom-bar"></div>
</label>
</fieldset>
<fieldset class="one_off_lastname">
<label class="input-label" for="email">
<span class="field-name">Email</span>
<input id="c_email" name="c_email" class="input-field card-field" type="text" placeholder="Email" autocomplete="off">
<div class="invalid-bottom-bar"></div>
</label>
</fieldset>
<fieldset class="one_off_phonenumber">
<label class="input-label" for="phonenumber">
<span class="field-name">Phone Number</span>
<input id="c_phonenumber" name="c_phonenumber" class="input-field card-field" type="text"placeholder="Phone Number" autocomplete="off">
<div class="invalid-bottom-bar"></div>
</label>
</fieldset>
<h4 class="bt_title">Customer Billing Information</h4>
<fieldset class="one_off_firstname">
<label class="input-label" for="firstname">
<span class="field-name">First Name</span>
<input id="firstname" name="firstname" class="input-field card-field" type="text" placeholder="First Name" autocomplete="off">
<div class="invalid-bottom-bar"></div>
</label>
</fieldset>
<fieldset class="one_off_lastname">
<label class="input-label" for="lastname">
<span class="field-name">Last Name</span>
<input id="lastname" name="lastname" class="input-field card-field" type="text" placeholder="Last Name" autocomplete="off">
<div class="invalid-bottom-bar"></div>
</label>
</fieldset>
<fieldset class="one_off_address1">
<label class="input-label" for="address1">
<span class="field-name">Address1</span>
<input id="address1" name="address1" class="input-field card-field" type="text" placeholder="Address" autocomplete="off">
<div class="invalid-bottom-bar"></div>
</label>
</fieldset>
<fieldset class="one_off_address2">
<label class="input-label" for="address2">
<span class="field-name">Address2</span>
<input id="address2" name="address2" class="input-field card-field" type="text" placeholder="Address" autocomplete="off">
<div class="invalid-bottom-bar"></div>
</label>
</fieldset>
<fieldset class="one_off_city">
<label class="input-label" for="city">
<span class="field-name">City/Town</span>
<input id="city" name="city" class="input-field card-field" type="text" placeholder="City/Town" autocomplete="off">
<div class="invalid-bottom-bar"></div>
</label>
</fieldset>
<fieldset class="one_off_state">
<label class="input-label" for="state">
<span class="field-name">State/Region</span>
<input id="state" name="state" class="input-field card-field" type="text" placeholder="State/Region" autocomplete="off">
<div class="invalid-bottom-bar"></div>
</label>
</fieldset>
<fieldset class="one_off_postcode">
<label class="input-label" for="postcode">
<span class="field-name">Post Code</span>
<input id="postcode" name="postcode" class="input-field card-field" type="text" placeholder="Post Code" autocomplete="off">
<div class="invalid-bottom-bar"></div>
</label>
</fieldset>
<fieldset class="one_off_country">
<label class="input-label" for="country">
<span class="field-name">Country</span>
<input id="country" name="country" class="input-field card-field" type="text" placeholder="Country" autocomplete="off">
<div class="invalid-bottom-bar"></div>
</label>
</fieldset>
<h4 class="bt_title">Credit Card Details</h4>
<div id="dropin">
<div class="loader_container">
<div>Loading...</div>
</div>
</div>
<fieldset class="one_off_amount">
<?php
if(isset($_GET['amt'])) {
$amt = number_format((float)$_GET['amt'], 2, '.', '');
?>
<h3>Your bill is for an amount of $ <?php echo $amt; ?></h3>
<input type="hidden" name="amount" step="any" id="amount" value="<?php echo $amt; ?>" />
<?php
}else{
?>
<label class="input-label" for="amount">
<span class="field-name">Amount</span>
<input id="amount" name="amount" class="input-field card-field" type="number" inputmode="numeric" placeholder="Amount" autocomplete="off" step="any">
<div class="invalid-bottom-bar"></div>
</label>
<?php
}
?>
</fieldset>
<div class="btn_container">
<input type="submit" value="Make Payment" class="pay-btn">
<span class="loader_img"></span> </div>
</form>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="https://js.braintreegateway.com/v2/braintree.js"></script>
<!-- TO DO : Place below JS code in js file and include that JS file -->
<script type="text/javascript">
(function() {
var BTFn = {};
BTFn.sendJSON = function($pay_btn) {
$.ajax({
dataType: "text",
type: "POST",
data: { action: "generateclienttoken"},
url: "braintree_dropin_demo.php",
success: function (req) {
BTFn.initBT(req, $pay_btn);
},
error: function() {
}
});
};
BTFn.initBT = function(req, $pay_btn) {
braintree.setup(
req,
'dropin', {
container: 'dropin',
onReady:function(){
$('.loader_container').remove();
},
onError: function(error) {
$pay_btn.show().closest('.btn_container').find('.loader_img').hide();
}
});
};
BTFn.formValidate = function($form, $submit, $amount, $pay_btn) {
var THIS = this;
$submit.on('click', function(e) {
$('.input-label .invalid-bottom-bar').removeClass('invalid');
$(this).hide().closest('.btn_container').find('.loader_img').css('display', 'inline-block');
});
};
BTFn.updateForm = function($form, link) {
$form.attr('action', link);
$('.one_off_amount, .monthly_amount').toggleClass('hide');
};
BTFn.appendTo = function($cont, childSelector, options) {
var input = document.createElement(childSelector);
input.type = options.type;
input.name = options.name;
input.value = options.value;
$cont.appendChild(input);
};
$(document).ready(function() {
$('.loader_container').find("div").show();
var $form = $('#checkout'), $submit = $('#checkout input[type="submit"]'), $amount = $('input[name="amount"]'), $pay_btn = $('.pay-btn');
BTFn.sendJSON($pay_btn);
BTFn.formValidate($form, $submit, $amount, $pay_btn);
});
})();
</script>
</body>
</html>