signal-desktop/ts/jobs/helpers/getHttpErrorCode.ts
2023-01-03 11:55:46 -08:00

29 lines
832 B
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { isRecord } from '../../util/isRecord';
import { parseIntWithFallback } from '../../util/parseIntWithFallback';
/**
* Looks for an HTTP code. First tries the top level error, then looks at its `httpError`
* property.
*/
export function getHttpErrorCode(maybeError: unknown): number {
if (!isRecord(maybeError)) {
return -1;
}
// This might be a textsecure/Errors/HTTPError
const maybeTopLevelCode = parseIntWithFallback(maybeError.code, -1);
if (maybeTopLevelCode !== -1) {
return maybeTopLevelCode;
}
// Various errors in textsecure/Errors have a nested httpError property
const { httpError } = maybeError;
if (!isRecord(httpError)) {
return -1;
}
return parseIntWithFallback(httpError.code, -1);
}