2022-01-12 00:50:11 +00:00
|
|
|
// Copyright 2021-2022 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import { isRecord } from '../../util/isRecord';
|
|
|
|
import { HTTPError } from '../../textsecure/Errors';
|
2022-04-25 23:05:23 +00:00
|
|
|
import { parseRetryAfterWithDefault } from '../../util/parseRetryAfter';
|
2022-01-12 00:50:11 +00:00
|
|
|
|
|
|
|
export function findRetryAfterTimeFromError(err: unknown): number {
|
|
|
|
let rawValue: unknown;
|
|
|
|
|
|
|
|
if (isRecord(err)) {
|
|
|
|
if (isRecord(err.responseHeaders)) {
|
|
|
|
rawValue = err.responseHeaders['retry-after'];
|
|
|
|
} else if (err.httpError instanceof HTTPError) {
|
|
|
|
rawValue = err.httpError.responseHeaders?.['retry-after'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-25 23:05:23 +00:00
|
|
|
return parseRetryAfterWithDefault(rawValue);
|
2022-01-12 00:50:11 +00:00
|
|
|
}
|