forked from AuthorizeNet/accept-sample-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
payerAuthCaller.js
executable file
·272 lines (237 loc) · 9.64 KB
/
payerAuthCaller.js
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
/**
* HTML Id's for payerAuthCaller() to pick values off the HTML page to send on the CCA start request
*
* NOTE: The index.html file contains duplicate ID's for the card fields. It looks like the acceptJSModal html was duplicated and the field ID's for the HTML were never update.
* We may need to adjust the Ids of the HTML for this to work properly
*/
var payerAuthHtmlIds = {
card: {
number: 'creditCardNumberPA',
expiration: {
year: 'expiryDateYYPA',
month: 'expiryDateMMPA'
}
},
amount: 'amountPA',
submitButton: 'submitButton'
};
/**
* Initalize Songbird.js
*
* When the page loads we should setup Songbird to that by the time the user tries to click the submit button we're already setup
*/
$(function () {
try {
// Make sure the Cardinal namespace is available before we set anything up
if ('Cardinal' in window) {
// Documentation Step 2 - Optional configuration to enable logging to developer console
Cardinal.configure({ logging: { level: 'verbose' } });
// Documentation Step 3 - Initalize Cardinal Cruise
Cardinal.setup('init', {
jwt: document.getElementById('cardinalRequestJwt').value
});
// Optional event to inform us that Songbird has initialzed properly
Cardinal.on('payments.setupComplete', function () {
console.log('Cardinal Cruise is ready to be used');
});
// Documentation Step 5
// Required event that will trigger when any kind of result is reached. Songbird will always end the transaction by calling this method, regardless of the resulting state.
// This includes failure to initialize
Cardinal.on('payments.validated', function (data, jwt) {
try {
// It is very important to make sure that the signature is verified with our ApiKey before accepting the results. Here we send the JWT to the back end to be verified via Ajax,
// but in most flows a form would be posting to a new page to complete authorization.
$.ajax({
method: 'post',
url: 'validateJwt.php',
data: { 'responseJwt': jwt },
dataType: 'json'
})
.done(function (responseData) {
if (responseData !== undefined && typeof responseData === 'object') {
if ('ActionCode' in responseData) {
switch (responseData.ActionCode) {
case "SUCCESS":
case "NOACTION":
// Success indicates that we got back CCA values we can pass to the gateway
// No action indicates that everything worked, but there is no CCA values to worry about, so we can move on with the transaction
console.warn('The transaction was completed with no errors', responseData.Payment.ExtendedData);
// CCA Succesful, now complete the transaction with Authorize.Net
acceptJSCaller(data, responseData.Payment.ExtendedData);
break;
case "FAILURE":
// Failure indicates the authentication attempt failed
console.warn('The authentication attempt failed', responseData.Payment);
break;
case "ERROR":
default:
// Error indicates that a problem was encountered at some point in the transaction
console.warn('An issue occurred with the transaction', responseData.Payment);
break;
}
} else {
console.error("Failure while attempting to verify JWT signature: ", responseData)
}
} else {
console.error('Response data was incorrectly formatted: ', responseData);
}
})
.fail(function (xhr, ajaxError) {
console.log('Connection failure:', ajaxError)
});
} catch (validateError) {
console.error('Failed while processing validate', validateError);
}
});
} else {
console.error('Cardinal namespace is not available. Please check the script Url.');
}
} catch (error) {
console.error('Cardinal Cruise failed during startup', error);
}
});
/**
* Handler to trigger CCA
*
* Here we collect any data we need to complete the CCA request to Cardinal and start authentication. We should not call 'Cardinal.start' if we do not have
* all the required fields
*/
function payerAuthCaller() {
try {
var cardNumber = document.getElementById(payerAuthHtmlIds.card.number).value,
cardExpMonth = document.getElementById(payerAuthHtmlIds.card.expiration.month).value,
cardExpYear = document.getElementById(payerAuthHtmlIds.card.expiration.year).value,
orderObject;
// Do whatever field validation we want to make sure the form is properly filled out before we run the CCA call
if (isCardFieldValid(cardNumber) && isCardFieldValid(cardExpMonth) && isCardFieldValid(cardExpYear)) {
// Expiration fields in the Cardinal Cruise API are integers
if (typeof cardExpMonth === 'string') {
cardExpMonth = parseInt(cardExpMonth, 10);
}
if (typeof cardExpYear === 'string') {
// Cardinal Cruise is expecting a 2 digit Expiration Year, so if we have a 4 digit year, grab the last 2 digits
if(cardExpYear.length === 4){
cardExpYear = cardExpYear.substring(2,4);
}
cardExpYear = parseInt(cardExpYear, 10);
}
// Assemble the order object from the input fields on the page.
orderObject = {
OrderDetails: {
Amount: document.getElementById(payerAuthHtmlIds.amount).value,
CurrencyCode: "840"
},
Consumer: {
Account: {
AccountNumber: cardNumber,
ExpirationMonth: cardExpMonth,
ExpirationYear: cardExpYear
}
}
}
// Documentation Step 4
// Start the CCA transaction, passing the order data we collected on the page
Cardinal.start('cca', orderObject);
} else {
console.log('Card Number was not a valid number, skipping CC');
}
} catch (error) {
console.error('Error while trying to start CCA', error);
}
}
/**
* Accept.JS Caller
*
* Here we pass the credit card fields off to Authorize.Net, using Accpet.js,
* so they never hit our server
*/
function acceptJSFromPACaller(paData)
{
console.warn('Entered acceptJSCaller');
var secureData = {} , authData = {} , cardData = {};
cardData.cardNumber = document.getElementById(payerAuthHtmlIds.card.number).value;
cardData.month = document.getElementById(payerAuthHtmlIds.card.expiration.month).value;
cardData.year = document.getElementById(payerAuthHtmlIds.card.expiration.year).value;
secureData.cardData = cardData;
authData.clientKey = '5FcB6WrfHGS76gHW3v7btBCE3HuuBuke9Pj96Ztfn5R32G5ep42vne7MCWZtAucY';
authData.apiLoginID = '5KP3u95bQpv';
secureData.authData = authData;
Accept.dispatchData(secureData, responseHandler);
function responseHandler(response) {
if (response.messages.resultCode === 'Error') {
for (var i = 0; i < response.messages.message.length; i++) {
console.log(response.messages.message[i].code + ':' + response.messages.message[i].text);
}
alert("acceptJS library error!")
} else {
console.log(response.opaqueData.dataDescriptor);
console.log(response.opaqueData.dataValue);
create3DSTransaction(response.opaqueData);
}
}
// Call our sample backend with the Cardinal 3D-Secure values PLUS the Authorize.Net payment nonce
function create3DSTransaction(dataObj) {
$.ajax({
url: "transactionCaller.php",
data: {amount: document.getElementById(payerAuthHtmlIds.amount).value, dataDesc: dataObj.dataDescriptor, dataValue: dataObj.dataValue, paIndicator: paData.ECIFlag, paValue: paData.CAVV},
method: 'POST',
timeout: 5000
}).done(function(data){
console.log('Success');
}).fail(function(){
console.log('Error');
}).always(function(textStatus){
console.log(textStatus);
showReceipt(textStatus);
})
}
function showReceipt(msg)
{
try{
responseObj=JSON.parse(msg);
if(responseObj.transactionResponse.responseCode=='1'){
message="Transaction Successful!<br>Transaction ID: "+responseObj.transactionResponse.transId;
}
else{
message="Transaction Unsuccessful.";//+responseObj.messages.message[0].text;
if(responseObj.transactionResponse.errors!=null)//to do: take care of errors[1] array being parsed into single object
{
message+=responseObj.transactionResponse.errors.error.errorText;
}
/*else if(responseObj.transactionResponse.errors[0]!=null)
{
for(i=0;i<responseObj.transactionResponse.errors.length;i++)
{
message+="<br>";
message+=responseObj.transactionResponse.errors[i].error.errorText;
}
}*/
if(responseObj.transactionResponse.transId!=null)
{
message+="<br>";
message+=("Transaction ID: "+responseObj.transactionResponse.transId)
}
}
}
catch(error){
console.log("Couldn't parse result string");
message="Error.";
}
//alert(message);
$('#payerAuthReceiptBody').html(message);
//jQuery.noConflict();
$('#payerAuthPayModal').modal('hide');
$('#payerAuthReceiptModal').modal('show');
}
}
/**
* Simple helper for field verification before we start CCA.
* @param {string} fieldValue - The value to check for validity
* @returns {boolean} is the field value valid to start CCA
*/
function isCardFieldValid(fieldValue) {
if (fieldValue != undefined && fieldValue.length > 0) {
return true;
}
return false;
}