wallet-core/extension/content_scripts/notify.js

80 lines
3.1 KiB
JavaScript
Raw Normal View History

2015-11-25 20:41:31 +01:00
// Script that is injected into pages in order to allow merchants pages to
// query the availability of Taler.
2015-12-20 20:05:06 +01:00
"use strict";
document.addEventListener("taler-checkout-probe", function (e) {
let evt = new Event("taler-wallet-present");
document.dispatchEvent(evt);
console.log("merchant handshake done");
});
2015-12-20 20:05:06 +01:00
document.addEventListener("taler-wire-probe", function (e) {
let evt = new Event("taler-wallet-present");
document.dispatchEvent(evt);
console.log("bank handshake done");
});
2015-12-20 20:05:06 +01:00
document.addEventListener("taler-checkout-probe", function (e) {
let evt = new Event("taler-wallet-present");
document.dispatchEvent(evt);
2015-12-16 10:45:16 +01:00
console.log("merchant handshake done");
});
2015-12-20 20:05:06 +01:00
document.addEventListener("taler-create-reserve", function (e) {
2015-12-07 23:39:25 +01:00
let $ = (x) => document.getElementById(x);
console.log("taler-create-reserve with " + JSON.stringify(e.detail));
let form_uri = $(e.detail.form_id).action;
// TODO: validate event fields
// TODO: also send extra bank-defined form fields
let params = {
post_url: URI(form_uri).absoluteTo(document.location.href).href(),
// TODO: This should change in the future, we should not deal with the
// amount as a bank-specific string here.
amount_str: $(e.detail.input_amount).value,
// TODO: This double indirection is way too much ...
field_amount: $(e.detail.input_amount).name,
field_reserve_pub: $(e.detail.input_pub).name,
field_mint: $(e.detail.mint_rcv).name,
2015-12-07 23:39:25 +01:00
};
let uri = URI(chrome.extension.getURL("pages/confirm-create-reserve.html"));
document.location.href = uri.query(params).href();
});
document.addEventListener('taler-contract', function (e) {
2015-12-16 10:45:16 +01:00
// XXX: the merchant should just give us the parsed data ...
2015-12-17 13:30:34 +01:00
let offer = JSON.parse(e.detail);
2015-12-16 10:45:16 +01:00
let uri = URI(chrome.extension.getURL("pages/confirm-contract.html"));
let params = {
offer: JSON.stringify(offer),
merchantPageUrl: document.location.href,
cookie: document.cookie,
2015-12-18 01:30:22 +01:00
};
2015-12-16 10:45:16 +01:00
document.location.href = uri.query(params).href();
});
2015-12-20 20:05:06 +01:00
document.addEventListener('taler-execute-payment', function (e) {
console.log("got taler-execute-payment in content page");
let msg = {
type: "execute-payment",
detail: {
H_contract: e.detail.H_contract
},
};
chrome.runtime.sendMessage(msg, (resp) => {
2015-12-20 20:34:20 +01:00
console.log("got backend response to execute-payment:", JSON.stringify(resp));
2015-12-20 20:05:06 +01:00
if (!resp.success) {
console.log("failure!");
return;
}
let r = new XMLHttpRequest();
r.open('post', resp.payUrl);
r.send(JSON.stringify(resp.payReq));
2015-12-20 20:34:20 +01:00
let evt;
2015-12-20 20:05:06 +01:00
r.onload = (e) => {
if (r.status != 200) {
console.log("non-200 error");
console.log(r.responseText);
2015-12-20 20:34:20 +01:00
alert("merchant returned HTTP status " + r.status);
}
else {
evt = new CustomEvent("taler-payment-result", { detail: resp });
2015-12-20 20:05:06 +01:00
}
document.dispatchEvent(evt);
};
});
});