aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-09-06 15:03:34 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-09-06 15:03:34 +0200
commita83e60e6057e7baf64e7596e8a9666a752b55b7f (patch)
treeb0db3faeb44616b05bca795bfeae097c6a897a32
parent356a2eb01a792e4e5ef1887ef02ad2d7c1613ca3 (diff)
downloadwallet-core-a83e60e6057e7baf64e7596e8a9666a752b55b7f.tar.xz
rename event, move logic into wallet
-rw-r--r--content_scripts/notify.ts6
-rw-r--r--lib/shopApi.ts47
2 files changed, 46 insertions, 7 deletions
diff --git a/content_scripts/notify.ts b/content_scripts/notify.ts
index f5c3fb575..c6351fcf7 100644
--- a/content_scripts/notify.ts
+++ b/content_scripts/notify.ts
@@ -27,7 +27,7 @@
"use strict";
-import {createReserve, confirmContract, executeContract} from "../lib/shopApi";
+import {createReserve, confirmContract, fetchPayment} from "../lib/shopApi";
// Make sure we don't pollute the namespace too much.
namespace TalerNotify {
@@ -118,8 +118,8 @@ namespace TalerNotify {
});
});
- addHandler("taler-execute-contract", (e: CustomEvent) => {
- executeContract(e.detail.H_contract, e.detail.offering_url);
+ addHandler("taler-fetch-payment", (e: CustomEvent) => {
+ fetchPayment(e.detail.H_contract, e.detail.offering_url);
});
}
} \ No newline at end of file
diff --git a/lib/shopApi.ts b/lib/shopApi.ts
index b110e2e75..8179ff14d 100644
--- a/lib/shopApi.ts
+++ b/lib/shopApi.ts
@@ -91,10 +91,14 @@ export function confirmContract(contract_wrapper: any, replace_navigation: any)
}
-export function executeContract(H_contract: any, offering_url: any) {
- console.log("got taler-execute-contract in content page");
+/**
+ * Fetch a payment (coin deposit permissions) for a given contract.
+ * If we don't have the payment for the contract, redirect to
+ * offering url instead.
+ */
+export function fetchPayment(H_contract: any, offering_url: any) {
const msg = {
- type: "execute-payment",
+ type: "fetch-payment",
detail: {H_contract},
};
@@ -106,7 +110,7 @@ export function executeContract(H_contract: any, offering_url: any) {
console.log("offering url", offering_url);
window.location.href = offering_url;
} else {
- console.error("execute-payment failed");
+ console.error("fetch-payment failed");
}
return;
}
@@ -127,4 +131,39 @@ export function executeContract(H_contract: any, offering_url: any) {
});
document.dispatchEvent(evt);
});
+}
+
+
+/**
+ * Offer a contract to the wallet after
+ * downloading it from the given URL.
+ */
+function offerContractFrom(url) {
+ var contract_request = new XMLHttpRequest();
+ console.log("downloading contract from '" + url + "'");
+ contract_request.open("GET", url, true);
+ contract_request.onload = function (e) {
+ if (contract_request.readyState == 4) {
+ if (contract_request.status == 200) {
+ console.log("response text:",
+ contract_request.responseText);
+ var contract_wrapper = JSON.parse(contract_request.responseText);
+ if (!contract_wrapper) {
+ console.error("response text was invalid json");
+ alert("Failure to download contract (invalid json)");
+ return;
+ }
+ confirmContract(contract_wrapper, true);
+ } else {
+ alert("Failure to download contract from merchant " +
+ "(" + contract_request.status + "):\n" +
+ contract_request.responseText);
+ }
+ }
+ };
+ contract_request.onerror = function (e) {
+ alert("Failure requesting the contract:\n"
+ + contract_request.statusText);
+ };
+ contract_request.send();
} \ No newline at end of file