2015-12-25 22:42:14 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
(C) 2015 GNUnet e.V.
|
|
|
|
|
|
|
|
TALER is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
|
|
|
TALER is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
2015-12-16 10:45:16 +01:00
|
|
|
/// <reference path="../decl/handlebars/handlebars.d.ts" />
|
|
|
|
"use strict";
|
|
|
|
let url = URI(document.location.href);
|
|
|
|
let query = URI.parseQuery(url.query());
|
|
|
|
let $_ = (x) => document.getElementById(x);
|
|
|
|
function renderContract(contract) {
|
|
|
|
let showAmount = document.getElementById("show-amount");
|
|
|
|
$_('merchant-name').innerText = contract.merchant.name;
|
|
|
|
}
|
|
|
|
function clone(obj) {
|
|
|
|
// This is faster than it looks ...
|
|
|
|
return JSON.parse(JSON.stringify(obj));
|
|
|
|
}
|
|
|
|
Handlebars.registerHelper('prettyAmount', function (amount) {
|
|
|
|
let v = amount.value + amount.fraction / 10e6;
|
|
|
|
return v.toFixed(2) + " " + amount.currency;
|
|
|
|
});
|
|
|
|
document.addEventListener("DOMContentLoaded", (e) => {
|
2015-12-17 13:30:34 +01:00
|
|
|
let offer = JSON.parse(query.offer);
|
|
|
|
console.dir(offer);
|
2015-12-16 10:45:16 +01:00
|
|
|
let source = $_("contract-template").innerHTML;
|
|
|
|
let template = Handlebars.compile(source);
|
2015-12-20 20:05:06 +01:00
|
|
|
$_("render-contract").innerHTML = template(offer.contract);
|
2015-12-17 13:30:34 +01:00
|
|
|
document.getElementById("confirm-pay").addEventListener("click", (e) => {
|
2015-12-18 01:30:22 +01:00
|
|
|
console.log("Query:", JSON.stringify(query));
|
2015-12-17 22:56:24 +01:00
|
|
|
let d = {
|
2015-12-18 01:30:22 +01:00
|
|
|
offer: JSON.parse(query.offer),
|
|
|
|
merchantPageUrl: query.merchantPageUrl
|
2015-12-17 22:56:24 +01:00
|
|
|
};
|
2015-12-17 13:30:34 +01:00
|
|
|
chrome.runtime.sendMessage({ type: 'confirm-pay', detail: d }, (resp) => {
|
2015-12-20 20:05:06 +01:00
|
|
|
if (!resp.success) {
|
2015-12-17 22:56:24 +01:00
|
|
|
let source = $_("error-template").innerHTML;
|
|
|
|
let template = Handlebars.compile(source);
|
|
|
|
$_("status").innerHTML = template(resp);
|
|
|
|
return;
|
2015-12-16 10:45:16 +01:00
|
|
|
}
|
2015-12-20 20:05:06 +01:00
|
|
|
document.location.href = URI(d.offer.exec_url)
|
|
|
|
.absoluteTo(query.merchantPageUrl)
|
|
|
|
.addQuery({ H_contract: d.offer.H_contract })
|
|
|
|
.href();
|
2015-12-16 10:45:16 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|