2021-06-16 23:21:03 +02:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
(C) 2016 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, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
2022-02-22 15:01:47 +01:00
|
|
|
import {
|
|
|
|
Amounts,
|
|
|
|
Balance,
|
|
|
|
CoinDumpJson,
|
|
|
|
ExchangeListItem,
|
|
|
|
NotificationType,
|
2022-02-23 19:18:37 +01:00
|
|
|
Translate,
|
|
|
|
i18n,
|
2022-02-22 15:01:47 +01:00
|
|
|
} from "@gnu-taler/taler-util";
|
2021-11-29 17:33:01 +01:00
|
|
|
import { PendingTaskInfo } from "@gnu-taler/taler-wallet-core";
|
2021-12-01 18:14:24 +01:00
|
|
|
import { format } from "date-fns";
|
2021-11-29 17:33:01 +01:00
|
|
|
import { Fragment, h, VNode } from "preact";
|
2022-01-13 05:33:24 +01:00
|
|
|
import { useRef, useState } from "preact/hooks";
|
2021-06-16 23:21:03 +02:00
|
|
|
import { Diagnostics } from "../components/Diagnostics";
|
2022-01-04 21:06:17 +01:00
|
|
|
import { NotifyUpdateFadeOut } from "../components/styled";
|
2021-12-01 18:14:24 +01:00
|
|
|
import { Time } from "../components/Time";
|
2021-11-29 17:33:01 +01:00
|
|
|
import { useAsyncAsHook } from "../hooks/useAsyncAsHook";
|
2021-11-19 18:51:27 +01:00
|
|
|
import { useDiagnostics } from "../hooks/useDiagnostics";
|
2021-06-16 23:21:03 +02:00
|
|
|
import * as wxApi from "../wxApi";
|
|
|
|
|
2021-11-16 17:59:53 +01:00
|
|
|
export function DeveloperPage(): VNode {
|
2021-08-13 23:04:05 +02:00
|
|
|
const [status, timedOut] = useDiagnostics();
|
2021-12-01 18:14:24 +01:00
|
|
|
|
2021-11-29 17:33:01 +01:00
|
|
|
const listenAllEvents = Array.from<NotificationType>({ length: 1 });
|
|
|
|
listenAllEvents.includes = () => true; // includes every event
|
|
|
|
|
2022-02-22 15:01:47 +01:00
|
|
|
const response = useAsyncAsHook(async () => {
|
|
|
|
const op = await wxApi.getPendingOperations();
|
|
|
|
const c = await wxApi.dumpCoins();
|
|
|
|
const ex = await wxApi.listExchanges();
|
|
|
|
return {
|
|
|
|
operations: op.pendingOperations,
|
|
|
|
coins: c.coins,
|
|
|
|
exchanges: ex.exchanges,
|
|
|
|
};
|
|
|
|
}, listenAllEvents);
|
|
|
|
|
|
|
|
const nonResponse = { operations: [], coins: [], exchanges: [] };
|
|
|
|
const { operations, coins, exchanges } =
|
|
|
|
response === undefined
|
|
|
|
? nonResponse
|
|
|
|
: response.hasError
|
|
|
|
? nonResponse
|
|
|
|
: response.response;
|
|
|
|
|
|
|
|
const balanceResponse = useAsyncAsHook(wxApi.getBalance);
|
2021-11-29 17:33:01 +01:00
|
|
|
|
2021-12-23 19:17:36 +01:00
|
|
|
return (
|
|
|
|
<View
|
|
|
|
status={status}
|
|
|
|
timedOut={timedOut}
|
|
|
|
operations={operations}
|
2022-02-22 15:01:47 +01:00
|
|
|
coins={coins}
|
|
|
|
exchanges={exchanges}
|
2021-12-23 19:17:36 +01:00
|
|
|
onDownloadDatabase={async () => {
|
|
|
|
const db = await wxApi.exportDB();
|
|
|
|
return JSON.stringify(db);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
);
|
2021-11-29 17:33:01 +01:00
|
|
|
}
|
2021-12-01 18:14:24 +01:00
|
|
|
|
2022-02-22 15:01:47 +01:00
|
|
|
type CoinsInfo = CoinDumpJson["coins"];
|
|
|
|
type CalculatedCoinfInfo = {
|
|
|
|
denom_value: number;
|
|
|
|
remain_value: number;
|
|
|
|
status: string;
|
|
|
|
from_refresh: boolean;
|
|
|
|
id: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
type SplitedCoinInfo = {
|
|
|
|
spent: CalculatedCoinfInfo[];
|
|
|
|
usable: CalculatedCoinfInfo[];
|
|
|
|
};
|
|
|
|
|
2021-11-29 17:33:01 +01:00
|
|
|
export interface Props {
|
|
|
|
status: any;
|
|
|
|
timedOut: boolean;
|
|
|
|
operations: PendingTaskInfo[];
|
2022-02-22 15:01:47 +01:00
|
|
|
coins: CoinsInfo;
|
|
|
|
exchanges: ExchangeListItem[];
|
2021-12-01 18:14:24 +01:00
|
|
|
onDownloadDatabase: () => Promise<string>;
|
2021-11-29 17:33:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function hashObjectId(o: any): string {
|
|
|
|
return JSON.stringify(o);
|
|
|
|
}
|
|
|
|
|
2021-12-23 19:17:36 +01:00
|
|
|
export function View({
|
|
|
|
status,
|
|
|
|
timedOut,
|
|
|
|
operations,
|
2022-02-22 15:01:47 +01:00
|
|
|
coins,
|
2021-12-23 19:17:36 +01:00
|
|
|
onDownloadDatabase,
|
|
|
|
}: Props): VNode {
|
|
|
|
const [downloadedDatabase, setDownloadedDatabase] = useState<
|
|
|
|
{ time: Date; content: string } | undefined
|
|
|
|
>(undefined);
|
2021-12-01 18:14:24 +01:00
|
|
|
async function onExportDatabase(): Promise<void> {
|
2021-12-23 19:17:36 +01:00
|
|
|
const content = await onDownloadDatabase();
|
2021-12-01 18:14:24 +01:00
|
|
|
setDownloadedDatabase({
|
|
|
|
time: new Date(),
|
2021-12-23 19:17:36 +01:00
|
|
|
content,
|
|
|
|
});
|
2021-12-01 18:14:24 +01:00
|
|
|
}
|
2022-01-13 05:33:24 +01:00
|
|
|
const fileRef = useRef<HTMLInputElement>(null);
|
|
|
|
async function onImportDatabase(str: string): Promise<void> {
|
|
|
|
return wxApi.importDB(JSON.parse(str));
|
|
|
|
}
|
2022-02-22 15:01:47 +01:00
|
|
|
const currencies: { [ex: string]: string } = {};
|
|
|
|
const money_by_exchange = coins.reduce(
|
|
|
|
(prev, cur) => {
|
|
|
|
const denom = Amounts.parseOrThrow(cur.denom_value);
|
|
|
|
if (!prev[cur.exchange_base_url]) {
|
|
|
|
prev[cur.exchange_base_url] = [];
|
|
|
|
currencies[cur.exchange_base_url] = denom.currency;
|
|
|
|
}
|
|
|
|
prev[cur.exchange_base_url].push({
|
|
|
|
denom_value: parseFloat(Amounts.stringifyValue(denom)),
|
|
|
|
remain_value: parseFloat(
|
|
|
|
Amounts.stringifyValue(Amounts.parseOrThrow(cur.remaining_value)),
|
|
|
|
),
|
|
|
|
status: cur.coin_suspended ? "suspended" : "ok",
|
|
|
|
from_refresh: cur.refresh_parent_coin_pub !== undefined,
|
|
|
|
id: cur.coin_pub,
|
|
|
|
});
|
|
|
|
return prev;
|
|
|
|
},
|
|
|
|
{} as {
|
|
|
|
[exchange_name: string]: CalculatedCoinfInfo[];
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2021-06-16 23:21:03 +02:00
|
|
|
return (
|
|
|
|
<div>
|
2022-02-23 19:18:37 +01:00
|
|
|
<p>
|
|
|
|
<Translate>Debug tools</Translate>:
|
|
|
|
</p>
|
|
|
|
<button onClick={confirmReset}>
|
|
|
|
<Translate>reset</Translate>
|
|
|
|
</button>
|
2021-11-29 17:33:01 +01:00
|
|
|
<br />
|
2022-02-23 19:18:37 +01:00
|
|
|
<button onClick={() => fileRef?.current?.click()}>
|
|
|
|
<Translate>import database</Translate>
|
|
|
|
</button>
|
2022-01-13 05:33:24 +01:00
|
|
|
<input
|
|
|
|
ref={fileRef}
|
|
|
|
style={{ display: "none" }}
|
|
|
|
type="file"
|
|
|
|
onChange={async (e) => {
|
|
|
|
const f: FileList | null = e.currentTarget.files;
|
|
|
|
if (!f || f.length != 1) {
|
|
|
|
return Promise.reject();
|
|
|
|
}
|
|
|
|
const buf = await f[0].arrayBuffer();
|
|
|
|
const str = new Uint8Array(buf).reduce(
|
|
|
|
(data, byte) => data + String.fromCharCode(byte),
|
|
|
|
"",
|
|
|
|
);
|
|
|
|
return onImportDatabase(str);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<br />
|
2022-02-23 19:18:37 +01:00
|
|
|
<button onClick={onExportDatabase}>
|
|
|
|
<Translate>export database</Translate>
|
|
|
|
</button>
|
2021-12-23 19:17:36 +01:00
|
|
|
{downloadedDatabase && (
|
|
|
|
<div>
|
2022-02-23 19:18:37 +01:00
|
|
|
<Translate>
|
|
|
|
Database exported at
|
|
|
|
<Time
|
|
|
|
timestamp={{ t_ms: downloadedDatabase.time.getTime() }}
|
|
|
|
format="yyyy/MM/dd HH:mm:ss"
|
|
|
|
/>
|
|
|
|
<a
|
|
|
|
href={`data:text/plain;charset=utf-8;base64,${toBase64(
|
|
|
|
downloadedDatabase.content,
|
|
|
|
)}`}
|
|
|
|
download={`taler-wallet-database-${format(
|
|
|
|
downloadedDatabase.time,
|
|
|
|
"yyyy/MM/dd_HH:mm",
|
|
|
|
)}.json`}
|
|
|
|
>
|
|
|
|
<Translate>click here</Translate>
|
|
|
|
</a>
|
|
|
|
to download
|
|
|
|
</Translate>
|
2021-12-23 19:17:36 +01:00
|
|
|
</div>
|
|
|
|
)}
|
2021-12-01 18:14:24 +01:00
|
|
|
<br />
|
2022-02-23 19:18:37 +01:00
|
|
|
<p>
|
|
|
|
<Translate>Coins</Translate>:
|
|
|
|
</p>
|
2022-02-22 15:01:47 +01:00
|
|
|
{Object.keys(money_by_exchange).map((ex) => {
|
|
|
|
const allcoins = money_by_exchange[ex];
|
|
|
|
allcoins.sort((a, b) => {
|
|
|
|
return b.denom_value - a.denom_value;
|
|
|
|
});
|
|
|
|
|
|
|
|
const coins = allcoins.reduce(
|
|
|
|
(prev, cur) => {
|
|
|
|
if (cur.remain_value > 0) prev.usable.push(cur);
|
|
|
|
if (cur.remain_value === 0) prev.spent.push(cur);
|
|
|
|
return prev;
|
|
|
|
},
|
|
|
|
{
|
|
|
|
spent: [],
|
|
|
|
usable: [],
|
|
|
|
} as SplitedCoinInfo,
|
|
|
|
);
|
|
|
|
|
|
|
|
return <ShowAllCoins coins={coins} ex={ex} currencies={currencies} />;
|
|
|
|
})}
|
|
|
|
<br />
|
2021-08-13 23:04:05 +02:00
|
|
|
<Diagnostics diagnostics={status} timedOut={timedOut} />
|
2021-11-29 17:33:01 +01:00
|
|
|
{operations && operations.length > 0 && (
|
|
|
|
<Fragment>
|
2022-02-23 19:18:37 +01:00
|
|
|
<p>
|
|
|
|
<Translate>Pending operations</Translate>
|
|
|
|
</p>
|
2021-11-29 17:33:01 +01:00
|
|
|
<dl>
|
|
|
|
{operations.reverse().map((o) => {
|
|
|
|
return (
|
|
|
|
<NotifyUpdateFadeOut key={hashObjectId(o)}>
|
|
|
|
<dt>{o.type}</dt>
|
|
|
|
<dd>
|
|
|
|
<pre>{JSON.stringify(o, undefined, 2)}</pre>
|
|
|
|
</dd>
|
|
|
|
</NotifyUpdateFadeOut>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</dl>
|
|
|
|
</Fragment>
|
|
|
|
)}
|
2021-06-16 23:21:03 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-02-22 15:01:47 +01:00
|
|
|
function ShowAllCoins({
|
|
|
|
ex,
|
|
|
|
coins,
|
|
|
|
currencies,
|
|
|
|
}: {
|
|
|
|
ex: string;
|
|
|
|
coins: SplitedCoinInfo;
|
|
|
|
currencies: { [ex: string]: string };
|
|
|
|
}) {
|
|
|
|
const [collapsedSpent, setCollapsedSpent] = useState(true);
|
|
|
|
const [collapsedUnspent, setCollapsedUnspent] = useState(false);
|
|
|
|
const total = coins.usable.reduce((prev, cur) => prev + cur.denom_value, 0);
|
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<p>
|
|
|
|
<b>{ex}</b>: {total} {currencies[ex]}
|
|
|
|
</p>
|
|
|
|
<p>
|
2022-02-23 19:18:37 +01:00
|
|
|
<b>
|
|
|
|
<Translate>usable coins</Translate>
|
|
|
|
</b>
|
2022-02-22 15:01:47 +01:00
|
|
|
</p>
|
|
|
|
{collapsedUnspent ? (
|
|
|
|
<div onClick={() => setCollapsedUnspent(false)}>click to show</div>
|
|
|
|
) : (
|
|
|
|
<table onClick={() => setCollapsedUnspent(true)}>
|
|
|
|
<tr>
|
2022-02-23 19:18:37 +01:00
|
|
|
<td>
|
|
|
|
<Translate>id</Translate>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Translate>denom</Translate>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Translate>value</Translate>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Translate>status</Translate>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Translate>from refresh?</Translate>
|
|
|
|
</td>
|
2022-02-22 15:01:47 +01:00
|
|
|
</tr>
|
|
|
|
{coins.usable.map((c) => {
|
|
|
|
return (
|
|
|
|
<tr>
|
|
|
|
<td>{c.id.substring(0, 5)}</td>
|
|
|
|
<td>{c.denom_value}</td>
|
|
|
|
<td>{c.remain_value}</td>
|
|
|
|
<td>{c.status}</td>
|
|
|
|
<td>{c.from_refresh ? "true" : "false"}</td>
|
|
|
|
</tr>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</table>
|
|
|
|
)}
|
2022-02-23 19:18:37 +01:00
|
|
|
<p>
|
|
|
|
<Translate>spent coins</Translate>
|
|
|
|
</p>
|
2022-02-22 15:01:47 +01:00
|
|
|
{collapsedSpent ? (
|
2022-02-23 19:18:37 +01:00
|
|
|
<div onClick={() => setCollapsedSpent(false)}>
|
|
|
|
<Translate>click to show</Translate>
|
|
|
|
</div>
|
2022-02-22 15:01:47 +01:00
|
|
|
) : (
|
|
|
|
<table onClick={() => setCollapsedSpent(true)}>
|
|
|
|
<tr>
|
2022-02-23 19:18:37 +01:00
|
|
|
<td>
|
|
|
|
<Translate>id</Translate>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Translate>denom</Translate>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Translate>value</Translate>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Translate>status</Translate>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Translate>from refresh?</Translate>
|
|
|
|
</td>
|
2022-02-22 15:01:47 +01:00
|
|
|
</tr>
|
|
|
|
{coins.spent.map((c) => {
|
|
|
|
return (
|
|
|
|
<tr>
|
|
|
|
<td>{c.id.substring(0, 5)}</td>
|
|
|
|
<td>{c.denom_value}</td>
|
|
|
|
<td>{c.remain_value}</td>
|
|
|
|
<td>{c.status}</td>
|
|
|
|
<td>{c.from_refresh ? "true" : "false"}</td>
|
|
|
|
</tr>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</table>
|
|
|
|
)}
|
|
|
|
</Fragment>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-12-23 19:17:36 +01:00
|
|
|
function toBase64(str: string): string {
|
|
|
|
return btoa(
|
|
|
|
encodeURIComponent(str).replace(/%([0-9A-F]{2})/g, function (match, p1) {
|
|
|
|
return String.fromCharCode(parseInt(p1, 16));
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-06-16 23:21:03 +02:00
|
|
|
export function reload(): void {
|
|
|
|
try {
|
2021-11-16 17:59:53 +01:00
|
|
|
// eslint-disable-next-line no-undef
|
2021-06-16 23:21:03 +02:00
|
|
|
chrome.runtime.reload();
|
|
|
|
window.close();
|
|
|
|
} catch (e) {
|
|
|
|
// Functionality missing in firefox, ignore!
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-13 05:33:24 +01:00
|
|
|
function runIntegrationTest() {}
|
|
|
|
|
2021-06-16 23:21:03 +02:00
|
|
|
export async function confirmReset(): Promise<void> {
|
|
|
|
if (
|
|
|
|
confirm(
|
2022-02-23 19:18:37 +01:00
|
|
|
i18n.str`Do you want to IRREVOCABLY DESTROY everything inside your wallet and LOSE ALL YOUR COINS?`,
|
2021-06-16 23:21:03 +02:00
|
|
|
)
|
|
|
|
) {
|
|
|
|
await wxApi.resetDb();
|
|
|
|
window.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function openExtensionPage(page: string) {
|
|
|
|
return () => {
|
2021-11-16 17:59:53 +01:00
|
|
|
// eslint-disable-next-line no-undef
|
2021-06-16 23:21:03 +02:00
|
|
|
chrome.tabs.create({
|
2021-11-16 17:59:53 +01:00
|
|
|
// eslint-disable-next-line no-undef
|
2022-01-16 21:54:48 +01:00
|
|
|
url: chrome.runtime.getURL(page),
|
2021-06-16 23:21:03 +02:00
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|