2016-01-05 01:13:48 +01: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
|
2016-07-07 17:59:29 +02:00
|
|
|
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
2016-01-05 01:13:48 +01:00
|
|
|
*/
|
|
|
|
|
2016-01-05 15:42:46 +01:00
|
|
|
/**
|
|
|
|
* Helpers for doing XMLHttpRequest-s that are based on ES6 promises.
|
2017-05-24 16:14:23 +02:00
|
|
|
* Allows for easy mocking for test cases.
|
2020-12-14 16:45:15 +01:00
|
|
|
*
|
2020-12-02 14:55:04 +01:00
|
|
|
* The API is inspired by the HTML5 fetch API.
|
2016-01-05 15:42:46 +01:00
|
|
|
*/
|
|
|
|
|
2020-07-22 10:52:03 +02:00
|
|
|
/**
|
|
|
|
* Imports
|
|
|
|
*/
|
|
|
|
import { OperationFailedError, makeErrorDetails } from "../operations/errors";
|
2020-09-04 08:34:11 +02:00
|
|
|
import {
|
2021-06-08 20:58:13 +02:00
|
|
|
Logger,
|
2020-09-04 08:34:11 +02:00
|
|
|
Duration,
|
|
|
|
Timestamp,
|
|
|
|
getTimestampNow,
|
|
|
|
timestampAddDuration,
|
|
|
|
timestampMax,
|
2021-03-17 17:56:37 +01:00
|
|
|
TalerErrorDetails,
|
|
|
|
Codec,
|
|
|
|
} from "@gnu-taler/taler-util";
|
|
|
|
import { TalerErrorCode } from "@gnu-taler/taler-util";
|
2020-07-22 10:52:03 +02:00
|
|
|
|
|
|
|
const logger = new Logger("http.ts");
|
|
|
|
|
2017-05-24 16:14:23 +02:00
|
|
|
/**
|
|
|
|
* An HTTP response that is returned by all request methods of this library.
|
|
|
|
*/
|
2016-01-10 20:07:42 +01:00
|
|
|
export interface HttpResponse {
|
2020-07-22 10:52:03 +02:00
|
|
|
requestUrl: string;
|
2020-08-05 21:00:36 +02:00
|
|
|
requestMethod: string;
|
2016-01-05 01:13:48 +01:00
|
|
|
status: number;
|
2019-12-09 19:59:08 +01:00
|
|
|
headers: Headers;
|
2019-12-09 13:29:11 +01:00
|
|
|
json(): Promise<any>;
|
|
|
|
text(): Promise<string>;
|
2020-12-02 14:55:04 +01:00
|
|
|
bytes(): Promise<ArrayBuffer>;
|
2019-12-09 13:29:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface HttpRequestOptions {
|
2020-12-02 14:55:04 +01:00
|
|
|
method?: "POST" | "PUT" | "GET";
|
2019-12-09 13:29:11 +01:00
|
|
|
headers?: { [name: string]: string };
|
2020-09-01 15:37:14 +02:00
|
|
|
timeout?: Duration;
|
2020-12-02 14:55:04 +01:00
|
|
|
body?: string | ArrayBuffer | ArrayBufferView;
|
2016-01-05 01:13:48 +01:00
|
|
|
}
|
|
|
|
|
2019-12-15 19:04:14 +01:00
|
|
|
export enum HttpResponseStatus {
|
|
|
|
Ok = 200,
|
2021-01-07 19:50:53 +01:00
|
|
|
NoContent = 204,
|
2019-12-15 19:04:14 +01:00
|
|
|
Gone = 210,
|
2021-01-07 19:50:53 +01:00
|
|
|
NotModified = 304,
|
2020-12-02 14:55:04 +01:00
|
|
|
PaymentRequired = 402,
|
2021-01-07 19:50:53 +01:00
|
|
|
Conflict = 409,
|
2019-12-15 19:04:14 +01:00
|
|
|
}
|
|
|
|
|
2019-12-09 19:59:08 +01:00
|
|
|
/**
|
|
|
|
* Headers, roughly modeled after the fetch API's headers object.
|
|
|
|
*/
|
|
|
|
export class Headers {
|
|
|
|
private headerMap = new Map<string, string>();
|
|
|
|
|
|
|
|
get(name: string): string | null {
|
|
|
|
const r = this.headerMap.get(name.toLowerCase());
|
|
|
|
if (r) {
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
set(name: string, value: string): void {
|
|
|
|
const normalizedName = name.toLowerCase();
|
|
|
|
const existing = this.headerMap.get(normalizedName);
|
|
|
|
if (existing !== undefined) {
|
|
|
|
this.headerMap.set(normalizedName, existing + "," + value);
|
|
|
|
} else {
|
|
|
|
this.headerMap.set(normalizedName, value);
|
|
|
|
}
|
|
|
|
}
|
2020-12-02 14:55:04 +01:00
|
|
|
|
|
|
|
toJSON(): any {
|
|
|
|
const m: Record<string, string> = {};
|
2020-12-14 16:45:15 +01:00
|
|
|
this.headerMap.forEach((v, k) => (m[k] = v));
|
2020-12-02 14:55:04 +01:00
|
|
|
return m;
|
|
|
|
}
|
2019-12-09 19:59:08 +01:00
|
|
|
}
|
|
|
|
|
2017-05-24 16:14:23 +02:00
|
|
|
/**
|
2020-07-22 10:52:03 +02:00
|
|
|
* Interface for the HTTP request library used by the wallet.
|
|
|
|
*
|
|
|
|
* The request library is bundled into an interface to make mocking and
|
|
|
|
* request tunneling easy.
|
2017-05-24 16:14:23 +02:00
|
|
|
*/
|
2016-11-13 08:16:12 +01:00
|
|
|
export interface HttpRequestLibrary {
|
2020-07-22 10:52:03 +02:00
|
|
|
/**
|
|
|
|
* Make an HTTP GET request.
|
|
|
|
*/
|
2019-12-09 13:29:11 +01:00
|
|
|
get(url: string, opt?: HttpRequestOptions): Promise<HttpResponse>;
|
2020-07-22 10:52:03 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Make an HTTP POST request with a JSON body.
|
|
|
|
*/
|
2019-12-09 13:29:11 +01:00
|
|
|
postJson(
|
|
|
|
url: string,
|
|
|
|
body: any,
|
|
|
|
opt?: HttpRequestOptions,
|
|
|
|
): Promise<HttpResponse>;
|
2020-12-02 14:55:04 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Make an HTTP POST request with a JSON body.
|
|
|
|
*/
|
2020-12-14 16:45:15 +01:00
|
|
|
fetch(url: string, opt?: HttpRequestOptions): Promise<HttpResponse>;
|
2016-11-13 08:16:12 +01:00
|
|
|
}
|
|
|
|
|
2020-07-22 10:52:03 +02:00
|
|
|
type TalerErrorResponse = {
|
|
|
|
code: number;
|
|
|
|
} & unknown;
|
2020-07-20 14:16:49 +02:00
|
|
|
|
2020-07-22 10:52:03 +02:00
|
|
|
type ResponseOrError<T> =
|
|
|
|
| { isError: false; response: T }
|
|
|
|
| { isError: true; talerErrorResponse: TalerErrorResponse };
|
2020-07-20 14:16:49 +02:00
|
|
|
|
2021-03-10 12:00:30 +01:00
|
|
|
export async function readTalerErrorResponse(
|
|
|
|
httpResponse: HttpResponse,
|
|
|
|
): Promise<TalerErrorDetails> {
|
|
|
|
const errJson = await httpResponse.json();
|
|
|
|
const talerErrorCode = errJson.code;
|
|
|
|
if (typeof talerErrorCode !== "number") {
|
|
|
|
throw new OperationFailedError(
|
|
|
|
makeErrorDetails(
|
|
|
|
TalerErrorCode.WALLET_RECEIVED_MALFORMED_RESPONSE,
|
|
|
|
"Error response did not contain error code",
|
|
|
|
{
|
|
|
|
requestUrl: httpResponse.requestUrl,
|
|
|
|
requestMethod: httpResponse.requestMethod,
|
|
|
|
httpStatusCode: httpResponse.status,
|
|
|
|
},
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return errJson;
|
|
|
|
}
|
|
|
|
|
2020-07-22 10:52:03 +02:00
|
|
|
export async function readSuccessResponseJsonOrErrorCode<T>(
|
|
|
|
httpResponse: HttpResponse,
|
|
|
|
codec: Codec<T>,
|
|
|
|
): Promise<ResponseOrError<T>> {
|
|
|
|
if (!(httpResponse.status >= 200 && httpResponse.status < 300)) {
|
|
|
|
return {
|
|
|
|
isError: true,
|
2021-03-10 12:00:30 +01:00
|
|
|
talerErrorResponse: await readTalerErrorResponse(httpResponse),
|
2020-07-22 10:52:03 +02:00
|
|
|
};
|
2020-07-20 14:16:49 +02:00
|
|
|
}
|
2020-07-22 10:52:03 +02:00
|
|
|
const respJson = await httpResponse.json();
|
|
|
|
let parsedResponse: T;
|
2020-07-20 14:16:49 +02:00
|
|
|
try {
|
2020-07-22 10:52:03 +02:00
|
|
|
parsedResponse = codec.decode(respJson);
|
2020-07-20 14:16:49 +02:00
|
|
|
} catch (e) {
|
2020-07-22 10:52:03 +02:00
|
|
|
throw OperationFailedError.fromCode(
|
|
|
|
TalerErrorCode.WALLET_RECEIVED_MALFORMED_RESPONSE,
|
|
|
|
"Response invalid",
|
|
|
|
{
|
|
|
|
requestUrl: httpResponse.requestUrl,
|
|
|
|
httpStatusCode: httpResponse.status,
|
|
|
|
validationError: e.toString(),
|
2020-07-20 14:16:49 +02:00
|
|
|
},
|
2020-07-22 10:52:03 +02:00
|
|
|
);
|
2020-07-20 14:16:49 +02:00
|
|
|
}
|
2020-07-22 10:52:03 +02:00
|
|
|
return {
|
|
|
|
isError: false,
|
|
|
|
response: parsedResponse,
|
|
|
|
};
|
2020-07-20 14:16:49 +02:00
|
|
|
}
|
|
|
|
|
2020-08-19 17:25:38 +02:00
|
|
|
export function getHttpResponseErrorDetails(
|
|
|
|
httpResponse: HttpResponse,
|
|
|
|
): Record<string, unknown> {
|
|
|
|
return {
|
|
|
|
requestUrl: httpResponse.requestUrl,
|
|
|
|
httpStatusCode: httpResponse.status,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-07-22 10:52:03 +02:00
|
|
|
export function throwUnexpectedRequestError(
|
|
|
|
httpResponse: HttpResponse,
|
|
|
|
talerErrorResponse: TalerErrorResponse,
|
|
|
|
): never {
|
|
|
|
throw new OperationFailedError(
|
|
|
|
makeErrorDetails(
|
|
|
|
TalerErrorCode.WALLET_UNEXPECTED_REQUEST_ERROR,
|
|
|
|
"Unexpected error code in response",
|
|
|
|
{
|
|
|
|
requestUrl: httpResponse.requestUrl,
|
|
|
|
httpStatusCode: httpResponse.status,
|
|
|
|
errorResponse: talerErrorResponse,
|
|
|
|
},
|
|
|
|
),
|
|
|
|
);
|
2020-07-20 14:16:49 +02:00
|
|
|
}
|
|
|
|
|
2020-07-22 10:52:03 +02:00
|
|
|
export async function readSuccessResponseJsonOrThrow<T>(
|
|
|
|
httpResponse: HttpResponse,
|
|
|
|
codec: Codec<T>,
|
|
|
|
): Promise<T> {
|
|
|
|
const r = await readSuccessResponseJsonOrErrorCode(httpResponse, codec);
|
|
|
|
if (!r.isError) {
|
|
|
|
return r.response;
|
|
|
|
}
|
|
|
|
throwUnexpectedRequestError(httpResponse, r.talerErrorResponse);
|
|
|
|
}
|
2020-07-20 14:16:49 +02:00
|
|
|
|
2020-07-22 10:52:03 +02:00
|
|
|
export async function readSuccessResponseTextOrErrorCode<T>(
|
|
|
|
httpResponse: HttpResponse,
|
|
|
|
): Promise<ResponseOrError<string>> {
|
|
|
|
if (!(httpResponse.status >= 200 && httpResponse.status < 300)) {
|
|
|
|
const errJson = await httpResponse.json();
|
|
|
|
const talerErrorCode = errJson.code;
|
|
|
|
if (typeof talerErrorCode !== "number") {
|
|
|
|
throw new OperationFailedError(
|
|
|
|
makeErrorDetails(
|
|
|
|
TalerErrorCode.WALLET_RECEIVED_MALFORMED_RESPONSE,
|
|
|
|
"Error response did not contain error code",
|
|
|
|
{
|
2020-08-05 21:00:36 +02:00
|
|
|
httpStatusCode: httpResponse.status,
|
2020-07-22 10:52:03 +02:00
|
|
|
requestUrl: httpResponse.requestUrl,
|
2020-08-05 21:00:36 +02:00
|
|
|
requestMethod: httpResponse.requestMethod,
|
2020-07-22 10:52:03 +02:00
|
|
|
},
|
|
|
|
),
|
|
|
|
);
|
2020-07-20 14:16:49 +02:00
|
|
|
}
|
2020-07-22 10:52:03 +02:00
|
|
|
return {
|
|
|
|
isError: true,
|
|
|
|
talerErrorResponse: errJson,
|
|
|
|
};
|
2020-07-20 14:16:49 +02:00
|
|
|
}
|
2020-07-22 10:52:03 +02:00
|
|
|
const respJson = await httpResponse.text();
|
|
|
|
return {
|
|
|
|
isError: false,
|
|
|
|
response: respJson,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-08-01 10:22:08 +02:00
|
|
|
export async function checkSuccessResponseOrThrow(
|
|
|
|
httpResponse: HttpResponse,
|
|
|
|
): Promise<void> {
|
|
|
|
if (!(httpResponse.status >= 200 && httpResponse.status < 300)) {
|
|
|
|
const errJson = await httpResponse.json();
|
|
|
|
const talerErrorCode = errJson.code;
|
|
|
|
if (typeof talerErrorCode !== "number") {
|
|
|
|
throw new OperationFailedError(
|
|
|
|
makeErrorDetails(
|
|
|
|
TalerErrorCode.WALLET_RECEIVED_MALFORMED_RESPONSE,
|
|
|
|
"Error response did not contain error code",
|
|
|
|
{
|
2020-08-05 21:00:36 +02:00
|
|
|
httpStatusCode: httpResponse.status,
|
2020-08-01 10:22:08 +02:00
|
|
|
requestUrl: httpResponse.requestUrl,
|
2020-08-05 21:00:36 +02:00
|
|
|
requestMethod: httpResponse.requestMethod,
|
2020-08-01 10:22:08 +02:00
|
|
|
},
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
throwUnexpectedRequestError(httpResponse, errJson);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-22 10:52:03 +02:00
|
|
|
export async function readSuccessResponseTextOrThrow<T>(
|
|
|
|
httpResponse: HttpResponse,
|
|
|
|
): Promise<string> {
|
|
|
|
const r = await readSuccessResponseTextOrErrorCode(httpResponse);
|
|
|
|
if (!r.isError) {
|
|
|
|
return r.response;
|
2020-07-20 14:16:49 +02:00
|
|
|
}
|
2020-07-22 10:52:03 +02:00
|
|
|
throwUnexpectedRequestError(httpResponse, r.talerErrorResponse);
|
2020-07-20 14:16:49 +02:00
|
|
|
}
|
2020-09-02 08:53:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the timestamp at which the response's content is considered expired.
|
|
|
|
*/
|
2020-09-02 11:14:36 +02:00
|
|
|
export function getExpiryTimestamp(
|
|
|
|
httpResponse: HttpResponse,
|
|
|
|
opt: { minDuration?: Duration },
|
|
|
|
): Timestamp {
|
2020-09-02 08:53:11 +02:00
|
|
|
const expiryDateMs = new Date(
|
|
|
|
httpResponse.headers.get("expiry") ?? "",
|
|
|
|
).getTime();
|
2020-09-02 11:14:36 +02:00
|
|
|
let t: Timestamp;
|
2020-09-02 08:53:11 +02:00
|
|
|
if (Number.isNaN(expiryDateMs)) {
|
2020-09-02 11:14:36 +02:00
|
|
|
t = getTimestampNow();
|
2020-09-02 08:53:11 +02:00
|
|
|
} else {
|
2020-09-02 11:14:36 +02:00
|
|
|
t = {
|
2020-09-02 08:53:11 +02:00
|
|
|
t_ms: expiryDateMs,
|
2020-09-02 11:14:36 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
if (opt.minDuration) {
|
|
|
|
const t2 = timestampAddDuration(getTimestampNow(), opt.minDuration);
|
|
|
|
return timestampMax(t, t2);
|
2020-09-02 08:53:11 +02:00
|
|
|
}
|
2020-09-02 11:14:36 +02:00
|
|
|
return t;
|
2020-09-02 08:53:11 +02:00
|
|
|
}
|