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.
|
2016-01-05 15:42:46 +01:00
|
|
|
*/
|
|
|
|
|
2020-07-22 10:52:03 +02:00
|
|
|
/**
|
|
|
|
* Imports
|
|
|
|
*/
|
|
|
|
import { Codec } from "./codec";
|
|
|
|
import { OperationFailedError, makeErrorDetails } from "../operations/errors";
|
|
|
|
import { TalerErrorCode } from "../TalerErrorCode";
|
|
|
|
import { Logger } from "./logging";
|
|
|
|
|
|
|
|
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>;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface HttpRequestOptions {
|
|
|
|
headers?: { [name: string]: string };
|
2016-01-05 01:13:48 +01:00
|
|
|
}
|
|
|
|
|
2019-12-15 19:04:14 +01:00
|
|
|
export enum HttpResponseStatus {
|
|
|
|
Ok = 200,
|
|
|
|
Gone = 210,
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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>;
|
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
|
|
|
|
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)) {
|
|
|
|
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,
|
2020-08-05 21:00:36 +02:00
|
|
|
requestMethod: httpResponse.requestMethod,
|
|
|
|
httpStatusCode: httpResponse.status,
|
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.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-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
|
|
|
}
|