All checks were successful
check / check (push) Successful in 4s
`CONNECT_CODES` drives `isSafeToReplay`, which is the only thing standing between a transport failure and a replayed `POST /users/two-factor/verify`. It included `EHOSTUNREACH`, `ENETUNREACH` and `ENETDOWN` on the stated grounds that those errnos can only be reported before any request byte was written. That is not true on Linux: an ICMP destination-unreachable delivered on an already-established connection sets the socket error and the next read or write returns `EHOSTUNREACH` or `ENETUNREACH`, and a local interface going down after the request was fully written surfaces as `ENETDOWN` the same way. In each case the server may already have received and acted on the request -- exactly the ambiguity the rule exists to exclude, on the paths that consume a second-factor attempt or register a thumbnail. The three are dropped from `CONNECT_CODES` and stay in `TRANSPORT_CODES`, so they remain retryable for the idempotent calls; only replay eligibility narrows. What is left -- `ENOTFOUND`, `EAI_AGAIN`, `ECONNREFUSED` -- means no TCP connection to the server ever existed, so no request byte can have been transmitted. The justification is corrected everywhere it was stated: the comment on `CONNECT_CODES`, the one on `isSafeToReplay`, the `postJSON` call site, the README's idempotency section and the `client.test.ts` docblock. All of them now describe what the narrowed set actually establishes rather than claiming a proof it did not support. The narrowing is enforced by the suite rather than asserted in a comment: the three errnos join `ECONNRESET`/`EPIPE`/`ETIMEDOUT` in the `isSafeToReplay`-returns-false test, with companion `isRetryable` assertions so a future edit cannot make them non-retryable by accident. Putting the three back into `CONNECT_CODES` turns that test red (1 failure, verified).
368 lines
14 KiB
TypeScript
368 lines
14 KiB
TypeScript
import { ApiError } from "../errors.js";
|
|
import {
|
|
isSafeToReplay,
|
|
resolveRetryOptions,
|
|
withRetry,
|
|
type ResolvedRetryOptions,
|
|
type RetryOptions,
|
|
} from "../retry.js";
|
|
|
|
// `ApiError` is defined in `src/errors.ts` so that the retry classifier can
|
|
// recognise it without importing this module, which imports the classifier.
|
|
// It is re-exported here because this is where callers have always imported it
|
|
// from, and it must remain one class: a second copy would make `instanceof`
|
|
// fail in the classifier and every 5xx would look permanent.
|
|
export { ApiError };
|
|
|
|
const DEFAULT_API_ORIGIN = "https://api.ente.io";
|
|
const DEFAULT_FILES_ORIGIN = "https://files.ente.io";
|
|
const DEFAULT_THUMBS_ORIGIN = "https://thumbnails.ente.io";
|
|
const CLIENT_PACKAGE = "berlin.sneak.quak";
|
|
|
|
// Two deadlines rather than one, because a single number cannot serve both
|
|
// jobs. Thirty seconds is generous for a JSON call and short enough that a
|
|
// hung API connection cannot stall a backup for long. A file body is a
|
|
// different shape of problem: the deadline has to cover the whole transfer,
|
|
// which for a large video on a slow link is minutes, so a value sane for JSON
|
|
// would cancel legitimate downloads.
|
|
export const DEFAULT_REQUEST_TIMEOUT_MS = 30_000;
|
|
export const DEFAULT_DOWNLOAD_TIMEOUT_MS = 600_000;
|
|
|
|
export interface ApiClientOptions {
|
|
apiOrigin?: string;
|
|
filesOrigin?: string;
|
|
thumbsOrigin?: string;
|
|
authToken?: string;
|
|
fetch?: typeof globalThis.fetch;
|
|
userAgent?: string;
|
|
retry?: RetryOptions;
|
|
requestTimeoutMs?: number;
|
|
downloadTimeoutMs?: number;
|
|
}
|
|
|
|
export interface StreamOptions {
|
|
// Opt out of this client's own retry. Exactly one caller wants that: the
|
|
// download layer, which retries the request, the stream consumption and
|
|
// the decryption as one unit. Leaving both layers enabled would multiply
|
|
// the budgets — four attempts each becoming sixteen requests per file.
|
|
retry?: boolean;
|
|
}
|
|
|
|
// Enforce a deadline over a response body, not merely over its headers.
|
|
//
|
|
// `getFileStream` returns as soon as headers arrive; the bytes are pulled
|
|
// later, in the download layer. Whether the signal passed to `fetch` also
|
|
// tears down the body afterwards is up to the fetch implementation, so this
|
|
// wrapper makes it a property of quak instead: every read races the signal,
|
|
// and an abort errors the stream with the abort reason — which the retry
|
|
// classifier recognises.
|
|
const deadlineStream = (
|
|
body: ReadableStream<Uint8Array>,
|
|
signal: AbortSignal,
|
|
): ReadableStream<Uint8Array> => {
|
|
const reader = body.getReader();
|
|
let rejectOnAbort: (reason: unknown) => void = () => undefined;
|
|
const aborted = new Promise<never>((_resolve, reject) => {
|
|
rejectOnAbort = reject;
|
|
});
|
|
// The abort may fire when nothing is awaiting `aborted` — after the body
|
|
// has been read in full, say. Without this, that rejection would surface
|
|
// as an unhandled rejection and take the process down.
|
|
void aborted.catch(() => undefined);
|
|
|
|
const onAbort = (): void => rejectOnAbort(signal.reason);
|
|
if (signal.aborted) onAbort();
|
|
else signal.addEventListener("abort", onAbort, { once: true });
|
|
const release = (): void => signal.removeEventListener("abort", onAbort);
|
|
|
|
return new ReadableStream<Uint8Array>({
|
|
async pull(controller) {
|
|
try {
|
|
const next = await Promise.race([reader.read(), aborted]);
|
|
if (next.done) {
|
|
release();
|
|
controller.close();
|
|
return;
|
|
}
|
|
controller.enqueue(next.value);
|
|
} catch (err) {
|
|
release();
|
|
await reader.cancel(err).catch(() => undefined);
|
|
throw err;
|
|
}
|
|
},
|
|
async cancel(reason) {
|
|
release();
|
|
await reader.cancel(reason);
|
|
},
|
|
});
|
|
};
|
|
|
|
export class ApiClient {
|
|
private readonly apiOrigin: string;
|
|
private readonly isCustomOrigin: boolean;
|
|
private readonly filesOrigin: string;
|
|
private readonly thumbsOrigin: string;
|
|
private readonly _fetch: typeof globalThis.fetch;
|
|
private readonly retry: ResolvedRetryOptions;
|
|
private readonly requestTimeoutMs: number;
|
|
private readonly downloadTimeoutMs: number;
|
|
private token: string | undefined;
|
|
|
|
constructor(opts?: ApiClientOptions) {
|
|
this.apiOrigin = (opts?.apiOrigin ?? DEFAULT_API_ORIGIN).replace(
|
|
/\/+$/,
|
|
"",
|
|
);
|
|
this.isCustomOrigin = this.apiOrigin !== DEFAULT_API_ORIGIN;
|
|
this.filesOrigin = (opts?.filesOrigin ?? DEFAULT_FILES_ORIGIN).replace(
|
|
/\/+$/,
|
|
"",
|
|
);
|
|
this.thumbsOrigin = (
|
|
opts?.thumbsOrigin ?? DEFAULT_THUMBS_ORIGIN
|
|
).replace(/\/+$/, "");
|
|
this._fetch = opts?.fetch ?? globalThis.fetch;
|
|
this.retry = resolveRetryOptions(opts?.retry);
|
|
this.requestTimeoutMs =
|
|
opts?.requestTimeoutMs ?? DEFAULT_REQUEST_TIMEOUT_MS;
|
|
this.downloadTimeoutMs =
|
|
opts?.downloadTimeoutMs ?? DEFAULT_DOWNLOAD_TIMEOUT_MS;
|
|
this.token = opts?.authToken;
|
|
}
|
|
|
|
setAuthToken(token: string): void {
|
|
this.token = token;
|
|
}
|
|
|
|
clearAuthToken(): void {
|
|
this.token = undefined;
|
|
}
|
|
|
|
// The policy this client was configured with, so that a caller wrapping a
|
|
// whole operation in its own `withRetry` — the download layer — runs under
|
|
// the same settings rather than under the library defaults.
|
|
getRetryOptions(): ResolvedRetryOptions {
|
|
return this.retry;
|
|
}
|
|
|
|
private headers(extra?: Record<string, string>): Record<string, string> {
|
|
const h: Record<string, string> = {
|
|
"X-Client-Package": CLIENT_PACKAGE,
|
|
...extra,
|
|
};
|
|
if (this.token) {
|
|
h["X-Auth-Token"] = this.token;
|
|
}
|
|
return h;
|
|
}
|
|
|
|
private async throwIfError(resp: Response): Promise<void> {
|
|
if (resp.ok) return;
|
|
const requestID = resp.headers.get("x-request-id") ?? undefined;
|
|
let body: unknown;
|
|
let code: string | undefined;
|
|
let message = `HTTP ${resp.status}`;
|
|
try {
|
|
const ct = resp.headers.get("content-type") ?? "";
|
|
if (ct.includes("application/json")) {
|
|
body = await resp.json();
|
|
if (
|
|
body &&
|
|
typeof body === "object" &&
|
|
"code" in body &&
|
|
typeof (body as Record<string, unknown>).code === "string"
|
|
) {
|
|
code = (body as Record<string, string>).code;
|
|
}
|
|
if (
|
|
body &&
|
|
typeof body === "object" &&
|
|
"message" in body &&
|
|
typeof (body as Record<string, unknown>).message ===
|
|
"string"
|
|
) {
|
|
message = (body as Record<string, string>).message!;
|
|
}
|
|
} else {
|
|
body = await resp.text();
|
|
}
|
|
} catch {
|
|
// body parsing failed; proceed with what we have
|
|
}
|
|
throw new ApiError(message, resp.status, { code, requestID, body });
|
|
}
|
|
|
|
async getJSON<T>(
|
|
path: string,
|
|
query?: Record<string, string | number | undefined>,
|
|
): Promise<T> {
|
|
const url = new URL(path, this.apiOrigin + "/");
|
|
// new URL with a base resolves relative paths; ensure we keep the
|
|
// origin from apiOrigin even when path starts with /
|
|
url.protocol = new URL(this.apiOrigin).protocol;
|
|
url.host = new URL(this.apiOrigin).host;
|
|
url.pathname = path;
|
|
if (query) {
|
|
for (const [k, v] of Object.entries(query)) {
|
|
if (v !== undefined) {
|
|
url.searchParams.set(k, String(v));
|
|
}
|
|
}
|
|
}
|
|
// A GET changes nothing, so it is retried under the full policy.
|
|
return withRetry(async () => {
|
|
const resp = await this._fetch(url.href, {
|
|
method: "GET",
|
|
headers: this.headers(),
|
|
signal: AbortSignal.timeout(this.requestTimeoutMs),
|
|
});
|
|
await this.throwIfError(resp);
|
|
return (await resp.json()) as T;
|
|
}, this.retry);
|
|
}
|
|
|
|
async postJSON<T>(path: string, body: unknown): Promise<T> {
|
|
const url = `${this.apiOrigin}${path}`;
|
|
// Idempotency: this reaches `/users/srp/create-session`,
|
|
// `/users/two-factor/verify` and `/users/ott`, all of which change
|
|
// server state — verifying a second factor consumes one of a small
|
|
// number of attempts. So a POST is replayed only on a failure that
|
|
// establishes no TCP connection to the server ever existed: DNS
|
|
// produced no address, or the peer refused the connection. A 5xx, a
|
|
// mid-flight reset, a routing errno (which Linux also delivers on an
|
|
// established socket) and a timeout are all left to the caller,
|
|
// because each of them can occur after the server has already acted.
|
|
return withRetry(
|
|
async () => {
|
|
const resp = await this._fetch(url, {
|
|
method: "POST",
|
|
headers: this.headers({
|
|
"Content-Type": "application/json",
|
|
}),
|
|
body: JSON.stringify(body),
|
|
signal: AbortSignal.timeout(this.requestTimeoutMs),
|
|
});
|
|
await this.throwIfError(resp);
|
|
return (await resp.json()) as T;
|
|
},
|
|
{ ...this.retry, isRetryable: isSafeToReplay },
|
|
);
|
|
}
|
|
|
|
async getFileStream(
|
|
fileID: number,
|
|
opts?: StreamOptions,
|
|
): Promise<ReadableStream<Uint8Array>> {
|
|
const url = this.isCustomOrigin
|
|
? `${this.apiOrigin}/files/download/${fileID}`
|
|
: `${this.filesOrigin}/?fileID=${fileID}`;
|
|
return this.streamRequest(url, opts);
|
|
}
|
|
|
|
async getUploadURL(
|
|
contentLength: number,
|
|
contentMD5: string,
|
|
): Promise<{ objectKey: string; url: string }> {
|
|
return this.postJSON("/files/upload-url", {
|
|
contentLength,
|
|
contentMD5,
|
|
});
|
|
}
|
|
|
|
async putFile(presignedURL: string, data: Uint8Array): Promise<void> {
|
|
// Idempotent despite being a write: a presigned PUT stores one whole
|
|
// object at one key in one request, so replaying it either overwrites
|
|
// the same bytes or lands them for the first time. There is no partial
|
|
// state to protect, hence the full policy rather than the POST rule.
|
|
await withRetry(async () => {
|
|
const resp = await this._fetch(presignedURL, {
|
|
method: "PUT",
|
|
headers: {
|
|
"Content-Type": "application/octet-stream",
|
|
"Content-Length": String(data.length),
|
|
},
|
|
body: data,
|
|
signal: AbortSignal.timeout(this.requestTimeoutMs),
|
|
});
|
|
if (!resp.ok) {
|
|
// An ApiError, not a bare Error: without the status on the
|
|
// error the upload path cannot be classified at all, and a
|
|
// 503 from S3 would be indistinguishable from a bug.
|
|
throw new ApiError(
|
|
`PUT to presigned URL failed: HTTP ${resp.status}`,
|
|
resp.status,
|
|
);
|
|
}
|
|
}, this.retry);
|
|
}
|
|
|
|
async putJSON<T>(path: string, body: unknown): Promise<T> {
|
|
const url = `${this.apiOrigin}${path}`;
|
|
// Same idempotency rule as `postJSON`, for the same reason: this
|
|
// reaches `/files/thumbnail`, which registers an uploaded thumbnail
|
|
// against a file.
|
|
return withRetry(
|
|
async () => {
|
|
const resp = await this._fetch(url, {
|
|
method: "PUT",
|
|
headers: this.headers({
|
|
"Content-Type": "application/json",
|
|
}),
|
|
body: JSON.stringify(body),
|
|
signal: AbortSignal.timeout(this.requestTimeoutMs),
|
|
});
|
|
await this.throwIfError(resp);
|
|
return (await resp.json()) as T;
|
|
},
|
|
{ ...this.retry, isRetryable: isSafeToReplay },
|
|
);
|
|
}
|
|
|
|
async updateThumbnail(
|
|
fileID: number,
|
|
objectKey: string,
|
|
decryptionHeader: string,
|
|
): Promise<void> {
|
|
await this.putJSON("/files/thumbnail", {
|
|
fileID,
|
|
thumbnail: { objectKey, decryptionHeader },
|
|
});
|
|
}
|
|
|
|
async getThumbnailStream(
|
|
fileID: number,
|
|
opts?: StreamOptions,
|
|
): Promise<ReadableStream<Uint8Array>> {
|
|
const url = this.isCustomOrigin
|
|
? `${this.apiOrigin}/files/preview/${fileID}`
|
|
: `${this.thumbsOrigin}/?fileID=${fileID}`;
|
|
return this.streamRequest(url, opts);
|
|
}
|
|
|
|
private async streamRequest(
|
|
url: string,
|
|
opts?: StreamOptions,
|
|
): Promise<ReadableStream<Uint8Array>> {
|
|
const once = async (): Promise<ReadableStream<Uint8Array>> => {
|
|
// A fresh deadline per attempt, so a retry gets the whole budget
|
|
// rather than the remainder of the one that just expired.
|
|
const signal = AbortSignal.timeout(this.downloadTimeoutMs);
|
|
const resp = await this._fetch(url, {
|
|
method: "GET",
|
|
headers: this.headers(),
|
|
signal,
|
|
});
|
|
await this.throwIfError(resp);
|
|
if (!resp.body) {
|
|
// Carries the status, and is not retryable: a response that
|
|
// arrived without a body is malformed, and asking again
|
|
// produces the same malformed response.
|
|
throw new ApiError("response body is null", resp.status);
|
|
}
|
|
return deadlineStream(resp.body, signal);
|
|
};
|
|
return opts?.retry === false ? once() : withRetry(once, this.retry);
|
|
}
|
|
}
|