2020-06-09 05:54:09 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
class AuthorizeAuthorizeCard {
|
2020-06-09 13:53:23 +02:00
|
|
|
|
|
|
|
constructor(publicKey, loginId) {
|
|
|
|
this.publicKey = publicKey;
|
|
|
|
this.loginId = loginId;
|
2020-06-09 05:54:09 +02:00
|
|
|
this.cardHolderName = document.getElementById("cardholder_name");
|
|
|
|
this.cardButton = document.getElementById("card_button");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
handleAuthorization() {
|
|
|
|
|
|
|
|
var authData = {};
|
2020-06-09 13:53:23 +02:00
|
|
|
authData.clientKey = this.publicKey;
|
|
|
|
authData.apiLoginID = this.loginId;
|
2020-06-09 05:54:09 +02:00
|
|
|
|
|
|
|
var cardData = {};
|
|
|
|
cardData.cardNumber = document.getElementById("card_number").value;
|
|
|
|
cardData.month = document.getElementById("expiration_month").value;
|
|
|
|
cardData.year = document.getElementById("expiration_year").value;
|
|
|
|
cardData.cardCode = document.getElementById("cvv").value;
|
|
|
|
|
|
|
|
var secureData = {};
|
|
|
|
secureData.authData = authData;
|
|
|
|
secureData.cardData = cardData;
|
|
|
|
// If using banking information instead of card information,
|
|
|
|
// send the bankData object instead of the cardData object.
|
|
|
|
//
|
|
|
|
// secureData.bankData = bankData;
|
|
|
|
|
2020-06-09 14:54:22 +02:00
|
|
|
Accept.dispatchData(secureData, this.responseHandler);
|
|
|
|
return false;
|
|
|
|
|
2020-06-09 05:54:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
responseHandler(response) {
|
2020-06-09 14:57:01 +02:00
|
|
|
|
2020-06-09 05:54:09 +02:00
|
|
|
if (response.messages.resultCode === "Error") {
|
|
|
|
var i = 0;
|
|
|
|
while (i < response.messages.message.length) {
|
|
|
|
console.log(
|
|
|
|
response.messages.message[i].code + ": " +
|
|
|
|
response.messages.message[i].text
|
|
|
|
);
|
|
|
|
i = i + 1;
|
|
|
|
}
|
|
|
|
}
|
2020-06-09 14:54:22 +02:00
|
|
|
else if(response.messages.resultCode === "Ok"){
|
2020-06-09 14:57:01 +02:00
|
|
|
|
|
|
|
document.getElementById("dataDescriptor").value = response.opaqueData.dataDescriptor;
|
|
|
|
document.getElementById("dataValue").value = response.opaqueData.dataValue;
|
2020-06-09 14:54:22 +02:00
|
|
|
document.getElementById("server_response").submit();
|
2020-06-09 05:54:09 +02:00
|
|
|
}
|
|
|
|
|
2020-06-09 14:54:22 +02:00
|
|
|
return false;
|
2020-06-09 05:54:09 +02:00
|
|
|
}
|
|
|
|
|
2020-06-09 14:54:22 +02:00
|
|
|
|
2020-06-09 05:54:09 +02:00
|
|
|
|
|
|
|
handle() {
|
|
|
|
|
|
|
|
this.cardButton.addEventListener("click", () => {
|
|
|
|
this.handleAuthorization();
|
|
|
|
});
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const publicKey = document.querySelector(
|
|
|
|
'meta[name="authorize-public-key"]'
|
|
|
|
).content;
|
|
|
|
|
2020-06-09 13:53:23 +02:00
|
|
|
const loginId = document.querySelector(
|
2020-06-09 14:54:22 +02:00
|
|
|
'meta[name="authorize-login-id"]'
|
2020-06-09 13:53:23 +02:00
|
|
|
).content;
|
|
|
|
|
2020-06-09 05:54:09 +02:00
|
|
|
/** @handle */
|
2020-06-09 13:53:23 +02:00
|
|
|
new AuthorizeAuthorizeCard(publicKey, loginId).handle();
|