2020-08-12 09:11:00 +02:00
|
|
|
/*
|
|
|
|
This file is part of GNU Taler
|
|
|
|
(C) 2020 Taler Systems S.A.
|
2020-08-03 09:30:48 +02:00
|
|
|
|
2020-08-12 09:11:00 +02:00
|
|
|
GNU 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.
|
|
|
|
|
|
|
|
GNU 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
|
|
|
|
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Imports.
|
|
|
|
*/
|
|
|
|
import {
|
|
|
|
OperationFailedError,
|
|
|
|
Logger,
|
|
|
|
HttpRequestLibrary,
|
|
|
|
HttpRequestOptions,
|
|
|
|
HttpResponse,
|
|
|
|
Headers,
|
2021-01-06 18:09:59 +01:00
|
|
|
bytesToString,
|
2020-08-12 09:11:00 +02:00
|
|
|
} from "taler-wallet-core";
|
2020-08-26 18:42:32 +02:00
|
|
|
import { TalerErrorCode } from "taler-wallet-core";
|
2020-08-03 09:30:48 +02:00
|
|
|
|
|
|
|
const logger = new Logger("browserHttpLib");
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An implementation of the [[HttpRequestLibrary]] using the
|
|
|
|
* browser's XMLHttpRequest.
|
|
|
|
*/
|
2020-08-12 09:11:00 +02:00
|
|
|
export class BrowserHttpLib implements HttpRequestLibrary {
|
2020-12-02 14:55:04 +01:00
|
|
|
fetch(url: string, options?: HttpRequestOptions): Promise<HttpResponse> {
|
|
|
|
const method = options?.method ?? "GET";
|
|
|
|
let requestBody = options?.body;
|
2020-08-12 09:11:00 +02:00
|
|
|
return new Promise<HttpResponse>((resolve, reject) => {
|
2020-08-03 09:30:48 +02:00
|
|
|
const myRequest = new XMLHttpRequest();
|
|
|
|
myRequest.open(method, url);
|
|
|
|
if (options?.headers) {
|
|
|
|
for (const headerName in options.headers) {
|
|
|
|
myRequest.setRequestHeader(headerName, options.headers[headerName]);
|
|
|
|
}
|
|
|
|
}
|
2020-12-02 14:55:04 +01:00
|
|
|
myRequest.responseType = "arraybuffer";
|
2020-08-03 09:30:48 +02:00
|
|
|
if (requestBody) {
|
|
|
|
myRequest.send(requestBody);
|
|
|
|
} else {
|
|
|
|
myRequest.send();
|
|
|
|
}
|
|
|
|
|
|
|
|
myRequest.onerror = (e) => {
|
|
|
|
logger.error("http request error");
|
|
|
|
reject(
|
|
|
|
OperationFailedError.fromCode(
|
|
|
|
TalerErrorCode.WALLET_NETWORK_ERROR,
|
|
|
|
"Could not make request",
|
|
|
|
{
|
|
|
|
requestUrl: url,
|
|
|
|
},
|
|
|
|
),
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
myRequest.addEventListener("readystatechange", (e) => {
|
|
|
|
if (myRequest.readyState === XMLHttpRequest.DONE) {
|
|
|
|
if (myRequest.status === 0) {
|
|
|
|
const exc = OperationFailedError.fromCode(
|
|
|
|
TalerErrorCode.WALLET_NETWORK_ERROR,
|
|
|
|
"HTTP request failed (status 0, maybe URI scheme was wrong?)",
|
|
|
|
{
|
|
|
|
requestUrl: url,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
reject(exc);
|
|
|
|
return;
|
|
|
|
}
|
2021-01-06 18:09:59 +01:00
|
|
|
const makeText = async (): Promise<string> => {
|
|
|
|
const td = new TextDecoder();
|
|
|
|
return td.decode(myRequest.response);
|
|
|
|
};
|
2020-08-03 09:30:48 +02:00
|
|
|
const makeJson = async (): Promise<any> => {
|
|
|
|
let responseJson;
|
|
|
|
try {
|
2021-01-06 18:09:59 +01:00
|
|
|
const td = new TextDecoder();
|
|
|
|
const responseString = td.decode(myRequest.response);
|
|
|
|
responseJson = JSON.parse(responseString);
|
2020-08-03 09:30:48 +02:00
|
|
|
} catch (e) {
|
|
|
|
throw OperationFailedError.fromCode(
|
|
|
|
TalerErrorCode.WALLET_RECEIVED_MALFORMED_RESPONSE,
|
|
|
|
"Invalid JSON from HTTP response",
|
|
|
|
{
|
|
|
|
requestUrl: url,
|
|
|
|
httpStatusCode: myRequest.status,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (responseJson === null || typeof responseJson !== "object") {
|
|
|
|
throw OperationFailedError.fromCode(
|
|
|
|
TalerErrorCode.WALLET_RECEIVED_MALFORMED_RESPONSE,
|
|
|
|
"Invalid JSON from HTTP response",
|
|
|
|
{
|
|
|
|
requestUrl: url,
|
|
|
|
httpStatusCode: myRequest.status,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return responseJson;
|
|
|
|
};
|
|
|
|
|
|
|
|
const headers = myRequest.getAllResponseHeaders();
|
|
|
|
const arr = headers.trim().split(/[\r\n]+/);
|
|
|
|
|
|
|
|
// Create a map of header names to values
|
2020-08-12 09:11:00 +02:00
|
|
|
const headerMap: Headers = new Headers();
|
2020-08-03 09:30:48 +02:00
|
|
|
arr.forEach(function (line) {
|
|
|
|
const parts = line.split(": ");
|
|
|
|
const headerName = parts.shift();
|
|
|
|
if (!headerName) {
|
|
|
|
logger.warn("skipping invalid header");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const value = parts.join(": ");
|
|
|
|
headerMap.set(headerName, value);
|
|
|
|
});
|
2020-08-12 09:11:00 +02:00
|
|
|
const resp: HttpResponse = {
|
2020-08-03 09:30:48 +02:00
|
|
|
requestUrl: url,
|
|
|
|
status: myRequest.status,
|
|
|
|
headers: headerMap,
|
2020-08-05 21:00:36 +02:00
|
|
|
requestMethod: method,
|
2020-08-03 09:30:48 +02:00
|
|
|
json: makeJson,
|
2021-01-06 18:09:59 +01:00
|
|
|
text: makeText,
|
2020-12-02 14:55:04 +01:00
|
|
|
bytes: async () => myRequest.response,
|
2020-08-03 09:30:48 +02:00
|
|
|
};
|
|
|
|
resolve(resp);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-08-12 09:11:00 +02:00
|
|
|
get(url: string, opt?: HttpRequestOptions): Promise<HttpResponse> {
|
2020-12-02 14:55:04 +01:00
|
|
|
return this.fetch(url, {
|
|
|
|
method: "GET",
|
|
|
|
...opt,
|
|
|
|
});
|
2020-08-03 09:30:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
postJson(
|
|
|
|
url: string,
|
2020-12-02 14:55:04 +01:00
|
|
|
body: any,
|
2020-08-12 09:11:00 +02:00
|
|
|
opt?: HttpRequestOptions,
|
|
|
|
): Promise<HttpResponse> {
|
2020-12-02 14:55:04 +01:00
|
|
|
return this.fetch(url, {
|
|
|
|
method: "POST",
|
2021-01-06 18:09:59 +01:00
|
|
|
body: JSON.stringify(body),
|
2020-12-02 14:55:04 +01:00
|
|
|
...opt,
|
|
|
|
});
|
2020-08-03 09:30:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
stop(): void {
|
|
|
|
// Nothing to do
|
|
|
|
}
|
2020-08-12 09:11:00 +02:00
|
|
|
}
|