Compare commits
16
Commits
a92e4929f8
..
next2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
04094a8cfb | ||
|
|
6a7a10f489 | ||
|
|
7740ebfd4d | ||
|
|
ae76eb3f74 | ||
|
|
f52c77f155 | ||
|
|
6757ddea94 | ||
|
|
36642f4448 | ||
|
|
fc396d1ecc | ||
|
|
cb61582ae6 | ||
|
|
cda57eebda | ||
|
|
c24c4dda4f | ||
|
|
4bb75ca323 | ||
|
|
cd05a458dc | ||
|
|
c19943a520 | ||
|
|
390401af2c | ||
|
|
bf3b20df2f |
@@ -31,6 +31,12 @@ RUN script/bootstrap
|
|||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
|
# Unlike the template, the suite runs as the image's non-root `node` user:
|
||||||
|
# root ignores directory permissions, so the tests of a destination that is
|
||||||
|
# not writable would otherwise fail. vitest writes into /app.
|
||||||
|
RUN chown -R node:node /app
|
||||||
|
USER node
|
||||||
|
|
||||||
RUN timeout 90 yarn run vitest run --reporter=dot || \
|
RUN timeout 90 yarn run vitest run --reporter=dot || \
|
||||||
{ echo "--- Rerunning with verbose for details ---"; \
|
{ echo "--- Rerunning with verbose for details ---"; \
|
||||||
timeout 90 yarn run vitest run --reporter=verbose; exit 1; }
|
timeout 90 yarn run vitest run --reporter=verbose; exit 1; }
|
||||||
|
|||||||
@@ -214,11 +214,23 @@ quak/
|
|||||||
auth/ login flow (SRP + email OTP + TOTP), key unwrap
|
auth/ login flow (SRP + email OTP + TOTP), key unwrap
|
||||||
model/ decrypted Collection, File, Metadata types + decrypt fns
|
model/ decrypted Collection, File, Metadata types + decrypt fns
|
||||||
download/ streaming file/thumbnail download + decryption
|
download/ streaming file/thumbnail download + decryption
|
||||||
|
library/ the cache-backed Library: metadata store, read
|
||||||
|
surface, records, content cache, precache, ML data
|
||||||
|
and search, request pools
|
||||||
backup.ts resilient full-account backup with dedup
|
backup.ts resilient full-account backup with dedup
|
||||||
|
metadata-backup.ts
|
||||||
|
backup-metadata: all decrypted metadata as JSON
|
||||||
|
mldata-fetch.ts fetch + decrypt per-file ML data
|
||||||
|
filename.ts safe file names from server metadata
|
||||||
errors.ts error types shared across layers
|
errors.ts error types shared across layers
|
||||||
retry.ts retry classifier + exponential backoff with jitter
|
retry.ts retry classifier + exponential backoff with jitter
|
||||||
thumbnails.ts detect + regenerate missing thumbnails
|
thumbnails.ts detect + regenerate missing thumbnails
|
||||||
client.ts high-level Client class assembled from the above
|
client.ts high-level Client class assembled from the above
|
||||||
|
cli-commands.ts the CLI's commands as functions returning exit codes
|
||||||
|
cli-output.ts how the CLI prints a file's title and time
|
||||||
|
cli-read.ts fresh reads for the CLI's read commands
|
||||||
|
cli-run.ts run a command, print its error, exit with its code
|
||||||
|
cli-session.ts read the saved session file back into a Client
|
||||||
index.ts public library exports
|
index.ts public library exports
|
||||||
bin/
|
bin/
|
||||||
quak.ts CLI entrypoint (commander.js)
|
quak.ts CLI entrypoint (commander.js)
|
||||||
@@ -296,6 +308,7 @@ Endpoints used:
|
|||||||
encrypted token plus key attributes.
|
encrypted token plus key attributes.
|
||||||
- `POST /users/ott` and `POST /users/verify-email`: email OTP fallback path.
|
- `POST /users/ott` and `POST /users/verify-email`: email OTP fallback path.
|
||||||
- `POST /users/two-factor/verify`: TOTP second factor.
|
- `POST /users/two-factor/verify`: TOTP second factor.
|
||||||
|
- `POST /users/logout`: end the calling token's session (`quak logout`).
|
||||||
- `GET /collections/v2?sinceTime=<usec>`: list collections changed since
|
- `GET /collections/v2?sinceTime=<usec>`: list collections changed since
|
||||||
microsecond timestamp; pass 0 for a full enumeration.
|
microsecond timestamp; pass 0 for a full enumeration.
|
||||||
- `GET /collections/v2/diff?collectionID=<id>&sinceTime=<usec>`: list files in a
|
- `GET /collections/v2/diff?collectionID=<id>&sinceTime=<usec>`: list files in a
|
||||||
@@ -410,7 +423,9 @@ whatever else fits their use case. `Client.fromJSON(snapshot)` restores a
|
|||||||
working client from that snapshot without re-authenticating; it checks every
|
working client from that snapshot without re-authenticating; it checks every
|
||||||
field and each key's length first, and throws an error naming the bad field.
|
field and each key's length first, and throws an error naming the bad field.
|
||||||
`client.logout()` clears the token and zeroes the key buffers in place; every
|
`client.logout()` clears the token and zeroes the key buffers in place; every
|
||||||
later call on that client throws.
|
later call on that client throws. It does not contact the server, so the token
|
||||||
|
stays valid there and in any saved snapshot; `await client.logoutOnServer()`
|
||||||
|
first ends the session on the server (`POST /users/logout`).
|
||||||
|
|
||||||
The CLI stores the snapshot at the platform-appropriate data directory via
|
The CLI stores the snapshot at the platform-appropriate data directory via
|
||||||
`env-paths`: `~/Library/Application Support/quak/session.json` on macOS,
|
`env-paths`: `~/Library/Application Support/quak/session.json` on macOS,
|
||||||
@@ -420,13 +435,21 @@ you would treat the password itself. A missing file is reported as "not logged
|
|||||||
in"; a file that exists but is corrupt is reported as such, naming the bad
|
in"; a file that exists but is corrupt is reported as such, naming the bad
|
||||||
field. Both exit with status 1.
|
field. Both exit with status 1.
|
||||||
|
|
||||||
|
`quak logout` ends the session on the server, so the token in `session.json`
|
||||||
|
stops working even in a copy of the file, and then deletes the file. If the
|
||||||
|
server call fails (or the file is corrupt), the file is still deleted, the
|
||||||
|
command says the server session could not be ended, and it exits with status 1.
|
||||||
|
It does not delete the cache: it prints the account's cache directory and says
|
||||||
|
it still holds decrypted data (file keys in `metadata.json`, cached originals
|
||||||
|
and thumbnails), for the user to delete if they want it gone.
|
||||||
|
|
||||||
### CLI surface
|
### CLI surface
|
||||||
|
|
||||||
```
|
```
|
||||||
quak [--cache-dir <path>] <command> global: local metadata/content cache location
|
quak [--cache-dir <path>] <command> global: local metadata/content cache location
|
||||||
quak login interactive or QUAK_EMAIL/QUAK_PASSWORD
|
quak login interactive or QUAK_EMAIL/QUAK_PASSWORD
|
||||||
quak whoami print logged-in account as JSON
|
quak whoami print logged-in account as JSON
|
||||||
quak logout delete saved session
|
quak logout end the session, delete it
|
||||||
quak collections [--json] list all collections
|
quak collections [--json] list all collections
|
||||||
quak files --collection <id> [--json] list files in a collection
|
quak files --collection <id> [--json] list files in a collection
|
||||||
quak get <fileID> [--out path] [--collection] download and decrypt a file
|
quak get <fileID> [--out path] [--collection] download and decrypt a file
|
||||||
@@ -438,10 +461,13 @@ quak helper fix-missing-thumbnails [--file ids] generate + upload missing thumbn
|
|||||||
```
|
```
|
||||||
|
|
||||||
Every command runs on the same cache-backed library. The read commands —
|
Every command runs on the same cache-backed library. The read commands —
|
||||||
`collections`, `files`, `get`, and `get-thumb` — force a fresh server round-trip
|
`collections`, `files`, `get`, `get-thumb`, `backup-metadata`,
|
||||||
before they answer, so they report current account state rather than whatever
|
`helper list-missing-thumbnails` and `helper fix-missing-thumbnails` — force a
|
||||||
the cache last held. `--cache-dir` overrides where the cache lives; without it
|
fresh server round-trip before they answer, so they report current account state
|
||||||
each account gets its own directory under the per-user cache path.
|
rather than whatever the cache last held. If that round-trip fails, the command
|
||||||
|
prints the error on one line and exits 1. `--cache-dir` overrides where the
|
||||||
|
cache lives; without it each account gets its own directory under the per-user
|
||||||
|
cache path.
|
||||||
|
|
||||||
`get` and `get-thumb` resolve the file by ID directly, so `--collection` is
|
`get` and `get-thumb` resolve the file by ID directly, so `--collection` is
|
||||||
accepted for backward compatibility but ignored. `backup-metadata --exif` (alias
|
accepted for backward compatibility but ignored. `backup-metadata --exif` (alias
|
||||||
@@ -449,11 +475,22 @@ accepted for backward compatibility but ignored. `backup-metadata --exif` (alias
|
|||||||
metadata. The listing and backup commands support `--json` for machine-readable
|
metadata. The listing and backup commands support `--json` for machine-readable
|
||||||
output.
|
output.
|
||||||
|
|
||||||
|
`backup-metadata` fetches ML data in requests of up to 200 files. When a request
|
||||||
|
still fails after its retries, the error is logged, each of its files is written
|
||||||
|
with the reason in an `mlDataError` field instead of `mlData`, and the dump goes
|
||||||
|
on. The exit code is non-zero if any ML data request failed.
|
||||||
|
|
||||||
`helper fix-missing-thumbnails` regenerates thumbnails for baseline JPEG images
|
`helper fix-missing-thumbnails` regenerates thumbnails for baseline JPEG images
|
||||||
only, because the bundled decoder (`jpeg-js`) decodes only JPEG. A non-JPEG
|
only, because the bundled decoder (`jpeg-js`) decodes only JPEG. A non-JPEG
|
||||||
image (PNG, HEIC) or a video is reported as `skipped` (unsupported format), kept
|
image (PNG, HEIC) or a video is reported as `skipped` (unsupported format), kept
|
||||||
distinct from a `failed` repair, and does not affect the exit code; a genuine
|
distinct from a `failed` repair, and does not affect the exit code; a genuine
|
||||||
failure still exits non-zero.
|
failure still exits non-zero. The server accepts a new thumbnail only from the
|
||||||
|
file's owner and only when it is no larger than the thumbnail size it records
|
||||||
|
for the file. So a file another account owns, in an album shared with you, is
|
||||||
|
skipped by both thumbnail helpers without being fetched, and the fixer skips a
|
||||||
|
file whose recorded thumbnail size is 0 or unknown. Otherwise the fixer lowers
|
||||||
|
the quality and size of the thumbnail until it fits, and skips the file if even
|
||||||
|
the smallest does not.
|
||||||
|
|
||||||
### Backup layout
|
### Backup layout
|
||||||
|
|
||||||
@@ -468,20 +505,47 @@ failure still exits non-zero.
|
|||||||
<name>/
|
<name>/
|
||||||
<title> -> ../../originals/<fileID>.<ext> (symlink)
|
<title> -> ../../originals/<fileID>.<ext> (symlink)
|
||||||
<name>.json collection metadata + file list
|
<name>.json collection metadata + file list
|
||||||
|
failures.json files that failed and have not yet succeeded
|
||||||
```
|
```
|
||||||
|
|
||||||
Each file is downloaded exactly once regardless of how many collections it
|
`failures.json` records each failed file with the kind of failure, how many
|
||||||
appears in. On subsequent runs, existing originals are skipped. If a download
|
times it has been tried and when it was last tried. A file leaves it once it
|
||||||
fails, the error is logged and the backup continues with the next file. The exit
|
succeeds, or once it is no longer in the library or in the backup's scope. The
|
||||||
code is non-zero if any files failed.
|
library's `lib.backup({ includeThumbnails: true })` also writes
|
||||||
|
`thumbnails/<fileID>.jpg` beside `originals/`; `quak backup` does not.
|
||||||
|
|
||||||
Each original is copied to a temporary file named
|
A collection's directory and JSON are named after the collection, and a symlink
|
||||||
`.quak-backup-<fileID>.<ext>-<pid>-<random>.tmp` in the same directory, synced
|
after the file's title, both with unsafe characters replaced. When two
|
||||||
to disk, and renamed into place, so an original is either complete or absent,
|
collections would get the same name, or two files in one collection the same
|
||||||
even after a power cut. A run that is killed can leave one of these temporary
|
title (ignoring case in both), each of them gets its ID added: two albums named
|
||||||
files behind; the next backup deletes those whose process is no longer running.
|
`Trip` become `Trip (10)/` and `Trip (11)/`, and two files titled `IMG_0001.JPG`
|
||||||
Downloads and the content cache use the same scheme with `.quak-<random>.tmp`
|
become `IMG_0001 (12345).JPG` and `IMG_0001 (12346).JPG`. IDs never change, so a
|
||||||
names. The rename replaces whatever was at the destination rather than writing
|
name stays the same from run to run until such a clash appears or goes away.
|
||||||
|
|
||||||
|
Each run removes the symlinks into `originals/` that no longer belong in their
|
||||||
|
collection's directory, and the directories (and JSON) of collections that were
|
||||||
|
deleted or renamed. Nothing else in `collections/` is touched: a file or a
|
||||||
|
symlink you put there stays, and a directory that still holds one after its
|
||||||
|
symlinks are removed stays too, with its JSON.
|
||||||
|
|
||||||
|
Each file is downloaded exactly once regardless of how many collections it
|
||||||
|
appears in, and written once: straight into `originals/`, with no copy left in
|
||||||
|
the cache. An original the cache already held is copied from there instead. On
|
||||||
|
subsequent runs, existing originals are skipped. If a download fails, the error
|
||||||
|
is logged and the backup continues with the next file. The exit code is non-zero
|
||||||
|
if any files failed. `quak backup` opens its library with the thumbnail and
|
||||||
|
originals precache off, so it fetches only what the backup stores.
|
||||||
|
|
||||||
|
Each original is written to a temporary file in the same directory, synced to
|
||||||
|
disk, and renamed into place, so an original is either complete or absent, even
|
||||||
|
after a power cut. A downloaded original's temporary file is named
|
||||||
|
`.quak-<pid>-<random>.tmp`, one copied from the cache
|
||||||
|
`.quak-backup-<fileID>.<ext>-<pid>-<random>.tmp`. A run that is killed can leave
|
||||||
|
one of these temporary files behind; the next backup deletes those whose process
|
||||||
|
is no longer running. The content cache uses the same scheme, and opening a
|
||||||
|
library deletes the temporary files in the cache whose process is no longer
|
||||||
|
running, so a download another process has in progress in the same cache is left
|
||||||
|
alone. The rename replaces whatever was at the destination rather than writing
|
||||||
through it: a symlink there is replaced, not followed, and the new file has the
|
through it: a symlink there is replaced, not followed, and the new file has the
|
||||||
temporary file's permissions, not those of the file it replaced.
|
temporary file's permissions, not those of the file it replaced.
|
||||||
|
|
||||||
@@ -491,7 +555,12 @@ temporary file's permissions, not those of the file it replaced.
|
|||||||
errors
|
errors
|
||||||
- [x] Update the API reference section below to match the current implementation
|
- [x] Update the API reference section below to match the current implementation
|
||||||
- [x] `make docker` green
|
- [x] `make docker` green
|
||||||
- [ ] Tag `v1.0.0`
|
- [ ] Store live photos in a form a photo viewer can open
|
||||||
|
(https://git.eeqj.de/sneak/quak/issues/107), once sneak has chosen between
|
||||||
|
keeping the ZIP and unpacking it
|
||||||
|
|
||||||
|
Tagging and releases are decided by sneak alone, and happen only when he
|
||||||
|
declares one.
|
||||||
|
|
||||||
Future (desktop client, separate repo):
|
Future (desktop client, separate repo):
|
||||||
|
|
||||||
@@ -511,10 +580,11 @@ test suite is the canonical, executable documentation — `test/library/` and
|
|||||||
### Opening a library
|
### Opening a library
|
||||||
|
|
||||||
`Library.open(options)` loads the on-disk cache, starts the background refresh
|
`Library.open(options)` loads the on-disk cache, starts the background refresh
|
||||||
loop, and resolves to a `Library`. On an empty cache it awaits the first refresh
|
loop, and resolves to a `Library`. On an empty cache it awaits the first
|
||||||
so it never opens onto empty data; on an existing cache it returns immediately
|
refresh, so it opens onto the account's data whenever the server is reachable;
|
||||||
and refreshes in the background, so an unreachable server does not block
|
if that refresh fails, it opens with no data and records the error in
|
||||||
opening.
|
`lib.status()`. On an existing cache it returns immediately and refreshes in the
|
||||||
|
background, so an unreachable server does not block opening.
|
||||||
|
|
||||||
`LibraryOptions`:
|
`LibraryOptions`:
|
||||||
|
|
||||||
@@ -625,12 +695,15 @@ photos newest first). `lib.subscribe({ onChange })` delivers a `LibraryChange`
|
|||||||
default limit 20). quak bundles no text encoder, so `searchByEmbedding` takes
|
default limit 20). quak bundles no text encoder, so `searchByEmbedding` takes
|
||||||
a query vector the caller produced elsewhere.
|
a query vector the caller produced elsewhere.
|
||||||
- `await lib.backup(opts?)` → `BackupResult`. It refreshes, fetches every
|
- `await lib.backup(opts?)` → `BackupResult`. It refreshes, fetches every
|
||||||
in-scope original (and, with `includeThumbnails`, thumbnails) through the
|
in-scope original not already in the backup (and, with `includeThumbnails`,
|
||||||
content cache, and rebuilds the on-disk backup tree with a durable failure
|
thumbnails) through the content cache, and rebuilds the on-disk backup tree
|
||||||
ledger. `BackupOptions`: `downloadDirectory` (falls back to the one `open()`
|
with a durable failure ledger. A fetched original is written straight into the
|
||||||
was given), `includeOriginals` (default `true`), `includeThumbnails` (default
|
backup's `originals/` and not into the cache, which then counts it as present;
|
||||||
`false`), `onlyAlbumNames`, and `onProgress`. See Backup layout above for the
|
one the cache already held is copied from there. `BackupOptions`:
|
||||||
tree it writes.
|
`downloadDirectory` (falls back to the one `open()` was given),
|
||||||
|
`includeOriginals` (default `true`), `includeThumbnails` (default `false`),
|
||||||
|
`onlyAlbumNames`, and `onProgress`. See Backup layout above for the tree it
|
||||||
|
writes.
|
||||||
|
|
||||||
### Request pools
|
### Request pools
|
||||||
|
|
||||||
@@ -654,11 +727,19 @@ Under `cacheDirectory`:
|
|||||||
fetched.json per-file fetch bookkeeping
|
fetched.json per-file fetch bookkeeping
|
||||||
```
|
```
|
||||||
|
|
||||||
|
When `metadata.json` belongs to a different account than the client's,
|
||||||
|
`Library.open` deletes it and `mldata/` and starts from an empty cache. Cached
|
||||||
|
originals and thumbnails are kept; they are reached only through the files the
|
||||||
|
current account's records name.
|
||||||
|
|
||||||
A stored file appears only via an atomic temp-then-rename, so its presence means
|
A stored file appears only via an atomic temp-then-rename, so its presence means
|
||||||
it is complete. The design also calls for a content-hash comparison against
|
it is complete. Every downloaded original (by `quak get`, the cache, or
|
||||||
`FileMetadata.hash` on each fetched original; that check is deferred (issue
|
`backup`) whose metadata records a content hash (`FileMetadata.hash`) is hashed
|
||||||
https://git.eeqj.de/sneak/quak/issues/68) because the exact hash construction
|
as it is written: unkeyed BLAKE2b with a 64-byte output, standard base64. For a
|
||||||
cannot yet be confirmed against the repo's fixtures.
|
live photo, which is stored as a ZIP, the image and the video are hashed
|
||||||
|
separately and joined as `<imageHash>:<videoHash>`. A mismatch stores nothing
|
||||||
|
and fails the download with an error naming the file ID. An original with no
|
||||||
|
recorded hash, from a very old client, is stored unchecked.
|
||||||
|
|
||||||
### Key types by source file
|
### Key types by source file
|
||||||
|
|
||||||
@@ -719,8 +800,10 @@ documents:
|
|||||||
markdown. Use `make fmt` to format. Use `yarn` not `npm`.
|
markdown. Use `make fmt` to format. Use `yarn` not `npm`.
|
||||||
|
|
||||||
- **Testing:** vitest. Tests go in `test/` mirroring the `src/` structure.
|
- **Testing:** vitest. Tests go in `test/` mirroring the `src/` structure.
|
||||||
`make test` must complete in under 20 seconds. Use `mkdtempSync` for temporary
|
`make test` must finish in under 60 seconds (the hard cap) and should finish
|
||||||
directories, never manual timestamp paths.
|
in under 20. The 90-second `timeout` in the `test` phase of the `Dockerfile`
|
||||||
|
is a backstop that catches a hung test, not the time limit. Use `mkdtempSync`
|
||||||
|
for temporary directories, never manual timestamp paths.
|
||||||
|
|
||||||
- **Code style:** `const` for everything, `let` if reassignment is needed, never
|
- **Code style:** `const` for everything, `let` if reassignment is needed, never
|
||||||
`var`. Avoid unnecessary comments. No hand-rolled crypto. The
|
`var`. Avoid unnecessary comments. No hand-rolled crypto. The
|
||||||
|
|||||||
@@ -14,16 +14,126 @@ pre-1.0
|
|||||||
|
|
||||||
# Next Step
|
# Next Step
|
||||||
|
|
||||||
Tag v1.0.0.
|
Store live photos in a form a photo viewer can open
|
||||||
|
(https://git.eeqj.de/sneak/quak/issues/107). This waits on sneak's choice
|
||||||
|
between keeping the ZIP and unpacking it into the image and the video.
|
||||||
|
|
||||||
|
Tagging and releases are decided by sneak alone, and happen only when he
|
||||||
|
declares one.
|
||||||
|
|
||||||
# Completed Steps
|
# Completed Steps
|
||||||
|
|
||||||
|
- 2026-09-23: Settled the package metadata (issue 6). quak is not published, so
|
||||||
|
`package.json` is marked `"private": true` and the `files` field is gone.
|
||||||
|
`engines.node` is `>=22`, the major version `script/bootstrap` and the
|
||||||
|
`Dockerfile` use. An `exports` map makes `.` and `./package.json` the only
|
||||||
|
importable paths; `runMetadataBackup`, the thumbnail helpers and their types
|
||||||
|
stay internal to the CLI.
|
||||||
|
|
||||||
|
- 2026-09-23: Brought the README and this file in line with the tree (issue
|
||||||
|
111). The layout lists `src/library/` and the other source files, the backup
|
||||||
|
layout names `failures.json` and the optional `thumbnails/`, "Opening a
|
||||||
|
library" says what happens when the first refresh fails, the Testing section
|
||||||
|
gives the 60-second hard cap and 20-second target for `make test` and names
|
||||||
|
the 90-second `timeout` in the `Dockerfile` as the backstop for a hung test,
|
||||||
|
and "Tag v1.0.0" is no longer listed as the next step.
|
||||||
|
|
||||||
|
- 2026-09-23: Tested `quak login` and `backup-metadata --exif` (issue 110).
|
||||||
|
`loginCommand` takes its login function and its prompts from `CliContext`, and
|
||||||
|
`bin/quak.ts` passes `Client.login` and the terminal prompts. Tests cover a
|
||||||
|
login from `QUAK_EMAIL` and `QUAK_PASSWORD` with no prompt, the TOTP prompt, a
|
||||||
|
failed login, and the saved session's modes, and show that `--exif` and
|
||||||
|
`--all` each turn on EXIF extraction and that it is off without them.
|
||||||
|
|
||||||
|
- 2026-09-23: `quak backup` writes each original once and no longer fills the
|
||||||
|
cache (issue 106). An original fetched for a backup is written by the download
|
||||||
|
writer straight into the backup's `originals/`, and the content cache records
|
||||||
|
it there instead of keeping its own copy; one the cache already held is still
|
||||||
|
copied. `quak backup` opens its library with the thumbnail and originals
|
||||||
|
precache off.
|
||||||
|
|
||||||
|
- 2026-09-23: `backup-metadata`, `helper list-missing-thumbnails` and
|
||||||
|
`helper fix-missing-thumbnails` refresh before they answer (issue 100). Each
|
||||||
|
awaits `lib.fresh()` before reading, so a file added since the cache was
|
||||||
|
written is included, and a failed refresh prints one line and exits 1 instead
|
||||||
|
of answering from a stale or empty cache. The README lists them among the
|
||||||
|
commands that refresh first.
|
||||||
|
|
||||||
|
- 2026-09-23: `quak backup` waits for the server refresh and fails when it fails
|
||||||
|
(issue 99). `lib.backup()` joins a refresh already running or starts one, as
|
||||||
|
`fresh()` does, and rejects before touching any file when it fails, leaving
|
||||||
|
`failures.json` as it was, so `quak backup` prints the error as one line and
|
||||||
|
exits 1 instead of backing up the previous run's file list, or nothing, and
|
||||||
|
exiting 0.
|
||||||
|
|
||||||
|
- 2026-09-23: CLI errors print a message instead of a stack trace (issue 102).
|
||||||
|
An error a command throws is printed as one `quak: MESSAGE` line on stderr and
|
||||||
|
the CLI exits 1 once output has drained. The wrapper that does this moved from
|
||||||
|
`bin/quak.ts` to `src/cli-run.ts`, and `bin/quak.ts` now awaits
|
||||||
|
`program.parseAsync()`.
|
||||||
|
|
||||||
|
- 2026-09-23: Opening a library no longer deletes another process's download in
|
||||||
|
progress (issue 105). The download writer's temp files are named
|
||||||
|
`.quak-<pid>-<random>.tmp`, and `removeLeftoverTempFiles`, moved from the
|
||||||
|
backup into the download module, deletes a `.quak-*.tmp` file only when the
|
||||||
|
process ID in its name is no longer running. The content cache calls it at
|
||||||
|
`open()` for `originals/` and `thumbnails/`, the backup as before.
|
||||||
|
|
||||||
- 2026-09-23: Re-vendored the lint and test setup from the template (issue 96).
|
- 2026-09-23: Re-vendored the lint and test setup from the template (issue 96).
|
||||||
Linting and testing are the `lint` and `test` phases of the `Dockerfile`;
|
Linting and testing are the `lint` and `test` phases of the `Dockerfile`;
|
||||||
`script/lint` and `script/test` each build one with `--no-cache`, and the last
|
`script/lint` and `script/test` each build one with `--no-cache`, and the last
|
||||||
stage compiles and depends on both, so `script/cibuild` is one build.
|
stage compiles and depends on both, so `script/cibuild` is one build.
|
||||||
`Dockerfile.lint`, `CHECK_EPOCH`, `LINT_EPOCH` and the tests that checked them
|
`Dockerfile.lint`, `CHECK_EPOCH`, `LINT_EPOCH` and the tests that checked them
|
||||||
are gone; `REPO_POLICIES.md` is re-copied.
|
are gone; `REPO_POLICIES.md` is re-copied.
|
||||||
|
|
||||||
|
- 2026-09-23: Stopped `helper fix-missing-thumbnails` retrying files the server
|
||||||
|
always refuses (issue 109). Both thumbnail helpers skip a file another account
|
||||||
|
owns without fetching it. The fixer skips a file whose recorded thumbnail size
|
||||||
|
is 0 or unknown before downloading it, and otherwise tries smaller encodings
|
||||||
|
(720 px quality 50 down to 160 px quality 20) until the encrypted thumbnail is
|
||||||
|
no larger than that size, skipping the file if none fits.
|
||||||
|
|
||||||
|
- 2026-09-23: Tested the live-photo hash check's error paths (issue 117). Tests
|
||||||
|
download a live photo whose ZIP names an unknown compression method, one whose
|
||||||
|
ZIP has no image entry and one with no video entry, and check that nothing is
|
||||||
|
stored and the error names the file ID; the unreadable one is not retried.
|
||||||
|
|
||||||
|
- 2026-09-23: `quak logout` ends the session on the server (issue 108). It calls
|
||||||
|
`POST /users/logout` through the new `Client.logoutOnServer()`, then deletes
|
||||||
|
`session.json` even when that call fails, says so and exits 1. It prints the
|
||||||
|
account's cache directory and says it still holds decrypted data. The default
|
||||||
|
cache path is now `defaultCacheDirectory()` in the library, shared with
|
||||||
|
`Library.open`.
|
||||||
|
|
||||||
|
- 2026-09-23: Fixed the backup's per-collection folders (issue 103). Two files
|
||||||
|
in one collection with the same title, and two collections with the same name,
|
||||||
|
each get their ID added to the name (`IMG_0001 (12345).JPG`, `Trip (10)/`), so
|
||||||
|
none replaces another's symlink or JSON. Each run removes symlinks into
|
||||||
|
`originals/` for files no longer in the collection, and the folders of deleted
|
||||||
|
or renamed collections, leaving anything else in `collections/` alone. The
|
||||||
|
README backup layout states the naming rule.
|
||||||
|
|
||||||
|
- 2026-09-23: Checked downloaded originals against their recorded content hash
|
||||||
|
(issue 68). `downloadFile`, which `quak get`, the content cache and backup all
|
||||||
|
use, hashes the decrypted bytes (unkeyed BLAKE2b-512, standard base64) and
|
||||||
|
stores nothing on a mismatch, failing with an error naming the file ID. A live
|
||||||
|
photo ZIP is unpacked as it streams with `fflate` and its image and video
|
||||||
|
hashed separately as `<imageHash>:<videoHash>`. `decryptFile` reads older
|
||||||
|
clients' `imageHash` and `videoHash` fields for live photos. A file with no
|
||||||
|
recorded hash is stored unchecked.
|
||||||
|
|
||||||
|
- 2026-09-23: Kept one account's cache from mixing with another's (issue 104).
|
||||||
|
When `metadata.json` in the cache directory was written for a different,
|
||||||
|
non-zero user ID than the client's, `Library.open` deletes it and `mldata/`
|
||||||
|
and starts empty, so the first refresh enumerates from 0. This only happens
|
||||||
|
with `--cache-dir` or an explicit `cacheDirectory`; the default path already
|
||||||
|
includes the user ID. A test opens one account's cache as another account.
|
||||||
|
|
||||||
|
- 2026-09-23: `backup-metadata` no longer stops on one failed ML data request
|
||||||
|
(issue 101). Each request of up to 200 files is tried on its own; a failed one
|
||||||
|
is logged, its files are written with the reason in `mlDataError`, and the
|
||||||
|
command exits 1 once the dump is complete. `fetchMLData`, which only this
|
||||||
|
command used, is gone; the command calls `fetchMLDataBatch` per batch.
|
||||||
- 2026-09-23: Single-sourced the version string (issue 5). `package.json` is the
|
- 2026-09-23: Single-sourced the version string (issue 5). `package.json` is the
|
||||||
only place it is written: `src/index.ts` imports it for `VERSION` and
|
only place it is written: `src/index.ts` imports it for `VERSION` and
|
||||||
`bin/quak.ts` passes `VERSION` to commander. tsc copies `package.json` to
|
`bin/quak.ts` passes `VERSION` to commander. tsc copies `package.json` to
|
||||||
|
|||||||
+10
-19
@@ -1,6 +1,7 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
|
|
||||||
import { stdout, stderr } from "node:process";
|
import { stdout, stderr } from "node:process";
|
||||||
|
import { input, password } from "@inquirer/prompts";
|
||||||
import { Command } from "commander";
|
import { Command } from "commander";
|
||||||
import envPaths from "env-paths";
|
import envPaths from "env-paths";
|
||||||
import { init } from "../src/crypto/index.js";
|
import { init } from "../src/crypto/index.js";
|
||||||
@@ -18,7 +19,9 @@ import {
|
|||||||
listMissingThumbnailsCommand,
|
listMissingThumbnailsCommand,
|
||||||
fixMissingThumbnailsCommand,
|
fixMissingThumbnailsCommand,
|
||||||
} from "../src/cli-commands.js";
|
} from "../src/cli-commands.js";
|
||||||
|
import { run as runCommand } from "../src/cli-run.js";
|
||||||
import { loadSession } from "../src/cli-session.js";
|
import { loadSession } from "../src/cli-session.js";
|
||||||
|
import { Client } from "../src/client.js";
|
||||||
import { VERSION } from "../src/index.js";
|
import { VERSION } from "../src/index.js";
|
||||||
|
|
||||||
const paths = envPaths("quak", { suffix: "" });
|
const paths = envPaths("quak", { suffix: "" });
|
||||||
@@ -41,25 +44,13 @@ const context = (): CliContext => ({
|
|||||||
sessionDir: paths.data,
|
sessionDir: paths.data,
|
||||||
cacheDir: program.opts<{ cacheDir?: string }>().cacheDir,
|
cacheDir: program.opts<{ cacheDir?: string }>().cacheDir,
|
||||||
loadSession,
|
loadSession,
|
||||||
|
login: (opts) => Client.login(opts),
|
||||||
|
prompt: (message) => input({ message }),
|
||||||
|
promptSecret: (message) => password({ message, mask: true }),
|
||||||
});
|
});
|
||||||
|
|
||||||
// Run a command and exit with its code once stdout/stderr have drained.
|
const run = (command: Promise<number>): Promise<void> =>
|
||||||
// Exiting before the drain can truncate piped output, and the library can keep
|
runCommand(command, stdout, stderr, (code) => process.exit(code));
|
||||||
// the event loop alive after a command returns, so a plain return could hang.
|
|
||||||
const run = async (command: Promise<number>): Promise<void> => {
|
|
||||||
process.exitCode = await command;
|
|
||||||
const pending = [stdout, stderr].filter((s) => s.writableLength > 0);
|
|
||||||
if (pending.length === 0) {
|
|
||||||
process.exit();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
let remaining = pending.length;
|
|
||||||
for (const s of pending) {
|
|
||||||
s.once("drain", () => {
|
|
||||||
if (--remaining === 0) process.exit();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
program
|
program
|
||||||
.command("login")
|
.command("login")
|
||||||
@@ -73,7 +64,7 @@ program
|
|||||||
|
|
||||||
program
|
program
|
||||||
.command("logout")
|
.command("logout")
|
||||||
.description("Delete the saved session")
|
.description("End the session on the server and delete the saved session")
|
||||||
.action(() => run(logoutCommand(context())));
|
.action(() => run(logoutCommand(context())));
|
||||||
|
|
||||||
program
|
program
|
||||||
@@ -169,4 +160,4 @@ helper
|
|||||||
);
|
);
|
||||||
|
|
||||||
await init();
|
await init();
|
||||||
program.parse();
|
await program.parseAsync();
|
||||||
|
|||||||
+12
-5
@@ -9,17 +9,23 @@
|
|||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git.eeqj.de/sneak/quak.git"
|
"url": "https://git.eeqj.de/sneak/quak.git"
|
||||||
},
|
},
|
||||||
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=22"
|
||||||
|
},
|
||||||
"main": "./dist/src/index.js",
|
"main": "./dist/src/index.js",
|
||||||
"types": "./dist/src/index.d.ts",
|
"types": "./dist/src/index.d.ts",
|
||||||
|
"exports": {
|
||||||
|
".": {
|
||||||
|
"types": "./dist/src/index.d.ts",
|
||||||
|
"import": "./dist/src/index.js"
|
||||||
|
},
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"quak": "./dist/bin/quak.js"
|
"quak": "./dist/bin/quak.js"
|
||||||
},
|
},
|
||||||
"files": [
|
|
||||||
"dist/",
|
|
||||||
"README.md",
|
|
||||||
"LICENSE"
|
|
||||||
],
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "script/build",
|
"build": "script/build",
|
||||||
"quak": "node ./dist/bin/quak.js",
|
"quak": "node ./dist/bin/quak.js",
|
||||||
@@ -42,6 +48,7 @@
|
|||||||
"env-paths": "4.0.0",
|
"env-paths": "4.0.0",
|
||||||
"exif-reader": "2.0.3",
|
"exif-reader": "2.0.3",
|
||||||
"fast-srp-hap": "2.0.4",
|
"fast-srp-hap": "2.0.4",
|
||||||
|
"fflate": "0.8.3",
|
||||||
"jpeg-js": "0.4.4",
|
"jpeg-js": "0.4.4",
|
||||||
"libsodium-wrappers-sumo": "0.8.4"
|
"libsodium-wrappers-sumo": "0.8.4"
|
||||||
}
|
}
|
||||||
|
|||||||
+147
-49
@@ -1,9 +1,11 @@
|
|||||||
// The backup command, rebuilt on the library API (issue #51).
|
// The backup command, rebuilt on the library API (issue #51).
|
||||||
//
|
//
|
||||||
// `lib.backup()` refreshes the library, then, for every file in scope, gets its
|
// `lib.backup()` waits for a completed refresh of the library (a failed one
|
||||||
// original bytes onto disk under `downloadDirectory` and rebuilds the derived
|
// fails the backup before any file is touched), then, for every file in scope,
|
||||||
// views (per-file sidecars, per-collection symlink trees, per-collection JSON)
|
// gets its original bytes onto disk under `downloadDirectory` and rebuilds the
|
||||||
// from the model. The on-disk layout is the historical one, unchanged:
|
// derived views (per-file sidecars, per-collection symlink trees,
|
||||||
|
// per-collection JSON) from the model. The on-disk layout is the historical
|
||||||
|
// one, unchanged:
|
||||||
//
|
//
|
||||||
// <downloadDirectory>/
|
// <downloadDirectory>/
|
||||||
// originals/<fileID>.<ext> the decrypted bytes
|
// originals/<fileID>.<ext> the decrypted bytes
|
||||||
@@ -17,7 +19,9 @@
|
|||||||
// temp-then-rename, so a file that exists is whole and is never re-fetched — an
|
// temp-then-rename, so a file that exists is whole and is never re-fetched — an
|
||||||
// interrupted run resumes by listing the directory. The derived views hold no
|
// interrupted run resumes by listing the directory. The derived views hold no
|
||||||
// unique state, so they are rebuilt every run; that repairs stale sidecars and
|
// unique state, so they are rebuilt every run; that repairs stale sidecars and
|
||||||
// missing or broken symlinks left by an earlier crash.
|
// missing or broken symlinks left by an earlier crash. A rebuild also removes
|
||||||
|
// the symlinks into originals/ that no longer belong to an album, and the
|
||||||
|
// directories of albums that no longer exist.
|
||||||
//
|
//
|
||||||
// Resilience (issue #8): no per-file condition aborts the run. A failed
|
// Resilience (issue #8): no per-file condition aborts the run. A failed
|
||||||
// download or a failed symlink is caught, recorded in `failures.json` with a
|
// download or a failed symlink is caught, recorded in `failures.json` with a
|
||||||
@@ -34,15 +38,16 @@ import {
|
|||||||
readdirSync,
|
readdirSync,
|
||||||
readFileSync,
|
readFileSync,
|
||||||
readlinkSync,
|
readlinkSync,
|
||||||
|
rmdirSync,
|
||||||
rmSync,
|
rmSync,
|
||||||
statSync,
|
statSync,
|
||||||
symlinkSync,
|
symlinkSync,
|
||||||
writeFileSync,
|
writeFileSync,
|
||||||
} from "node:fs";
|
} from "node:fs";
|
||||||
import { copyFile, rename, rm } from "node:fs/promises";
|
import { copyFile, rename, rm } from "node:fs/promises";
|
||||||
import { basename, dirname, join, relative } from "node:path";
|
import { basename, dirname, extname, join, relative } from "node:path";
|
||||||
|
|
||||||
import { fsyncPath } from "./download/index.js";
|
import { fsyncPath, removeLeftoverTempFiles } from "./download/index.js";
|
||||||
import { safeExtension, sanitizeFileName } from "./filename.js";
|
import { safeExtension, sanitizeFileName } from "./filename.js";
|
||||||
import type { Collection, EnteFile } from "./model/types.js";
|
import type { Collection, EnteFile } from "./model/types.js";
|
||||||
|
|
||||||
@@ -92,8 +97,9 @@ export interface BackupLibrary {
|
|||||||
listCollections(): Collection[];
|
listCollections(): Collection[];
|
||||||
listFiles(collectionID: number): EnteFile[];
|
listFiles(collectionID: number): EnteFile[];
|
||||||
// Get an original's bytes onto disk through the content cache/pools,
|
// Get an original's bytes onto disk through the content cache/pools,
|
||||||
// returning where they landed (the cache, or a prior backup).
|
// returning where they landed: `destination` when they were fetched now,
|
||||||
original(fileID: number): Promise<{ path: string }>;
|
// otherwise wherever they already were (the cache, or a prior backup).
|
||||||
|
original(fileID: number, destination: string): Promise<{ path: string }>;
|
||||||
thumbnail(fileID: number): Promise<{ path: string }>;
|
thumbnail(fileID: number): Promise<{ path: string }>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -181,36 +187,6 @@ const copyAtomic = async (src: string, dest: string): Promise<void> => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// A process-ID check: signal 0 delivers nothing and only reports whether the
|
|
||||||
// process exists. EPERM means it exists but belongs to another user.
|
|
||||||
const isRunning = (pid: number): boolean => {
|
|
||||||
try {
|
|
||||||
process.kill(pid, 0);
|
|
||||||
return true;
|
|
||||||
} catch (err) {
|
|
||||||
return (err as NodeJS.ErrnoException).code === "EPERM";
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// Delete the temp files `copyAtomic` leaves behind when a backup is killed
|
|
||||||
// before its rename. Only files whose process is no longer running are
|
|
||||||
// removed, so a backup running at the same time keeps its own. A reused
|
|
||||||
// process ID can only keep a leftover a while longer, never remove a live one.
|
|
||||||
const removeLeftoverTempFiles = (dir: string): void => {
|
|
||||||
let names: string[];
|
|
||||||
try {
|
|
||||||
names = readdirSync(dir);
|
|
||||||
} catch {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
for (const name of names) {
|
|
||||||
const match = /^\.quak-backup-.*-(\d+)-[0-9a-z]*\.tmp$/.exec(name);
|
|
||||||
if (match && !isRunning(Number(match[1]))) {
|
|
||||||
rmSync(join(dir, name), { force: true });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// Ensure `linkPath` is a symlink to `target`, rebuilding a missing, wrong, or
|
// Ensure `linkPath` is a symlink to `target`, rebuilding a missing, wrong, or
|
||||||
// non-symlink entry. Throws on failure (a directory in the way, no permission)
|
// non-symlink entry. Throws on failure (a directory in the way, no permission)
|
||||||
// so the caller records it and moves on rather than aborting the run.
|
// so the caller records it and moves on rather than aborting the run.
|
||||||
@@ -227,6 +203,93 @@ const rebuildSymlink = (linkPath: string, target: string): void => {
|
|||||||
symlinkSync(target, linkPath);
|
symlinkSync(target, linkPath);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// The on-disk names for the entries of one directory, keyed by ID. Each name
|
||||||
|
// is used as is unless another entry would get the same name, ignoring case
|
||||||
|
// (two names that differ only in case are one entry on a case-insensitive
|
||||||
|
// file system); then every entry sharing it gets ` (<id>)`, before the
|
||||||
|
// extension when `beforeExtension` is set. A name with an ID added can match
|
||||||
|
// another entry's own name (`IMG (6).JPG`), so this repeats until no name is
|
||||||
|
// shared. IDs are stable, so the names are too.
|
||||||
|
const namesByID = (
|
||||||
|
entries: { id: number; name: string }[],
|
||||||
|
beforeExtension: boolean,
|
||||||
|
): Map<number, string> => {
|
||||||
|
const withID = (id: number, name: string): string => {
|
||||||
|
const ext = beforeExtension ? extname(name) : "";
|
||||||
|
const stem = name.slice(0, name.length - ext.length);
|
||||||
|
return `${stem} (${id})${ext}`;
|
||||||
|
};
|
||||||
|
const names = new Map<number, string>();
|
||||||
|
for (const { id, name } of entries) names.set(id, name);
|
||||||
|
const suffixed = new Set<number>();
|
||||||
|
for (;;) {
|
||||||
|
const counts = new Map<string, number>();
|
||||||
|
for (const name of names.values()) {
|
||||||
|
const key = name.toLowerCase();
|
||||||
|
counts.set(key, (counts.get(key) ?? 0) + 1);
|
||||||
|
}
|
||||||
|
let changed = false;
|
||||||
|
for (const { id, name } of entries) {
|
||||||
|
if (suffixed.has(id)) continue;
|
||||||
|
if (counts.get(name.toLowerCase()) === 1) continue;
|
||||||
|
names.set(id, withID(id, name));
|
||||||
|
suffixed.add(id);
|
||||||
|
changed = true;
|
||||||
|
}
|
||||||
|
if (!changed) return names;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Remove the symlinks in the album directory `dir` that point into
|
||||||
|
// `originalsDir` and are not named in `keep`. Nothing else in the directory
|
||||||
|
// is touched: anything else there was put there by the user.
|
||||||
|
const removeStaleLinks = (
|
||||||
|
dir: string,
|
||||||
|
keep: Set<string>,
|
||||||
|
originalsDir: string,
|
||||||
|
): void => {
|
||||||
|
const target = relative(dir, originalsDir);
|
||||||
|
for (const name of readdirSync(dir)) {
|
||||||
|
if (keep.has(name)) continue;
|
||||||
|
const path = join(dir, name);
|
||||||
|
if (
|
||||||
|
lstatSync(path).isSymbolicLink() &&
|
||||||
|
dirname(readlinkSync(path)) === target
|
||||||
|
) {
|
||||||
|
rmSync(path);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Remove the directories under `collectionsDir` that an earlier run wrote for
|
||||||
|
// an album that is gone or renamed: a directory not named in `current` with a
|
||||||
|
// `<name>.json` beside it holding an album ID, which is what a run writes. Its
|
||||||
|
// symlinks into originals/ are removed; if that leaves it empty, it and its
|
||||||
|
// JSON are deleted, otherwise both stay for what the user put there.
|
||||||
|
const removeStaleAlbumDirs = (
|
||||||
|
collectionsDir: string,
|
||||||
|
current: Set<string>,
|
||||||
|
originalsDir: string,
|
||||||
|
): void => {
|
||||||
|
for (const entry of readdirSync(collectionsDir, { withFileTypes: true })) {
|
||||||
|
if (!entry.isDirectory() || current.has(entry.name)) continue;
|
||||||
|
const jsonPath = join(collectionsDir, `${entry.name}.json`);
|
||||||
|
try {
|
||||||
|
const album = JSON.parse(readFileSync(jsonPath, "utf-8")) as {
|
||||||
|
id?: unknown;
|
||||||
|
};
|
||||||
|
if (typeof album.id !== "number") continue;
|
||||||
|
} catch {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
const dir = join(collectionsDir, entry.name);
|
||||||
|
removeStaleLinks(dir, new Set(), originalsDir);
|
||||||
|
if (readdirSync(dir).length > 0) continue;
|
||||||
|
rmdirSync(dir);
|
||||||
|
rmSync(jsonPath);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const loadLedger = (path: string): Map<number, FailureEntry> => {
|
const loadLedger = (path: string): Map<number, FailureEntry> => {
|
||||||
const ledger = new Map<number, FailureEntry>();
|
const ledger = new Map<number, FailureEntry>();
|
||||||
try {
|
try {
|
||||||
@@ -303,9 +366,10 @@ export const runBackup = async (
|
|||||||
|
|
||||||
// Collections in scope, and the distinct files across them (a file shared
|
// Collections in scope, and the distinct files across them (a file shared
|
||||||
// by two albums is one original).
|
// by two albums is one original).
|
||||||
const collections = lib
|
const allCollections = lib.listCollections();
|
||||||
.listCollections()
|
const collections = allCollections.filter((c) =>
|
||||||
.filter((c) => (only ? only.has(c.name) : true));
|
only ? only.has(c.name) : true,
|
||||||
|
);
|
||||||
const collectionName = new Map<number, string>();
|
const collectionName = new Map<number, string>();
|
||||||
for (const c of collections) collectionName.set(c.id, c.name);
|
for (const c of collections) collectionName.set(c.id, c.name);
|
||||||
|
|
||||||
@@ -362,7 +426,9 @@ export const runBackup = async (
|
|||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
log(`Fetching original ${file.metadata.title} (${fileID})...`);
|
log(`Fetching original ${file.metadata.title} (${fileID})...`);
|
||||||
const { path } = await lib.original(fileID);
|
// A fetched original is written straight to `dest`; only one
|
||||||
|
// that was already cached elsewhere is copied.
|
||||||
|
const { path } = await lib.original(fileID, dest);
|
||||||
await copyAtomic(path, dest);
|
await copyAtomic(path, dest);
|
||||||
downloaded++;
|
downloaded++;
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
@@ -406,23 +472,55 @@ export const runBackup = async (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Then the per-collection symlink trees and JSON.
|
// Then the per-collection symlink trees and JSON. Directory names are
|
||||||
|
// chosen across every album, not just those in scope, so a scoped run
|
||||||
|
// names an album the same as a full one and never takes the directory of
|
||||||
|
// an album it skipped. Stale entries are removed before anything is
|
||||||
|
// rebuilt, so on a case-insensitive file system removing an old name can
|
||||||
|
// never remove the new one.
|
||||||
|
const albumDirNames = namesByID(
|
||||||
|
allCollections.map((c) => ({
|
||||||
|
id: c.id,
|
||||||
|
name: sanitizeFileName(c.name, `collection-${c.id}`),
|
||||||
|
})),
|
||||||
|
false,
|
||||||
|
);
|
||||||
|
try {
|
||||||
|
removeStaleAlbumDirs(
|
||||||
|
collectionsDir,
|
||||||
|
new Set(albumDirNames.values()),
|
||||||
|
originalsDir,
|
||||||
|
);
|
||||||
|
} catch (err) {
|
||||||
|
log(`FAILED removing old album directories: ${errorMessage(err)}`);
|
||||||
|
}
|
||||||
|
|
||||||
for (const c of collections) {
|
for (const c of collections) {
|
||||||
const colDirName = sanitizeFileName(c.name, `collection-${c.id}`);
|
const colDirName = albumDirNames.get(c.id)!;
|
||||||
const colDir = join(collectionsDir, colDirName);
|
const colDir = join(collectionsDir, colDirName);
|
||||||
mkdirSync(colDir, { recursive: true });
|
mkdirSync(colDir, { recursive: true });
|
||||||
|
|
||||||
const files = filesByCollection.get(c.id) ?? [];
|
const files = filesByCollection.get(c.id) ?? [];
|
||||||
|
const linkNames = namesByID(
|
||||||
|
files.map((f) => ({
|
||||||
|
id: f.id,
|
||||||
|
name: sanitizeFileName(f.metadata.title, `file-${f.id}`),
|
||||||
|
})),
|
||||||
|
true,
|
||||||
|
);
|
||||||
|
try {
|
||||||
|
removeStaleLinks(colDir, new Set(linkNames.values()), originalsDir);
|
||||||
|
} catch (err) {
|
||||||
|
log(`FAILED removing old links in ${c.name}: ${errorMessage(err)}`);
|
||||||
|
}
|
||||||
|
|
||||||
const metaFiles: { id: number; metadata: EnteFile["metadata"] }[] = [];
|
const metaFiles: { id: number; metadata: EnteFile["metadata"] }[] = [];
|
||||||
for (const file of files) {
|
for (const file of files) {
|
||||||
metaFiles.push({ id: file.id, metadata: file.metadata });
|
metaFiles.push({ id: file.id, metadata: file.metadata });
|
||||||
if (!includeOriginals) continue;
|
if (!includeOriginals) continue;
|
||||||
const orig = join(originalsDir, originalName(file));
|
const orig = join(originalsDir, originalName(file));
|
||||||
if (!isPresent(orig)) continue;
|
if (!isPresent(orig)) continue;
|
||||||
const linkName = sanitizeFileName(
|
const linkName = linkNames.get(file.id)!;
|
||||||
file.metadata.title,
|
|
||||||
`file-${file.id}`,
|
|
||||||
);
|
|
||||||
const linkPath = join(colDir, linkName);
|
const linkPath = join(colDir, linkName);
|
||||||
try {
|
try {
|
||||||
rebuildSymlink(linkPath, relative(colDir, orig));
|
rebuildSymlink(linkPath, relative(colDir, orig));
|
||||||
|
|||||||
+74
-24
@@ -2,11 +2,10 @@
|
|||||||
//
|
//
|
||||||
// Each command takes its options and a `CliContext` and resolves to the exit
|
// Each command takes its options and a `CliContext` and resolves to the exit
|
||||||
// code; a thrown error is left to the caller. Nothing here calls
|
// code; a thrown error is left to the caller. Nothing here calls
|
||||||
// `process.exit`: `bin/quak.ts` wires these to the command line and exits with
|
// `process.exit`: `bin/quak.ts` wires these to the command line, and `run` in
|
||||||
// the returned code once output has drained. Output must stay byte-identical
|
// `cli-run.ts` prints a thrown error as one line and exits once output has
|
||||||
// (see `cli-output.ts`).
|
// drained. Output must stay byte-identical (see `cli-output.ts`).
|
||||||
|
|
||||||
import { input, password as passwordPrompt } from "@inquirer/prompts";
|
|
||||||
import {
|
import {
|
||||||
copyFileSync,
|
copyFileSync,
|
||||||
existsSync,
|
existsSync,
|
||||||
@@ -15,9 +14,17 @@ import {
|
|||||||
writeFileSync,
|
writeFileSync,
|
||||||
} from "node:fs";
|
} from "node:fs";
|
||||||
import { join } from "node:path";
|
import { join } from "node:path";
|
||||||
import { Client, type ClientSnapshot } from "./client.js";
|
import {
|
||||||
|
type Client,
|
||||||
|
type ClientSnapshot,
|
||||||
|
type LoginOptions,
|
||||||
|
} from "./client.js";
|
||||||
import { init } from "./crypto/index.js";
|
import { init } from "./crypto/index.js";
|
||||||
import { Library, type LibraryClient } from "./library/index.js";
|
import {
|
||||||
|
defaultCacheDirectory,
|
||||||
|
Library,
|
||||||
|
type LibraryClient,
|
||||||
|
} from "./library/index.js";
|
||||||
import {
|
import {
|
||||||
fileListRow,
|
fileListRow,
|
||||||
fileListLine,
|
fileListLine,
|
||||||
@@ -39,6 +46,12 @@ export interface CliContext {
|
|||||||
// Reads the session file into a client, or null when there is none. The
|
// Reads the session file into a client, or null when there is none. The
|
||||||
// CLI passes `loadSession` from `cli-session.ts`; tests pass a fake client.
|
// CLI passes `loadSession` from `cli-session.ts`; tests pass a fake client.
|
||||||
loadSession: (path: string) => Client | null;
|
loadSession: (path: string) => Client | null;
|
||||||
|
// Used by `login` only. The CLI passes `Client.login` and terminal
|
||||||
|
// prompts; tests pass fakes.
|
||||||
|
login: (opts: LoginOptions) => Promise<Client>;
|
||||||
|
prompt: (message: string) => Promise<string>;
|
||||||
|
// Like `prompt`, but the answer is masked as it is typed.
|
||||||
|
promptSecret: (message: string) => Promise<string>;
|
||||||
}
|
}
|
||||||
|
|
||||||
const sessionPath = (ctx: CliContext): string =>
|
const sessionPath = (ctx: CliContext): string =>
|
||||||
@@ -104,24 +117,19 @@ const openReadLibrary = (ctx: CliContext, client: Client): Promise<Library> =>
|
|||||||
precacheOriginals: false,
|
precacheOriginals: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
const prompt = async (message: string): Promise<string> => input({ message });
|
|
||||||
|
|
||||||
const promptSecret = async (message: string): Promise<string> =>
|
|
||||||
passwordPrompt({ message, mask: true });
|
|
||||||
|
|
||||||
export const loginCommand = async (ctx: CliContext): Promise<number> => {
|
export const loginCommand = async (ctx: CliContext): Promise<number> => {
|
||||||
await init();
|
await init();
|
||||||
const email = process.env.QUAK_EMAIL ?? (await prompt("Email"));
|
const email = process.env.QUAK_EMAIL ?? (await ctx.prompt("Email"));
|
||||||
const password =
|
const password =
|
||||||
process.env.QUAK_PASSWORD ?? (await promptSecret("Password"));
|
process.env.QUAK_PASSWORD ?? (await ctx.promptSecret("Password"));
|
||||||
|
|
||||||
ctx.stderr.write("Authenticating...\n");
|
ctx.stderr.write("Authenticating...\n");
|
||||||
try {
|
try {
|
||||||
const client = await Client.login({
|
const client = await ctx.login({
|
||||||
email,
|
email,
|
||||||
password,
|
password,
|
||||||
totp: async () => prompt("TOTP code: "),
|
totp: async () => ctx.prompt("TOTP code: "),
|
||||||
emailOTP: async () => prompt("Email verification code: "),
|
emailOTP: async () => ctx.prompt("Email verification code: "),
|
||||||
});
|
});
|
||||||
|
|
||||||
saveSession(ctx.sessionDir, client.toJSON());
|
saveSession(ctx.sessionDir, client.toJSON());
|
||||||
@@ -146,14 +154,43 @@ export const whoamiCommand = async (ctx: CliContext): Promise<number> => {
|
|||||||
return 0;
|
return 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Ends the session on the server, then deletes the session file even when that
|
||||||
|
// failed, and exits 1 if it did. The cache is left in place; the user is told
|
||||||
|
// where it is.
|
||||||
export const logoutCommand = async (ctx: CliContext): Promise<number> => {
|
export const logoutCommand = async (ctx: CliContext): Promise<number> => {
|
||||||
if (existsSync(sessionPath(ctx))) {
|
const path = sessionPath(ctx);
|
||||||
unlinkSync(sessionPath(ctx));
|
if (!existsSync(path)) {
|
||||||
ctx.stderr.write("Session deleted.\n");
|
|
||||||
} else {
|
|
||||||
ctx.stderr.write("No session found.\n");
|
ctx.stderr.write("No session found.\n");
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
return 0;
|
await init();
|
||||||
|
let cacheDir = ctx.cacheDir;
|
||||||
|
let failure: string | undefined;
|
||||||
|
try {
|
||||||
|
const client = ctx.loadSession(path);
|
||||||
|
if (client) {
|
||||||
|
cacheDir ??= defaultCacheDirectory(client.whoami().userID);
|
||||||
|
await client.logoutOnServer();
|
||||||
|
client.logout();
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
failure = err instanceof Error ? err.message : String(err);
|
||||||
|
}
|
||||||
|
unlinkSync(path);
|
||||||
|
if (failure === undefined) {
|
||||||
|
ctx.stderr.write("Session ended on the server.\n");
|
||||||
|
} else {
|
||||||
|
ctx.stderr.write(
|
||||||
|
`Could not end the session on the server: ${failure}\n`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
ctx.stderr.write("Session deleted.\n");
|
||||||
|
if (cacheDir !== undefined) {
|
||||||
|
ctx.stderr.write(
|
||||||
|
`Cache directory ${cacheDir} still holds decrypted data; delete it to remove that data.\n`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return failure === undefined ? 0 : 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const collectionsCommand = async (
|
export const collectionsCommand = async (
|
||||||
@@ -323,11 +360,14 @@ export const backupMetadataCommand = async (
|
|||||||
if (!client) return 1;
|
if (!client) return 1;
|
||||||
const lib = await openReadLibrary(ctx, client);
|
const lib = await openReadLibrary(ctx, client);
|
||||||
try {
|
try {
|
||||||
await runMetadataBackup(lib, client, dir, {
|
// Refresh first so the dump holds current account state, not what the
|
||||||
|
// cache last held; a failed refresh throws.
|
||||||
|
await lib.fresh();
|
||||||
|
const { failedMLBatches } = await runMetadataBackup(lib, client, dir, {
|
||||||
exif: opts.exif || opts.all,
|
exif: opts.exif || opts.all,
|
||||||
onProgress: (msg) => ctx.stderr.write(msg + "\n"),
|
onProgress: (msg) => ctx.stderr.write(msg + "\n"),
|
||||||
});
|
});
|
||||||
return 0;
|
return failedMLBatches > 0 ? 1 : 0;
|
||||||
} finally {
|
} finally {
|
||||||
await lib.close();
|
await lib.close();
|
||||||
}
|
}
|
||||||
@@ -343,10 +383,14 @@ export const backupCommand = async (
|
|||||||
if (!client) return 1;
|
if (!client) return 1;
|
||||||
|
|
||||||
ctx.stderr.write("Starting backup...\n");
|
ctx.stderr.write("Starting backup...\n");
|
||||||
|
// The precache is off: the backup fetches what it needs, and must not
|
||||||
|
// also fill the cache with every thumbnail and the recent originals.
|
||||||
const lib = await Library.open({
|
const lib = await Library.open({
|
||||||
client,
|
client,
|
||||||
downloadDirectory: dir,
|
downloadDirectory: dir,
|
||||||
cacheDirectory: ctx.cacheDir,
|
cacheDirectory: ctx.cacheDir,
|
||||||
|
precacheThumbnails: false,
|
||||||
|
precacheOriginals: false,
|
||||||
});
|
});
|
||||||
try {
|
try {
|
||||||
const result = await lib.backup({
|
const result = await lib.backup({
|
||||||
@@ -389,6 +433,9 @@ export const listMissingThumbnailsCommand = async (
|
|||||||
if (!client) return 1;
|
if (!client) return 1;
|
||||||
const lib = await openReadLibrary(ctx, client);
|
const lib = await openReadLibrary(ctx, client);
|
||||||
try {
|
try {
|
||||||
|
// Refresh first so files added since the cache was written are
|
||||||
|
// checked; a failed refresh throws.
|
||||||
|
await lib.fresh();
|
||||||
const missing = await listMissingThumbnails(lib, client, (msg) => {
|
const missing = await listMissingThumbnails(lib, client, (msg) => {
|
||||||
if (!opts.json) ctx.stderr.write(msg + "\n");
|
if (!opts.json) ctx.stderr.write(msg + "\n");
|
||||||
});
|
});
|
||||||
@@ -424,6 +471,9 @@ export const fixMissingThumbnailsCommand = async (
|
|||||||
if (!client) return 1;
|
if (!client) return 1;
|
||||||
const lib = await openReadLibrary(ctx, client);
|
const lib = await openReadLibrary(ctx, client);
|
||||||
try {
|
try {
|
||||||
|
// Refresh first so files added since the cache was written are found;
|
||||||
|
// a failed refresh throws.
|
||||||
|
await lib.fresh();
|
||||||
let fileIDs: number[];
|
let fileIDs: number[];
|
||||||
if (opts.file && opts.file.length > 0) {
|
if (opts.file && opts.file.length > 0) {
|
||||||
fileIDs = opts.file.map(Number).filter(Number.isFinite);
|
fileIDs = opts.file.map(Number).filter(Number.isFinite);
|
||||||
@@ -462,7 +512,7 @@ export const fixMissingThumbnailsCommand = async (
|
|||||||
ctx.stderr.write(` Skipped: ${skipped}\n`);
|
ctx.stderr.write(` Skipped: ${skipped}\n`);
|
||||||
ctx.stderr.write(` Failed: ${failed}\n`);
|
ctx.stderr.write(` Failed: ${failed}\n`);
|
||||||
if (skipped > 0) {
|
if (skipped > 0) {
|
||||||
ctx.stderr.write("\nSkipped (unsupported format):\n");
|
ctx.stderr.write("\nSkipped:\n");
|
||||||
for (const r of results.filter((r) => r.status === "skipped")) {
|
for (const r of results.filter((r) => r.status === "skipped")) {
|
||||||
ctx.stderr.write(
|
ctx.stderr.write(
|
||||||
` ${r.fileID}\t${r.title}\t${r.reason}\n`,
|
` ${r.fileID}\t${r.title}\t${r.reason}\n`,
|
||||||
|
|||||||
@@ -0,0 +1,36 @@
|
|||||||
|
// Runs one CLI command for `bin/quak.ts` and exits with its code.
|
||||||
|
|
||||||
|
import type { Writable } from "node:stream";
|
||||||
|
|
||||||
|
// Run a command and exit with its code once stdout/stderr have drained.
|
||||||
|
// Exiting before the drain can truncate piped output, and the library can keep
|
||||||
|
// the event loop alive after a command returns, so a plain return could hang.
|
||||||
|
// An error the command throws is printed as one `quak: MESSAGE` line, without
|
||||||
|
// the stack trace, and exits 1.
|
||||||
|
export const run = async (
|
||||||
|
command: Promise<number>,
|
||||||
|
stdout: Writable,
|
||||||
|
stderr: Writable,
|
||||||
|
exit: (code: number) => void,
|
||||||
|
): Promise<void> => {
|
||||||
|
let code: number;
|
||||||
|
try {
|
||||||
|
code = await command;
|
||||||
|
} catch (err) {
|
||||||
|
stderr.write(
|
||||||
|
`quak: ${err instanceof Error ? err.message : String(err)}\n`,
|
||||||
|
);
|
||||||
|
code = 1;
|
||||||
|
}
|
||||||
|
const pending = [stdout, stderr].filter((s) => s.writableLength > 0);
|
||||||
|
if (pending.length === 0) {
|
||||||
|
exit(code);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let remaining = pending.length;
|
||||||
|
for (const s of pending) {
|
||||||
|
s.once("drain", () => {
|
||||||
|
if (--remaining === 0) exit(code);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -217,6 +217,14 @@ export class Client {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Ends this client's session on the server (`POST /users/logout`), so the
|
||||||
|
// token stops working everywhere, including in any saved copy of it. This
|
||||||
|
// client is left as it was; call `logout()` to clear it.
|
||||||
|
async logoutOnServer(): Promise<void> {
|
||||||
|
this.assertLoggedIn();
|
||||||
|
await this.api.postJSON("/users/logout", {});
|
||||||
|
}
|
||||||
|
|
||||||
// Zeroes the key buffers in place, so any copy of the reference held
|
// Zeroes the key buffers in place, so any copy of the reference held
|
||||||
// elsewhere is wiped too. Every method checks `assertLoggedIn` before
|
// elsewhere is wiped too. Every method checks `assertLoggedIn` before
|
||||||
// touching the keys, so nothing decrypts with the zeroed keys.
|
// touching the keys, so nothing decrypts with the zeroed keys.
|
||||||
|
|||||||
@@ -0,0 +1,22 @@
|
|||||||
|
import sodium, { type StateAddress } from "libsodium-wrappers-sumo";
|
||||||
|
import { toBase64 } from "./encoding.js";
|
||||||
|
|
||||||
|
// The content hash an uploading client records in a file's metadata: unkeyed
|
||||||
|
// BLAKE2b with a 64-byte output over the original's bytes, fed in chunks, as
|
||||||
|
// standard base64 with padding. Named after the upstream client's functions.
|
||||||
|
// The output length is read at call time for the same reason as
|
||||||
|
// `streamTagFinal` in stream.ts: libsodium sets its constants only once ready.
|
||||||
|
|
||||||
|
export const chunkHashInit = (): StateAddress =>
|
||||||
|
sodium.crypto_generichash_init(null, sodium.crypto_generichash_BYTES_MAX);
|
||||||
|
|
||||||
|
export const chunkHashUpdate = (state: StateAddress, chunk: Uint8Array): void =>
|
||||||
|
sodium.crypto_generichash_update(state, chunk);
|
||||||
|
|
||||||
|
export const chunkHashFinal = (state: StateAddress): string =>
|
||||||
|
toBase64(
|
||||||
|
sodium.crypto_generichash_final(
|
||||||
|
state,
|
||||||
|
sodium.crypto_generichash_BYTES_MAX,
|
||||||
|
),
|
||||||
|
);
|
||||||
@@ -7,6 +7,7 @@ export {
|
|||||||
} from "./encoding.js";
|
} from "./encoding.js";
|
||||||
export { deriveKEK, deriveLoginSubkey } from "./kdf.js";
|
export { deriveKEK, deriveLoginSubkey } from "./kdf.js";
|
||||||
export { decryptBox, decryptSealed } from "./box.js";
|
export { decryptBox, decryptSealed } from "./box.js";
|
||||||
|
export { chunkHashFinal, chunkHashInit, chunkHashUpdate } from "./hash.js";
|
||||||
export {
|
export {
|
||||||
decryptBlob,
|
decryptBlob,
|
||||||
encryptBlob,
|
encryptBlob,
|
||||||
|
|||||||
+152
-4
@@ -1,8 +1,13 @@
|
|||||||
import { randomUUID } from "node:crypto";
|
import { randomBytes } from "node:crypto";
|
||||||
|
import { readdirSync, rmSync } from "node:fs";
|
||||||
import { open, rename, rm } from "node:fs/promises";
|
import { open, rename, rm } from "node:fs/promises";
|
||||||
import type { FileHandle } from "node:fs/promises";
|
import type { FileHandle } from "node:fs/promises";
|
||||||
import { dirname, join } from "node:path";
|
import { dirname, join } from "node:path";
|
||||||
|
import { Unzip, UnzipInflate } from "fflate";
|
||||||
import {
|
import {
|
||||||
|
chunkHashFinal,
|
||||||
|
chunkHashInit,
|
||||||
|
chunkHashUpdate,
|
||||||
fromBase64,
|
fromBase64,
|
||||||
initStreamPull,
|
initStreamPull,
|
||||||
pullStreamChunk,
|
pullStreamChunk,
|
||||||
@@ -176,6 +181,38 @@ export const fsyncPath = async (path: string): Promise<void> => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// A process-ID check: signal 0 delivers nothing and only reports whether the
|
||||||
|
// process exists. EPERM means it exists but belongs to another user.
|
||||||
|
const isRunning = (pid: number): boolean => {
|
||||||
|
try {
|
||||||
|
process.kill(pid, 0);
|
||||||
|
return true;
|
||||||
|
} catch (err) {
|
||||||
|
return (err as NodeJS.ErrnoException).code === "EPERM";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Delete the temp files a killed process left in `dir`: the writer's
|
||||||
|
// `.quak-<pid>-<random>.tmp` and the backup copy's
|
||||||
|
// `.quak-backup-<name>-<pid>-<random>.tmp`. Only files whose process is no
|
||||||
|
// longer running are removed, so another process writing into the same
|
||||||
|
// directory keeps its own. A reused process ID can only keep a leftover a while
|
||||||
|
// longer, never remove a live one.
|
||||||
|
export const removeLeftoverTempFiles = (dir: string): void => {
|
||||||
|
let names: string[];
|
||||||
|
try {
|
||||||
|
names = readdirSync(dir);
|
||||||
|
} catch {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
for (const name of names) {
|
||||||
|
const match = /^\.quak-(?:.*-)?(\d+)-[0-9a-z]*\.tmp$/.exec(name);
|
||||||
|
if (match && !isRunning(Number(match[1]))) {
|
||||||
|
rmSync(join(dir, name), { force: true });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
// Stage a write to `destination` atomically and durably, then rename it into
|
// Stage a write to `destination` atomically and durably, then rename it into
|
||||||
// place. `fill` writes the contents into the open temp file handle — either the
|
// place. `fill` writes the contents into the open temp file handle — either the
|
||||||
// whole buffer at once (`writeAtomic`) or chunk by chunk as they decrypt
|
// whole buffer at once (`writeAtomic`) or chunk by chunk as they decrypt
|
||||||
@@ -201,8 +238,12 @@ const stageAtomic = async (
|
|||||||
): Promise<void> => {
|
): Promise<void> => {
|
||||||
const dir = dirname(destination);
|
const dir = dirname(destination);
|
||||||
// The random suffix keeps concurrent downloads of the same destination
|
// The random suffix keeps concurrent downloads of the same destination
|
||||||
// from stepping on each other's temporary file.
|
// from stepping on each other's temporary file; the process ID lets
|
||||||
const tmpPath = join(dir, `.quak-${randomUUID()}.tmp`);
|
// `removeLeftoverTempFiles` tell a leftover from a write in progress.
|
||||||
|
const tmpPath = join(
|
||||||
|
dir,
|
||||||
|
`.quak-${process.pid}-${randomBytes(16).toString("hex")}.tmp`,
|
||||||
|
);
|
||||||
try {
|
try {
|
||||||
const handle = await open(tmpPath, "w");
|
const handle = await open(tmpPath, "w");
|
||||||
try {
|
try {
|
||||||
@@ -237,19 +278,109 @@ export const writeAtomic = async (
|
|||||||
): Promise<void> =>
|
): Promise<void> =>
|
||||||
stageAtomic(destination, (handle) => handle.writeFile(plaintext));
|
stageAtomic(destination, (handle) => handle.writeFile(plaintext));
|
||||||
|
|
||||||
|
// Hashes an original's bytes as they are decrypted, for comparison with the
|
||||||
|
// hash its uploader recorded.
|
||||||
|
interface ContentHasher {
|
||||||
|
update: (plaintext: Uint8Array) => void;
|
||||||
|
digest: () => string;
|
||||||
|
}
|
||||||
|
|
||||||
|
const fileHasher = (): ContentHasher => {
|
||||||
|
const state = chunkHashInit();
|
||||||
|
return {
|
||||||
|
update: (plaintext) => chunkHashUpdate(state, plaintext),
|
||||||
|
digest: () => chunkHashFinal(state),
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
// A live photo is stored as a ZIP of its image and its video, and its recorded
|
||||||
|
// hash is `<imageHash>:<videoHash>`, each over that part's own bytes. Like the
|
||||||
|
// upstream client's decoder, this takes the first entries whose names start
|
||||||
|
// with `image` and `video`.
|
||||||
|
//
|
||||||
|
// The ZIP is chosen by its uploader and may expand enormously, so entries are
|
||||||
|
// hashed as they decompress and never held. fflate's `Unzip` inflates each
|
||||||
|
// push in one piece, and deflate expands at most about 1000-fold, so the ZIP
|
||||||
|
// is pushed in 4 KiB slices to keep each decompressed piece near 4 MiB, one
|
||||||
|
// plaintext chunk. Every entry is started, even one that is not hashed,
|
||||||
|
// because fflate keeps an unstarted entry's data in memory.
|
||||||
|
const livePhotoHasher = (fileID: number): ContentHasher => {
|
||||||
|
const sliceSize = 4096;
|
||||||
|
const fail = (message: string, cause?: unknown): Error =>
|
||||||
|
new Error(`download: file ${fileID}: ${message}`, { cause });
|
||||||
|
const claimed = new Set<string>();
|
||||||
|
const hashes = new Map<string, string>();
|
||||||
|
const unzip = new Unzip((entry) => {
|
||||||
|
const part = ["image", "video"].find((p) => entry.name.startsWith(p));
|
||||||
|
const target =
|
||||||
|
part === undefined || claimed.has(part)
|
||||||
|
? undefined
|
||||||
|
: { part, state: chunkHashInit() };
|
||||||
|
if (target !== undefined) claimed.add(target.part);
|
||||||
|
entry.ondata = (err, data, final) => {
|
||||||
|
if (err) throw err;
|
||||||
|
if (target === undefined) return;
|
||||||
|
chunkHashUpdate(target.state, data);
|
||||||
|
if (final) hashes.set(target.part, chunkHashFinal(target.state));
|
||||||
|
};
|
||||||
|
entry.start();
|
||||||
|
});
|
||||||
|
unzip.register(UnzipInflate);
|
||||||
|
// fflate reports a bad ZIP by throwing, sometimes a TypeError, which the
|
||||||
|
// retry would take for a network failure; a bad ZIP is never retried.
|
||||||
|
const push = (data: Uint8Array, final: boolean): void => {
|
||||||
|
try {
|
||||||
|
unzip.push(data, final);
|
||||||
|
} catch (err) {
|
||||||
|
throw fail("live photo is not a readable ZIP", err);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return {
|
||||||
|
update: (plaintext) => {
|
||||||
|
for (let i = 0; i < plaintext.length; i += sliceSize) {
|
||||||
|
push(plaintext.subarray(i, i + sliceSize), false);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
digest: () => {
|
||||||
|
push(new Uint8Array(0), true);
|
||||||
|
const image = hashes.get("image");
|
||||||
|
const video = hashes.get("video");
|
||||||
|
if (image === undefined || video === undefined) {
|
||||||
|
throw fail(
|
||||||
|
"live photo ZIP does not hold both an image and a video",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return `${image}:${video}`;
|
||||||
|
},
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
// Decrypt `stream` straight to `destination`, one plaintext chunk at a time,
|
// Decrypt `stream` straight to `destination`, one plaintext chunk at a time,
|
||||||
// under the atomic writer's temp-then-rename discipline. Memory stays bounded
|
// under the atomic writer's temp-then-rename discipline. Memory stays bounded
|
||||||
// by the chunk size: each decrypted chunk is written to the temp file and
|
// by the chunk size: each decrypted chunk is written to the temp file and
|
||||||
// dropped. The rename happens only after the stream authenticates as terminated
|
// dropped. The rename happens only after the stream authenticates as terminated
|
||||||
// on TAG_FINAL; a truncated stream throws and leaves the destination untouched.
|
// on TAG_FINAL; a truncated stream throws and leaves the destination untouched.
|
||||||
// Returns the plaintext length written.
|
// Returns the plaintext length written.
|
||||||
|
//
|
||||||
|
// `original` is the file whose original this is (none for a thumbnail, which
|
||||||
|
// has no recorded hash). When its metadata has a hash, the decrypted bytes
|
||||||
|
// must match it or nothing is stored. Both a plain file and a live photo's
|
||||||
|
// parts are hashed as they stream. The mismatch error is not retried.
|
||||||
const decryptToTemp = async (
|
const decryptToTemp = async (
|
||||||
destination: string,
|
destination: string,
|
||||||
stream: ReadableStream<Uint8Array>,
|
stream: ReadableStream<Uint8Array>,
|
||||||
header: Uint8Array,
|
header: Uint8Array,
|
||||||
key: Uint8Array,
|
key: Uint8Array,
|
||||||
onProgress?: ProgressCallback,
|
onProgress?: ProgressCallback,
|
||||||
|
original?: EnteFile,
|
||||||
): Promise<number> => {
|
): Promise<number> => {
|
||||||
|
const expected = original?.metadata.hash;
|
||||||
|
const hasher =
|
||||||
|
original === undefined || expected === undefined
|
||||||
|
? undefined
|
||||||
|
: original.metadata.fileType === "livePhoto"
|
||||||
|
? livePhotoHasher(original.id)
|
||||||
|
: fileHasher();
|
||||||
let bytesWritten = 0;
|
let bytesWritten = 0;
|
||||||
try {
|
try {
|
||||||
await stageAtomic(destination, async (handle) => {
|
await stageAtomic(destination, async (handle) => {
|
||||||
@@ -258,10 +389,18 @@ const decryptToTemp = async (
|
|||||||
header,
|
header,
|
||||||
key,
|
key,
|
||||||
async (plaintext) => {
|
async (plaintext) => {
|
||||||
|
hasher?.update(plaintext);
|
||||||
await handle.write(plaintext);
|
await handle.write(plaintext);
|
||||||
},
|
},
|
||||||
onProgress,
|
onProgress,
|
||||||
);
|
);
|
||||||
|
if (original === undefined || hasher === undefined) return;
|
||||||
|
const actual = hasher.digest();
|
||||||
|
if (actual !== expected) {
|
||||||
|
throw new Error(
|
||||||
|
`download: file ${original.id}: content hash ${actual} does not match the hash its uploader recorded, ${expected}`,
|
||||||
|
);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
// Cancel the body so its connection is closed now rather than held
|
// Cancel the body so its connection is closed now rather than held
|
||||||
@@ -302,10 +441,18 @@ const fetchAndDecrypt = async (
|
|||||||
key: Uint8Array,
|
key: Uint8Array,
|
||||||
destination: string,
|
destination: string,
|
||||||
onProgress?: ProgressCallback,
|
onProgress?: ProgressCallback,
|
||||||
|
original?: EnteFile,
|
||||||
): Promise<number> =>
|
): Promise<number> =>
|
||||||
withRetry(async () => {
|
withRetry(async () => {
|
||||||
const stream = await openStream();
|
const stream = await openStream();
|
||||||
return decryptToTemp(destination, stream, header, key, onProgress);
|
return decryptToTemp(
|
||||||
|
destination,
|
||||||
|
stream,
|
||||||
|
header,
|
||||||
|
key,
|
||||||
|
onProgress,
|
||||||
|
original,
|
||||||
|
);
|
||||||
}, api.getRetryOptions());
|
}, api.getRetryOptions());
|
||||||
|
|
||||||
export const downloadFile = async (
|
export const downloadFile = async (
|
||||||
@@ -326,6 +473,7 @@ export const downloadFile = async (
|
|||||||
file.key,
|
file.key,
|
||||||
resolvedPath,
|
resolvedPath,
|
||||||
onProgress,
|
onProgress,
|
||||||
|
file,
|
||||||
);
|
);
|
||||||
return { path: resolvedPath, bytesWritten };
|
return { path: resolvedPath, bytesWritten };
|
||||||
};
|
};
|
||||||
|
|||||||
+31
-17
@@ -15,12 +15,12 @@
|
|||||||
// Integrity. The reused streaming decrypt is the enforced guarantee: every
|
// Integrity. The reused streaming decrypt is the enforced guarantee: every
|
||||||
// chunk is authenticated and the writer renames the file into place only once
|
// chunk is authenticated and the writer renames the file into place only once
|
||||||
// the stream ends on TAG_FINAL, so a truncated or corrupt fetch throws and
|
// the stream ends on TAG_FINAL, so a truncated or corrupt fetch throws and
|
||||||
// nothing is stored. On top of that this module refuses to record a stored file
|
// nothing is stored. For an original whose metadata records a content hash
|
||||||
// that came out empty. The design also asks for a content-hash comparison
|
// (`FileMetadata.hash`), the writer also hashes the decrypted bytes and stores
|
||||||
// against `FileMetadata.hash` (with a `fileSize` fallback); that is deferred —
|
// nothing if they differ, failing the fetch with an error naming the file. An
|
||||||
// see the PR — because the exact hash construction cannot be confirmed against
|
// original with no recorded hash is stored unchecked, as the upstream client
|
||||||
// the repo's fixtures and `FileBlob.size` is the encrypted object size, not the
|
// does; thumbnails have none. On top of that this module refuses to record a
|
||||||
// decrypted length this layer has.
|
// stored file that came out empty.
|
||||||
|
|
||||||
import { existsSync, statSync } from "node:fs";
|
import { existsSync, statSync } from "node:fs";
|
||||||
import {
|
import {
|
||||||
@@ -39,6 +39,7 @@ import {
|
|||||||
downloadFile,
|
downloadFile,
|
||||||
downloadThumbnail,
|
downloadThumbnail,
|
||||||
type ProgressCallback,
|
type ProgressCallback,
|
||||||
|
removeLeftoverTempFiles,
|
||||||
} from "../download/index.js";
|
} from "../download/index.js";
|
||||||
import { safeExtension } from "../filename.js";
|
import { safeExtension } from "../filename.js";
|
||||||
import type { EnteFile } from "../model/types.js";
|
import type { EnteFile } from "../model/types.js";
|
||||||
@@ -46,8 +47,6 @@ import type { Priority, RequestPools } from "./pools.js";
|
|||||||
|
|
||||||
const DIR_MODE = 0o700;
|
const DIR_MODE = 0o700;
|
||||||
const FILE_MODE = 0o600;
|
const FILE_MODE = 0o600;
|
||||||
const TEMP_PREFIX = ".quak-";
|
|
||||||
const TEMP_SUFFIX = ".tmp";
|
|
||||||
const GIB = 1024 * 1024 * 1024;
|
const GIB = 1024 * 1024 * 1024;
|
||||||
// Owner ruling (#36): bound the originals cache at 100 GiB, but back off when
|
// Owner ruling (#36): bound the originals cache at 100 GiB, but back off when
|
||||||
// the volume has under 50 GiB free so the cache never crowds the disk.
|
// the volume has under 50 GiB free so the cache never crowds the disk.
|
||||||
@@ -322,6 +321,23 @@ export class ContentCache implements PhotoContent, ThumbnailsAPI {
|
|||||||
return this.get(fileID, "thumbnail", "on-demand", opts?.onProgress);
|
return this.get(fileID, "thumbnail", "on-demand", opts?.onProgress);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Get an original for a backup. One not present anywhere is written
|
||||||
|
// straight to `destination` and recorded there, so no second copy lands
|
||||||
|
// in the cache; one already present is returned where it is.
|
||||||
|
async backupOriginal(
|
||||||
|
fileID: number,
|
||||||
|
destination: string,
|
||||||
|
): Promise<ContentResult> {
|
||||||
|
const result = await this.acquire(
|
||||||
|
fileID,
|
||||||
|
"original",
|
||||||
|
"on-demand",
|
||||||
|
undefined,
|
||||||
|
{ destination },
|
||||||
|
);
|
||||||
|
return { path: result.path, bytes: result.bytes };
|
||||||
|
}
|
||||||
|
|
||||||
async ensure(args: EnsureOptions): Promise<EnsureResult[]> {
|
async ensure(args: EnsureOptions): Promise<EnsureResult[]> {
|
||||||
return this.ensureThumbnails(args);
|
return this.ensureThumbnails(args);
|
||||||
}
|
}
|
||||||
@@ -423,13 +439,14 @@ export class ContentCache implements PhotoContent, ThumbnailsAPI {
|
|||||||
|
|
||||||
// The core: return the cached path if present, else fetch through the pool,
|
// The core: return the cached path if present, else fetch through the pool,
|
||||||
// store, and return it. `cached` distinguishes a present hit (no network,
|
// store, and return it. `cached` distinguishes a present hit (no network,
|
||||||
// no download event) from a fresh fetch.
|
// no download event) from a fresh fetch. A fetched original is stored at
|
||||||
|
// `opts.destination` when given, instead of in `originalsDir`.
|
||||||
private async acquire(
|
private async acquire(
|
||||||
fileID: number,
|
fileID: number,
|
||||||
kind: Kind,
|
kind: Kind,
|
||||||
priority: Priority,
|
priority: Priority,
|
||||||
signal: AbortSignal | undefined,
|
signal: AbortSignal | undefined,
|
||||||
opts?: { onByte?: ProgressCallback },
|
opts?: { onByte?: ProgressCallback; destination?: string },
|
||||||
): Promise<{ path: string; bytes: number; cached: boolean }> {
|
): Promise<{ path: string; bytes: number; cached: boolean }> {
|
||||||
const file = this.getFile(fileID);
|
const file = this.getFile(fileID);
|
||||||
if (!file) throw new Error(`content cache: unknown file ${fileID}`);
|
if (!file) throw new Error(`content cache: unknown file ${fileID}`);
|
||||||
@@ -470,7 +487,7 @@ export class ContentCache implements PhotoContent, ThumbnailsAPI {
|
|||||||
kind === "original" ? this.originalsDir : this.thumbnailsDir;
|
kind === "original" ? this.originalsDir : this.thumbnailsDir;
|
||||||
const dest =
|
const dest =
|
||||||
kind === "original"
|
kind === "original"
|
||||||
? join(dir, originalName(file))
|
? (opts?.destination ?? join(dir, originalName(file)))
|
||||||
: join(dir, `${fileID}${THUMBNAIL_EXT}`);
|
: join(dir, `${fileID}${THUMBNAIL_EXT}`);
|
||||||
const pool =
|
const pool =
|
||||||
kind === "original" ? this.pools.content : this.pools.thumbnails;
|
kind === "original" ? this.pools.content : this.pools.thumbnails;
|
||||||
@@ -654,6 +671,9 @@ export class ContentCache implements PhotoContent, ThumbnailsAPI {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private async scan(dir: string, into: Map<number, string>): Promise<void> {
|
private async scan(dir: string, into: Map<number, string>): Promise<void> {
|
||||||
|
// Another process sharing this cache may still be writing its temp
|
||||||
|
// files, so only those whose process has exited are removed.
|
||||||
|
removeLeftoverTempFiles(dir);
|
||||||
let entries: string[];
|
let entries: string[];
|
||||||
try {
|
try {
|
||||||
entries = await readdir(dir);
|
entries = await readdir(dir);
|
||||||
@@ -661,12 +681,6 @@ export class ContentCache implements PhotoContent, ThumbnailsAPI {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
for (const name of entries) {
|
for (const name of entries) {
|
||||||
if (name.startsWith(TEMP_PREFIX) && name.endsWith(TEMP_SUFFIX)) {
|
|
||||||
await rm(join(dir, name), { force: true }).catch(
|
|
||||||
() => undefined,
|
|
||||||
);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
const id = fileIDFromName(name);
|
const id = fileIDFromName(name);
|
||||||
const path = join(dir, name);
|
const path = join(dir, name);
|
||||||
if (id !== undefined && existsSync(path)) into.set(id, path);
|
if (id !== undefined && existsSync(path)) into.set(id, path);
|
||||||
|
|||||||
+31
-12
@@ -26,6 +26,7 @@
|
|||||||
// store marked unsaved until a later save actually lands, so a stuck disk is
|
// store marked unsaved until a later save actually lands, so a stuck disk is
|
||||||
// never masked by a subsequent empty refresh.
|
// never masked by a subsequent empty refresh.
|
||||||
|
|
||||||
|
import { rm } from "node:fs/promises";
|
||||||
import { join } from "node:path";
|
import { join } from "node:path";
|
||||||
import envPaths from "env-paths";
|
import envPaths from "env-paths";
|
||||||
|
|
||||||
@@ -97,6 +98,11 @@ export {
|
|||||||
|
|
||||||
export const DEFAULT_REFRESH_INTERVAL_SECONDS = 3;
|
export const DEFAULT_REFRESH_INTERVAL_SECONDS = 3;
|
||||||
|
|
||||||
|
// The account's cache directory when `cacheDirectory` is not given: the
|
||||||
|
// env-paths cache directory plus the user id, so each account has its own.
|
||||||
|
export const defaultCacheDirectory = (userID: number): string =>
|
||||||
|
join(envPaths("quak", { suffix: "" }).cache, String(userID));
|
||||||
|
|
||||||
// Project a metadata store into by-id records, filling each record's cache
|
// Project a metadata store into by-id records, filling each record's cache
|
||||||
// paths from the content cache when one is given. Shared by the live read
|
// paths from the content cache when one is given. Shared by the live read
|
||||||
// projection and the precache's initial seeding at open().
|
// projection and the precache's initial seeding at open().
|
||||||
@@ -343,11 +349,21 @@ export class Library {
|
|||||||
static async open(opts: LibraryOptions): Promise<Library> {
|
static async open(opts: LibraryOptions): Promise<Library> {
|
||||||
const { userID } = opts.client.whoami();
|
const { userID } = opts.client.whoami();
|
||||||
const cacheDirectory =
|
const cacheDirectory =
|
||||||
opts.cacheDirectory ??
|
opts.cacheDirectory ?? defaultCacheDirectory(userID);
|
||||||
join(envPaths("quak", { suffix: "" }).cache, String(userID));
|
const metadataPath = join(cacheDirectory, "metadata.json");
|
||||||
const store = await MetadataStore.load(
|
let store = await MetadataStore.load(metadataPath);
|
||||||
join(cacheDirectory, "metadata.json"),
|
// A cache directory given explicitly can hold another account's cache.
|
||||||
);
|
// Its records and cursor are not this account's, so delete it and the
|
||||||
|
// ML data beside it and start empty. A user ID of 0 means the cache
|
||||||
|
// was never refreshed and so holds nothing to discard.
|
||||||
|
if (store.userID !== 0 && store.userID !== userID) {
|
||||||
|
await rm(metadataPath, { force: true });
|
||||||
|
await rm(join(cacheDirectory, "mldata"), {
|
||||||
|
recursive: true,
|
||||||
|
force: true,
|
||||||
|
});
|
||||||
|
store = await MetadataStore.load(metadataPath);
|
||||||
|
}
|
||||||
const intervalMs =
|
const intervalMs =
|
||||||
(opts.refreshIntervalSeconds ?? DEFAULT_REFRESH_INTERVAL_SECONDS) *
|
(opts.refreshIntervalSeconds ?? DEFAULT_REFRESH_INTERVAL_SECONDS) *
|
||||||
1000;
|
1000;
|
||||||
@@ -522,11 +538,13 @@ export class Library {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Back up every in-scope file to `downloadDirectory` in the historical
|
// Back up every in-scope file to `downloadDirectory` in the historical
|
||||||
// on-disk layout, with a durable failure ledger (issue #51). Refreshes
|
// on-disk layout, with a durable failure ledger (issue #51). Waits for a
|
||||||
// first, fetches pending originals (and optional thumbnails) through the
|
// completed refresh first, as `fresh()` does, joining one already running,
|
||||||
// content cache and pools, then rebuilds the derived symlink/JSON views
|
// and rejects before touching any file when it fails. Then fetches pending
|
||||||
// from the model. Throws before any network work when no download directory
|
// originals (and optional thumbnails) through the content cache and pools,
|
||||||
// is available or no content cache backs the originals it must fetch.
|
// and rebuilds the derived symlink/JSON views from the model. Throws before
|
||||||
|
// any network work when no download directory is available or no content
|
||||||
|
// cache backs the originals it must fetch.
|
||||||
backup(opts?: BackupOptions): Promise<BackupResult> {
|
backup(opts?: BackupOptions): Promise<BackupResult> {
|
||||||
const downloadDirectory =
|
const downloadDirectory =
|
||||||
opts?.downloadDirectory ?? this.downloadDirectory;
|
opts?.downloadDirectory ?? this.downloadDirectory;
|
||||||
@@ -550,10 +568,11 @@ export class Library {
|
|||||||
const cache = this.cache;
|
const cache = this.cache;
|
||||||
return runBackup(
|
return runBackup(
|
||||||
{
|
{
|
||||||
refresh: () => this.runRefresh(),
|
refresh: () => this.refreshNow(),
|
||||||
listCollections: () => this.store.listCollections(),
|
listCollections: () => this.store.listCollections(),
|
||||||
listFiles: (id) => this.store.listFiles(id),
|
listFiles: (id) => this.store.listFiles(id),
|
||||||
original: (fileID) => cache!.original(fileID),
|
original: (fileID, destination) =>
|
||||||
|
cache!.backupOriginal(fileID, destination),
|
||||||
thumbnail: (fileID) => cache!.thumbnail(fileID),
|
thumbnail: (fileID) => cache!.thumbnail(fileID),
|
||||||
},
|
},
|
||||||
{ ...opts, downloadDirectory },
|
{ ...opts, downloadDirectory },
|
||||||
|
|||||||
+36
-9
@@ -5,7 +5,11 @@ import exifReader from "exif-reader";
|
|||||||
import type { Client } from "./client.js";
|
import type { Client } from "./client.js";
|
||||||
import type { Library, Photo } from "./library/index.js";
|
import type { Library, Photo } from "./library/index.js";
|
||||||
import { sanitizeFileName } from "./filename.js";
|
import { sanitizeFileName } from "./filename.js";
|
||||||
import { fetchMLData } from "./mldata-fetch.js";
|
import {
|
||||||
|
fetchMLDataBatch,
|
||||||
|
MLDATA_BATCH_SIZE,
|
||||||
|
type MLData,
|
||||||
|
} from "./mldata-fetch.js";
|
||||||
import type { EnteFile } from "./model/types.js";
|
import type { EnteFile } from "./model/types.js";
|
||||||
|
|
||||||
export type ProgressCallback = (message: string) => void;
|
export type ProgressCallback = (message: string) => void;
|
||||||
@@ -136,14 +140,15 @@ const extractExif = async (
|
|||||||
// Dump every decrypted metadata layer the account holds into a directory tree
|
// Dump every decrypted metadata layer the account holds into a directory tree
|
||||||
// of plain JSON: account, per-collection, and per-file records including the
|
// of plain JSON: account, per-collection, and per-file records including the
|
||||||
// private and public magic metadata and (by default) the ML data. Collections
|
// private and public magic metadata and (by default) the ML data. Collections
|
||||||
// and files are enumerated from the library's cache rather than a fresh server
|
// and files are enumerated from the library's cache, which the caller refreshes
|
||||||
// scan; the ML fetch and EXIF extraction are unchanged.
|
// first. Returns how many ML data requests failed; their files are still
|
||||||
|
// written, with `mlDataError` in place of `mlData`.
|
||||||
export const runMetadataBackup = async (
|
export const runMetadataBackup = async (
|
||||||
lib: Library,
|
lib: Library,
|
||||||
client: Client,
|
client: Client,
|
||||||
outDir: string,
|
outDir: string,
|
||||||
opts?: MetadataBackupOptions,
|
opts?: MetadataBackupOptions,
|
||||||
): Promise<void> => {
|
): Promise<{ failedMLBatches: number }> => {
|
||||||
const log = opts?.onProgress ?? (() => {});
|
const log = opts?.onProgress ?? (() => {});
|
||||||
const wantExif = opts?.exif ?? false;
|
const wantExif = opts?.exif ?? false;
|
||||||
|
|
||||||
@@ -208,12 +213,31 @@ export const runMetadataBackup = async (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// One failed request (retries exhausted) must not end the dump: its files
|
||||||
|
// get the reason in `mlDataError` and the other batches go on.
|
||||||
log("Fetching ML data (face detections, CLIP embeddings)...");
|
log("Fetching ML data (face detections, CLIP embeddings)...");
|
||||||
const mlDataMap = await fetchMLData(
|
const mlDataMap = new Map<number, MLData>();
|
||||||
client.getApiClient(),
|
const mlDataErrors = new Map<number, string>();
|
||||||
[...fileKeys.keys()],
|
let failedMLBatches = 0;
|
||||||
fileKeys,
|
const fileIDs = [...fileKeys.keys()];
|
||||||
);
|
for (let i = 0; i < fileIDs.length; i += MLDATA_BATCH_SIZE) {
|
||||||
|
const batch = fileIDs.slice(i, i + MLDATA_BATCH_SIZE);
|
||||||
|
try {
|
||||||
|
const result = await fetchMLDataBatch(
|
||||||
|
client.getApiClient(),
|
||||||
|
batch,
|
||||||
|
fileKeys,
|
||||||
|
);
|
||||||
|
for (const [id, payload] of result) mlDataMap.set(id, payload);
|
||||||
|
} catch (err) {
|
||||||
|
const reason = err instanceof Error ? err.message : String(err);
|
||||||
|
failedMLBatches++;
|
||||||
|
log(
|
||||||
|
`ML data request for ${batch.length} file(s) failed: ${reason}`,
|
||||||
|
);
|
||||||
|
for (const id of batch) mlDataErrors.set(id, reason);
|
||||||
|
}
|
||||||
|
}
|
||||||
log(`Got ML data for ${mlDataMap.size} file(s)`);
|
log(`Got ML data for ${mlDataMap.size} file(s)`);
|
||||||
|
|
||||||
const writtenFileIDs = new Set<number>();
|
const writtenFileIDs = new Set<number>();
|
||||||
@@ -233,6 +257,8 @@ export const runMetadataBackup = async (
|
|||||||
|
|
||||||
const ml = mlDataMap.get(file.id);
|
const ml = mlDataMap.get(file.id);
|
||||||
if (ml) fileMeta.mlData = ml;
|
if (ml) fileMeta.mlData = ml;
|
||||||
|
const mlError = mlDataErrors.get(file.id);
|
||||||
|
if (mlError) fileMeta.mlDataError = mlError;
|
||||||
|
|
||||||
if (wantExif && !writtenFileIDs.has(file.id)) {
|
if (wantExif && !writtenFileIDs.has(file.id)) {
|
||||||
log(`[${file.metadata.title}] Extracting EXIF...`);
|
log(`[${file.metadata.title}] Extracting EXIF...`);
|
||||||
@@ -253,4 +279,5 @@ export const runMetadataBackup = async (
|
|||||||
}
|
}
|
||||||
|
|
||||||
log("Metadata backup complete.");
|
log("Metadata backup complete.");
|
||||||
|
return { failedMLBatches };
|
||||||
};
|
};
|
||||||
|
|||||||
+2
-25
@@ -5,9 +5,8 @@
|
|||||||
// comes back encrypted under the file's own key and gzipped; decrypting and
|
// comes back encrypted under the file's own key and gzipped; decrypting and
|
||||||
// gunzipping yields the JSON payload
|
// gunzipping yields the JSON payload
|
||||||
// `{ face: { faces: [...] }, clip: { embedding } }`. Ente caps a request at 200
|
// `{ face: { faces: [...] }, clip: { embedding } }`. Ente caps a request at 200
|
||||||
// ids, so `fetchMLData` batches for callers that want many at once while
|
// ids, so callers that want many at once split them into batches of
|
||||||
// `fetchMLDataBatch` is the single-request unit the library submits to its
|
// `MLDATA_BATCH_SIZE` and call `fetchMLDataBatch` once per batch.
|
||||||
// request pool.
|
|
||||||
|
|
||||||
import { gunzipSync } from "node:zlib";
|
import { gunzipSync } from "node:zlib";
|
||||||
|
|
||||||
@@ -69,25 +68,3 @@ export const fetchMLDataBatch = async (
|
|||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Fetch ML data for arbitrarily many ids, batching at `MLDATA_BATCH_SIZE`. Used
|
|
||||||
// by the one-shot metadata backup; the library fetches through its request pool
|
|
||||||
// with `fetchMLDataBatch` instead.
|
|
||||||
export const fetchMLData = async (
|
|
||||||
api: ApiClient,
|
|
||||||
fileIDs: number[],
|
|
||||||
fileKeys: Map<number, Uint8Array>,
|
|
||||||
): Promise<Map<number, MLData>> => {
|
|
||||||
const result = new Map<number, MLData>();
|
|
||||||
for (let i = 0; i < fileIDs.length; i += MLDATA_BATCH_SIZE) {
|
|
||||||
const batch = fileIDs.slice(i, i + MLDATA_BATCH_SIZE);
|
|
||||||
for (const [id, payload] of await fetchMLDataBatch(
|
|
||||||
api,
|
|
||||||
batch,
|
|
||||||
fileKeys,
|
|
||||||
)) {
|
|
||||||
result.set(id, payload);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
};
|
|
||||||
|
|||||||
+23
-1
@@ -34,6 +34,28 @@ const FILE_TYPE_MAP: Record<number, FileType> = {
|
|||||||
|
|
||||||
const parseFileType = (n: number): FileType => FILE_TYPE_MAP[n] ?? "unknown";
|
const parseFileType = (n: number): FileType => FILE_TYPE_MAP[n] ?? "unknown";
|
||||||
|
|
||||||
|
// The hash the uploading client recorded for the original's bytes, read the
|
||||||
|
// way the upstream client's `metadataHash` reads it: `hash` if present,
|
||||||
|
// otherwise, for a live photo from an older client that wrote the two parts
|
||||||
|
// separately, `<imageHash>:<videoHash>`. A field that is not a non-empty
|
||||||
|
// string counts as absent, and a file with no hash at all is normal.
|
||||||
|
const expectedHash = (json: Record<string, unknown>): string | undefined => {
|
||||||
|
const text = (v: unknown): string | undefined =>
|
||||||
|
typeof v === "string" && v !== "" ? v : undefined;
|
||||||
|
const hash = text(json.hash);
|
||||||
|
if (hash !== undefined) return hash;
|
||||||
|
const imageHash = text(json.imageHash);
|
||||||
|
const videoHash = text(json.videoHash);
|
||||||
|
if (
|
||||||
|
json.fileType === 2 &&
|
||||||
|
imageHash !== undefined &&
|
||||||
|
videoHash !== undefined
|
||||||
|
) {
|
||||||
|
return `${imageHash}:${videoHash}`;
|
||||||
|
}
|
||||||
|
return undefined;
|
||||||
|
};
|
||||||
|
|
||||||
export const decryptCollection = (
|
export const decryptCollection = (
|
||||||
raw: RawCollection,
|
raw: RawCollection,
|
||||||
keys: KeyMaterial,
|
keys: KeyMaterial,
|
||||||
@@ -115,7 +137,7 @@ export const decryptFile = (
|
|||||||
modificationTime: metadataJSON.modificationTime ?? 0,
|
modificationTime: metadataJSON.modificationTime ?? 0,
|
||||||
latitude: metadataJSON.latitude,
|
latitude: metadataJSON.latitude,
|
||||||
longitude: metadataJSON.longitude,
|
longitude: metadataJSON.longitude,
|
||||||
hash: metadataJSON.hash,
|
hash: expectedHash(metadataJSON),
|
||||||
};
|
};
|
||||||
|
|
||||||
const magicMetadata = decryptMagicMetadata(raw.magicMetadata, key);
|
const magicMetadata = decryptMagicMetadata(raw.magicMetadata, key);
|
||||||
|
|||||||
@@ -29,6 +29,9 @@ export interface FileMetadata {
|
|||||||
modificationTime: Microseconds;
|
modificationTime: Microseconds;
|
||||||
latitude?: number;
|
latitude?: number;
|
||||||
longitude?: number;
|
longitude?: number;
|
||||||
|
// The content hash the uploader recorded (see `expectedHash` in
|
||||||
|
// decrypt.ts); `downloadFile` refuses an original that does not match it.
|
||||||
|
// Absent for files from very old clients.
|
||||||
hash?: string;
|
hash?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+88
-30
@@ -7,8 +7,21 @@ import { ApiError } from "./api/client.js";
|
|||||||
import { encryptBlob, toBase64 } from "./crypto/index.js";
|
import { encryptBlob, toBase64 } from "./crypto/index.js";
|
||||||
import type { EnteFile } from "./model/types.js";
|
import type { EnteFile } from "./model/types.js";
|
||||||
|
|
||||||
const THUMB_MAX_DIMENSION = 720;
|
// The server refuses a thumbnail larger than the one it already records for the
|
||||||
const THUMB_JPEG_QUALITY = 50;
|
// file (`thumbnail.size`, the encrypted size), so these encodings are tried
|
||||||
|
// from largest to smallest and the first that fits is uploaded.
|
||||||
|
const THUMB_ENCODINGS = [
|
||||||
|
{ maxDimension: 720, quality: 50 },
|
||||||
|
{ maxDimension: 720, quality: 30 },
|
||||||
|
{ maxDimension: 480, quality: 30 },
|
||||||
|
{ maxDimension: 320, quality: 20 },
|
||||||
|
{ maxDimension: 160, quality: 20 },
|
||||||
|
];
|
||||||
|
|
||||||
|
// The server accepts a new thumbnail only from the file's owner, so files other
|
||||||
|
// people own in albums shared with this account are never checked or repaired.
|
||||||
|
const NOT_OWNED_REASON =
|
||||||
|
"owned by another account (only the owner can replace its thumbnail)";
|
||||||
|
|
||||||
export interface MissingThumbnailInfo {
|
export interface MissingThumbnailInfo {
|
||||||
fileID: number;
|
fileID: number;
|
||||||
@@ -19,11 +32,12 @@ export interface MissingThumbnailInfo {
|
|||||||
|
|
||||||
// Three outcomes, not two. "fixed": a thumbnail was generated and uploaded.
|
// Three outcomes, not two. "fixed": a thumbnail was generated and uploaded.
|
||||||
// "failed": something went wrong (download, encode, upload) and the file still
|
// "failed": something went wrong (download, encode, upload) and the file still
|
||||||
// has no thumbnail. "skipped": the file is a format this helper cannot
|
// has no thumbnail. "skipped": the server would refuse any thumbnail for the
|
||||||
// regenerate — a video, or an image that is not a baseline JPEG. Skipped is a
|
// file or this helper cannot regenerate it — a file another account owns, a
|
||||||
// deliberate, expected outcome, not an error (issue #17): the repair path is
|
// recorded thumbnail size nothing fits within, a video, or an image that is
|
||||||
// JPEG-only because `jpeg-js` is, and a PNG or HEIC is left for a format-aware
|
// not a baseline JPEG. Skipped is a deliberate, expected outcome, not an error
|
||||||
// tool rather than reported as a failure.
|
// (issue #17): the repair path is JPEG-only because `jpeg-js` is, and a PNG or
|
||||||
|
// HEIC is left for a format-aware tool rather than reported as a failure.
|
||||||
export type ThumbnailFixStatus = "fixed" | "skipped" | "failed";
|
export type ThumbnailFixStatus = "fixed" | "skipped" | "failed";
|
||||||
|
|
||||||
export interface ThumbnailFixResult {
|
export interface ThumbnailFixResult {
|
||||||
@@ -45,6 +59,7 @@ export type ProgressCallback = (message: string) => void;
|
|||||||
// exists, so it is logged and the file is left unreported. That distinction is
|
// exists, so it is logged and the file is left unreported. That distinction is
|
||||||
// what stops `fix-missing-thumbnails` from regenerating and uploading over
|
// what stops `fix-missing-thumbnails` from regenerating and uploading over
|
||||||
// thumbnails that were fine all along while the CDN was briefly returning 500s.
|
// thumbnails that were fine all along while the CDN was briefly returning 500s.
|
||||||
|
// Files another account owns are logged as skipped and not checked.
|
||||||
export const listMissingThumbnails = async (
|
export const listMissingThumbnails = async (
|
||||||
lib: Library,
|
lib: Library,
|
||||||
client: Client,
|
client: Client,
|
||||||
@@ -52,6 +67,7 @@ export const listMissingThumbnails = async (
|
|||||||
): Promise<MissingThumbnailInfo[]> => {
|
): Promise<MissingThumbnailInfo[]> => {
|
||||||
const log = onProgress ?? (() => {});
|
const log = onProgress ?? (() => {});
|
||||||
const api = client.getApiClient();
|
const api = client.getApiClient();
|
||||||
|
const { userID } = client.whoami();
|
||||||
const missing: MissingThumbnailInfo[] = [];
|
const missing: MissingThumbnailInfo[] = [];
|
||||||
const seen = new Set<number>();
|
const seen = new Set<number>();
|
||||||
|
|
||||||
@@ -60,6 +76,13 @@ export const listMissingThumbnails = async (
|
|||||||
for (const photo of album.photos.list()) {
|
for (const photo of album.photos.list()) {
|
||||||
if (seen.has(photo.fileID)) continue;
|
if (seen.has(photo.fileID)) continue;
|
||||||
seen.add(photo.fileID);
|
seen.add(photo.fileID);
|
||||||
|
const file = lib.getFile(album.collectionID, photo.fileID);
|
||||||
|
if (file && file.ownerID !== userID) {
|
||||||
|
log(
|
||||||
|
`[${album.name}] Skipping ${photo.title}: ${NOT_OWNED_REASON}`,
|
||||||
|
);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
const stream = await api.getThumbnailStream(photo.fileID);
|
const stream = await api.getThumbnailStream(photo.fileID);
|
||||||
const reader = stream.getReader();
|
const reader = stream.getReader();
|
||||||
@@ -135,17 +158,13 @@ const resizeRGBA = (
|
|||||||
return dst;
|
return dst;
|
||||||
};
|
};
|
||||||
|
|
||||||
const generateThumbnail = (fileBytes: Uint8Array): Uint8Array => {
|
const generateThumbnail = (
|
||||||
const decoded = jpeg.decode(fileBytes, {
|
decoded: { data: Uint8Array; width: number; height: number },
|
||||||
useTArray: true,
|
maxDimension: number,
|
||||||
formatAsRGBA: true,
|
quality: number,
|
||||||
});
|
): Uint8Array => {
|
||||||
const { width: srcW, height: srcH } = decoded;
|
const { width: srcW, height: srcH } = decoded;
|
||||||
const scale = Math.min(
|
const scale = Math.min(maxDimension / srcW, maxDimension / srcH, 1);
|
||||||
THUMB_MAX_DIMENSION / srcW,
|
|
||||||
THUMB_MAX_DIMENSION / srcH,
|
|
||||||
1,
|
|
||||||
);
|
|
||||||
const dstW = Math.round(srcW * scale);
|
const dstW = Math.round(srcW * scale);
|
||||||
const dstH = Math.round(srcH * scale);
|
const dstH = Math.round(srcH * scale);
|
||||||
|
|
||||||
@@ -158,7 +177,7 @@ const generateThumbnail = (fileBytes: Uint8Array): Uint8Array => {
|
|||||||
|
|
||||||
const encoded = jpeg.encode(
|
const encoded = jpeg.encode(
|
||||||
{ data: pixels, width: dstW, height: dstH },
|
{ data: pixels, width: dstW, height: dstH },
|
||||||
THUMB_JPEG_QUALITY,
|
quality,
|
||||||
);
|
);
|
||||||
return new Uint8Array(encoded.data);
|
return new Uint8Array(encoded.data);
|
||||||
};
|
};
|
||||||
@@ -171,14 +190,35 @@ const generateThumbnail = (fileBytes: Uint8Array): Uint8Array => {
|
|||||||
const isJpeg = (bytes: Uint8Array): boolean =>
|
const isJpeg = (bytes: Uint8Array): boolean =>
|
||||||
bytes.length >= 2 && bytes[0] === 0xff && bytes[1] === 0xd8;
|
bytes.length >= 2 && bytes[0] === 0xff && bytes[1] === 0xd8;
|
||||||
|
|
||||||
// The reason a file cannot have a JPEG thumbnail regenerated for it from its
|
// The reason a file cannot have a JPEG thumbnail regenerated for it, known from
|
||||||
// metadata alone, before any bytes are fetched, or undefined when it might. A
|
// its record alone before any bytes are fetched, or undefined when it might. A
|
||||||
// non-image (video, live photo) is unsupported outright; a still image still
|
// still image still has to be checked against its actual bytes once
|
||||||
// has to be checked against its actual bytes once downloaded.
|
// downloaded.
|
||||||
const unsupportedByType = (file: EnteFile): string | undefined => {
|
const reasonToSkip = (file: EnteFile, userID: number): string | undefined => {
|
||||||
|
if (file.ownerID !== userID) {
|
||||||
|
return NOT_OWNED_REASON;
|
||||||
|
}
|
||||||
if (file.metadata.fileType !== "image") {
|
if (file.metadata.fileType !== "image") {
|
||||||
return `unsupported file type: ${file.metadata.fileType} (only JPEG images can be regenerated)`;
|
return `unsupported file type: ${file.metadata.fileType} (only JPEG images can be regenerated)`;
|
||||||
}
|
}
|
||||||
|
if (!file.thumbnail.size) {
|
||||||
|
return `recorded thumbnail size is ${file.thumbnail.size ?? "unknown"} (the server refuses a thumbnail larger than the one it records)`;
|
||||||
|
}
|
||||||
|
return undefined;
|
||||||
|
};
|
||||||
|
|
||||||
|
// Encrypt the largest encoding of the decoded image whose ciphertext is no
|
||||||
|
// larger than `maxSize`, or return undefined when even the smallest is larger.
|
||||||
|
const encryptThumbnailWithin = (
|
||||||
|
decoded: { data: Uint8Array; width: number; height: number },
|
||||||
|
key: Uint8Array,
|
||||||
|
maxSize: number,
|
||||||
|
): { header: Uint8Array; ciphertext: Uint8Array } | undefined => {
|
||||||
|
for (const { maxDimension, quality } of THUMB_ENCODINGS) {
|
||||||
|
const thumbJpeg = generateThumbnail(decoded, maxDimension, quality);
|
||||||
|
const encrypted = encryptBlob(thumbJpeg, key);
|
||||||
|
if (encrypted.ciphertext.length <= maxSize) return encrypted;
|
||||||
|
}
|
||||||
return undefined;
|
return undefined;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -197,6 +237,7 @@ export const fixMissingThumbnails = async (
|
|||||||
const log = onProgress ?? (() => {});
|
const log = onProgress ?? (() => {});
|
||||||
const results: ThumbnailFixResult[] = [];
|
const results: ThumbnailFixResult[] = [];
|
||||||
const api = client.getApiClient();
|
const api = client.getApiClient();
|
||||||
|
const { userID } = client.whoami();
|
||||||
|
|
||||||
// Resolve each requested fileID to its file record and owning album by
|
// Resolve each requested fileID to its file record and owning album by
|
||||||
// enumerating the library, each file taken from the first album that holds
|
// enumerating the library, each file taken from the first album that holds
|
||||||
@@ -237,18 +278,19 @@ export const fixMissingThumbnails = async (
|
|||||||
const { file, collectionName } = entry;
|
const { file, collectionName } = entry;
|
||||||
const title = file.metadata.title;
|
const title = file.metadata.title;
|
||||||
|
|
||||||
const typeReason = unsupportedByType(file);
|
const skipReason = reasonToSkip(file, userID);
|
||||||
if (typeReason) {
|
if (skipReason) {
|
||||||
log(`[${collectionName}] Skipping ${title}: ${typeReason}`);
|
log(`[${collectionName}] Skipping ${title}: ${skipReason}`);
|
||||||
results.push({
|
results.push({
|
||||||
fileID,
|
fileID,
|
||||||
title,
|
title,
|
||||||
collection: collectionName,
|
collection: collectionName,
|
||||||
status: "skipped",
|
status: "skipped",
|
||||||
reason: typeReason,
|
reason: skipReason,
|
||||||
});
|
});
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
const maxSize = file.thumbnail.size!;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const photo = lib.photos.byID({ fileID });
|
const photo = lib.photos.byID({ fileID });
|
||||||
@@ -277,12 +319,28 @@ export const fixMissingThumbnails = async (
|
|||||||
}
|
}
|
||||||
|
|
||||||
log(`[${collectionName}] Generating thumbnail for ${title}...`);
|
log(`[${collectionName}] Generating thumbnail for ${title}...`);
|
||||||
const thumbJpeg = generateThumbnail(fileBytes);
|
const decoded = jpeg.decode(fileBytes, {
|
||||||
|
useTArray: true,
|
||||||
|
formatAsRGBA: true,
|
||||||
|
});
|
||||||
|
const fitting = encryptThumbnailWithin(decoded, file.key, maxSize);
|
||||||
|
if (!fitting) {
|
||||||
|
const reason = `no thumbnail encoding fits the recorded thumbnail size of ${maxSize} bytes`;
|
||||||
|
log(`[${collectionName}] Skipping ${title}: ${reason}`);
|
||||||
|
results.push({
|
||||||
|
fileID,
|
||||||
|
title,
|
||||||
|
collection: collectionName,
|
||||||
|
status: "skipped",
|
||||||
|
reason,
|
||||||
|
});
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
const { header, ciphertext } = fitting;
|
||||||
|
|
||||||
log(
|
log(
|
||||||
`[${collectionName}] Encrypting and uploading thumbnail (${thumbJpeg.length} bytes)...`,
|
`[${collectionName}] Uploading thumbnail (${ciphertext.length} bytes)...`,
|
||||||
);
|
);
|
||||||
const { header, ciphertext } = encryptBlob(thumbJpeg, file.key);
|
|
||||||
const md5 = createHash("md5").update(ciphertext).digest("base64");
|
const md5 = createHash("md5").update(ciphertext).digest("base64");
|
||||||
const { objectKey, url } = await api.getUploadURL(
|
const { objectKey, url } = await api.getUploadURL(
|
||||||
ciphertext.length,
|
ciphertext.length,
|
||||||
|
|||||||
+433
-1
@@ -40,6 +40,7 @@ import {
|
|||||||
readFileSync,
|
readFileSync,
|
||||||
readlinkSync,
|
readlinkSync,
|
||||||
rmSync,
|
rmSync,
|
||||||
|
symlinkSync,
|
||||||
writeFileSync,
|
writeFileSync,
|
||||||
} from "node:fs";
|
} from "node:fs";
|
||||||
import { spawnSync } from "node:child_process";
|
import { spawnSync } from "node:child_process";
|
||||||
@@ -47,6 +48,7 @@ import { join } from "node:path";
|
|||||||
import { tmpdir } from "node:os";
|
import { tmpdir } from "node:os";
|
||||||
import { describe, it, expect, beforeEach, afterEach, vi } from "vitest";
|
import { describe, it, expect, beforeEach, afterEach, vi } from "vitest";
|
||||||
|
|
||||||
|
import { runBackup, type BackupLibrary } from "../../src/backup.js";
|
||||||
import { Library } from "../../src/library/index.js";
|
import { Library } from "../../src/library/index.js";
|
||||||
import type { ContentSource } from "../../src/library/content.js";
|
import type { ContentSource } from "../../src/library/content.js";
|
||||||
import type { CollectionsPage, FilesPage } from "../../src/client.js";
|
import type { CollectionsPage, FilesPage } from "../../src/client.js";
|
||||||
@@ -560,11 +562,39 @@ describe("lib.backup", () => {
|
|||||||
lib.close();
|
lib.close();
|
||||||
});
|
});
|
||||||
|
|
||||||
it("fsyncs a copied original before the rename and its directory after", async () => {
|
it("fetches each original once and writes it only into the backup", async () => {
|
||||||
|
// A backup of a 500 GB account must write 500 GB, not a copy in the
|
||||||
|
// cache as well: an original fetched for the backup goes straight
|
||||||
|
// into its originals/, and the cache records it there.
|
||||||
|
const source = stubSource();
|
||||||
|
const lib = await openLibrary(source);
|
||||||
|
const outDir = join(root, "backup");
|
||||||
|
|
||||||
|
const result = await lib.backup({ downloadDirectory: outDir });
|
||||||
|
|
||||||
|
expect(result.downloaded).toBe(3);
|
||||||
|
expect(source.originalCalls).toBe(3);
|
||||||
|
expect(readdirSync(join(root, "cache", "originals"))).toEqual([]);
|
||||||
|
const stored = readdirSync(join(outDir, "originals")).filter(
|
||||||
|
(name) => !name.endsWith(".json"),
|
||||||
|
);
|
||||||
|
expect(stored.sort()).toEqual(["100.jpg", "101.jpg", "200.png"]);
|
||||||
|
// The cache counts the backup's copy as present: reading the
|
||||||
|
// original afterwards fetches nothing and answers with that copy.
|
||||||
|
const read = await lib.photos.byID({ fileID: 100 })!.original();
|
||||||
|
expect(read.path).toBe(join(outDir, "originals", "100.jpg"));
|
||||||
|
expect(source.originalCalls).toBe(3);
|
||||||
|
await lib.close();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("fsyncs an original copied from the cache before the rename and its directory after", async () => {
|
||||||
const lib = await openLibrary(stubSource());
|
const lib = await openLibrary(stubSource());
|
||||||
const outDir = join(root, "backup");
|
const outDir = join(root, "backup");
|
||||||
const originals = join(outDir, "originals");
|
const originals = join(outDir, "originals");
|
||||||
const dest = join(originals, "100.jpg");
|
const dest = join(originals, "100.jpg");
|
||||||
|
// Only an original already in the cache is copied into the backup;
|
||||||
|
// one fetched for the backup is written there by the download writer.
|
||||||
|
await lib.photos.byID({ fileID: 100 })!.original();
|
||||||
fsEvents.length = 0;
|
fsEvents.length = 0;
|
||||||
|
|
||||||
await lib.backup({ downloadDirectory: outDir });
|
await lib.backup({ downloadDirectory: outDir });
|
||||||
@@ -622,3 +652,405 @@ describe("lib.backup", () => {
|
|||||||
lib.close();
|
lib.close();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Every refresh fails, as with an expired session or no network.
|
||||||
|
class FailingClient extends MockClient {
|
||||||
|
override async collectionsSince(): Promise<CollectionsPage> {
|
||||||
|
throw new Error("HTTP 401 from server");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Holds its refresh open until `release()` is called, then reports a third
|
||||||
|
// album, so a backup can be started while that refresh is still running.
|
||||||
|
class HeldClient extends MockClient {
|
||||||
|
release!: () => void;
|
||||||
|
private held = new Promise<void>((resolve) => {
|
||||||
|
this.release = resolve;
|
||||||
|
});
|
||||||
|
override async collectionsSince(): Promise<CollectionsPage> {
|
||||||
|
await this.held;
|
||||||
|
return {
|
||||||
|
collections: [collection(3, "Later")],
|
||||||
|
deleted: [],
|
||||||
|
cursor: 2,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
override async filesSince(args: {
|
||||||
|
collectionID: number;
|
||||||
|
}): Promise<FilesPage> {
|
||||||
|
if (args.collectionID !== 3) return super.filesSince(args);
|
||||||
|
return { files: [file(300, 3, "late.jpg")], deleted: [], cursor: 2 };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fill the library cache on disk, so the next open starts its refresh in the
|
||||||
|
// background instead of waiting for it.
|
||||||
|
const fillCache = async (): Promise<void> => {
|
||||||
|
const lib = await openLibrary(stubSource());
|
||||||
|
await lib.close();
|
||||||
|
};
|
||||||
|
|
||||||
|
describe("the refresh before a backup", () => {
|
||||||
|
it("waits for a refresh already running and backs up what it found", async () => {
|
||||||
|
await fillCache();
|
||||||
|
const client = new HeldClient();
|
||||||
|
const lib = await openLibrary(stubSource(), client);
|
||||||
|
const outDir = join(root, "backup");
|
||||||
|
|
||||||
|
const backup = lib.backup({ downloadDirectory: outDir });
|
||||||
|
client.release();
|
||||||
|
const result = await backup;
|
||||||
|
|
||||||
|
expect(result.totalFiles).toBe(4);
|
||||||
|
expect(existsSync(join(outDir, "originals", "300.jpg"))).toBe(true);
|
||||||
|
await lib.close();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("fails before any download when the refresh fails, leaving failures.json as it was", async () => {
|
||||||
|
await fillCache();
|
||||||
|
const outDir = join(root, "backup");
|
||||||
|
seedLedger(outDir, 100, "beach.jpg");
|
||||||
|
const ledgerPath = join(outDir, "failures.json");
|
||||||
|
const ledgerBefore = readFileSync(ledgerPath, "utf-8");
|
||||||
|
const source = stubSource();
|
||||||
|
const lib = await openLibrary(source, new FailingClient());
|
||||||
|
|
||||||
|
await expect(lib.backup({ downloadDirectory: outDir })).rejects.toThrow(
|
||||||
|
"HTTP 401 from server",
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(source.originalCalls).toBe(0);
|
||||||
|
expect(readFileSync(ledgerPath, "utf-8")).toBe(ledgerBefore);
|
||||||
|
expect(existsSync(join(outDir, "originals"))).toBe(false);
|
||||||
|
await lib.close();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("fails when the refresh fails on an empty cache, instead of backing up nothing", async () => {
|
||||||
|
const source = stubSource();
|
||||||
|
const lib = await openLibrary(source, new FailingClient());
|
||||||
|
const outDir = join(root, "backup");
|
||||||
|
|
||||||
|
await expect(lib.backup({ downloadDirectory: outDir })).rejects.toThrow(
|
||||||
|
"HTTP 401 from server",
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(source.originalCalls).toBe(0);
|
||||||
|
expect(existsSync(outDir)).toBe(false);
|
||||||
|
await lib.close();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// The album folders under collections/, driven through `runBackup` with a
|
||||||
|
// stand-in library whose albums a test changes between runs.
|
||||||
|
describe("backup album folders", () => {
|
||||||
|
interface Album {
|
||||||
|
collection: Collection;
|
||||||
|
files: EnteFile[];
|
||||||
|
}
|
||||||
|
|
||||||
|
const libraryOf = (albums: Album[]): BackupLibrary => ({
|
||||||
|
refresh: async () => {},
|
||||||
|
listCollections: () => albums.map((a) => a.collection),
|
||||||
|
listFiles: (id) =>
|
||||||
|
albums.find((a) => a.collection.id === id)?.files ?? [],
|
||||||
|
original: async (fileID) => {
|
||||||
|
const path = join(root, `source-${fileID}`);
|
||||||
|
writeFileSync(path, `original ${fileID}`);
|
||||||
|
return { path };
|
||||||
|
},
|
||||||
|
thumbnail: async () => {
|
||||||
|
throw new Error("no thumbnails in this stand-in");
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// Every entry under collections/, one level of directories deep, with each
|
||||||
|
// symlink's target.
|
||||||
|
const tree = (outDir: string): string[] => {
|
||||||
|
const lines: string[] = [];
|
||||||
|
const list = (dir: string, prefix: string): void => {
|
||||||
|
for (const name of readdirSync(dir).sort()) {
|
||||||
|
const path = join(dir, name);
|
||||||
|
const st = lstatSync(path);
|
||||||
|
if (st.isSymbolicLink()) {
|
||||||
|
lines.push(`${prefix}${name} -> ${readlinkSync(path)}`);
|
||||||
|
} else if (st.isDirectory() && prefix === "") {
|
||||||
|
lines.push(`${name}/`);
|
||||||
|
list(path, `${name}/`);
|
||||||
|
} else {
|
||||||
|
lines.push(`${prefix}${name}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
list(join(outDir, "collections"), "");
|
||||||
|
return lines;
|
||||||
|
};
|
||||||
|
|
||||||
|
const albumID = (outDir: string, jsonName: string): number =>
|
||||||
|
JSON.parse(readFileSync(join(outDir, "collections", jsonName), "utf-8"))
|
||||||
|
.id;
|
||||||
|
|
||||||
|
it("gives every file and every album its own name when names repeat", async () => {
|
||||||
|
const outDir = join(root, "backup");
|
||||||
|
const lib = libraryOf([
|
||||||
|
{
|
||||||
|
collection: collection(10, "Trip"),
|
||||||
|
files: [
|
||||||
|
file(1, 10, "IMG_0001.JPG"),
|
||||||
|
file(2, 10, "IMG_0001.JPG"),
|
||||||
|
file(4, 10, "img_0001.jpg"),
|
||||||
|
file(3, 10, "other.jpg"),
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
collection: collection(11, "Trip"),
|
||||||
|
files: [file(3, 11, "other.jpg")],
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
const result = await runBackup(lib, { downloadDirectory: outDir });
|
||||||
|
|
||||||
|
expect(result.failed).toBe(0);
|
||||||
|
expect(tree(outDir)).toEqual([
|
||||||
|
"Trip (10)/",
|
||||||
|
"Trip (10)/IMG_0001 (1).JPG -> ../../originals/1.JPG",
|
||||||
|
"Trip (10)/IMG_0001 (2).JPG -> ../../originals/2.JPG",
|
||||||
|
"Trip (10)/img_0001 (4).jpg -> ../../originals/4.jpg",
|
||||||
|
"Trip (10)/other.jpg -> ../../originals/3.jpg",
|
||||||
|
"Trip (10).json",
|
||||||
|
"Trip (11)/",
|
||||||
|
"Trip (11)/other.jpg -> ../../originals/3.jpg",
|
||||||
|
"Trip (11).json",
|
||||||
|
]);
|
||||||
|
expect(albumID(outDir, "Trip (10).json")).toBe(10);
|
||||||
|
expect(albumID(outDir, "Trip (11).json")).toBe(11);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("keeps names unique when a name with an ID added is another entry's own name", async () => {
|
||||||
|
const outDir = join(root, "backup");
|
||||||
|
const lib = libraryOf([
|
||||||
|
{
|
||||||
|
collection: collection(10, "Trip"),
|
||||||
|
files: [
|
||||||
|
file(5, 10, "IMG (6).JPG"),
|
||||||
|
file(6, 10, "IMG.JPG"),
|
||||||
|
file(7, 10, "IMG.JPG"),
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
collection: collection(11, "Trip"),
|
||||||
|
files: [file(8, 11, "a.jpg")],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
collection: collection(12, "Trip (11)"),
|
||||||
|
files: [file(9, 12, "b.jpg")],
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
const result = await runBackup(lib, { downloadDirectory: outDir });
|
||||||
|
|
||||||
|
expect(result.failed).toBe(0);
|
||||||
|
expect(tree(outDir)).toEqual([
|
||||||
|
"Trip (10)/",
|
||||||
|
"Trip (10)/IMG (6) (5).JPG -> ../../originals/5.JPG",
|
||||||
|
"Trip (10)/IMG (6).JPG -> ../../originals/6.JPG",
|
||||||
|
"Trip (10)/IMG (7).JPG -> ../../originals/7.JPG",
|
||||||
|
"Trip (10).json",
|
||||||
|
"Trip (11)/",
|
||||||
|
"Trip (11)/a.jpg -> ../../originals/8.jpg",
|
||||||
|
"Trip (11) (12)/",
|
||||||
|
"Trip (11) (12)/b.jpg -> ../../originals/9.jpg",
|
||||||
|
"Trip (11) (12).json",
|
||||||
|
"Trip (11).json",
|
||||||
|
]);
|
||||||
|
expect(albumID(outDir, "Trip (10).json")).toBe(10);
|
||||||
|
expect(albumID(outDir, "Trip (11).json")).toBe(11);
|
||||||
|
expect(albumID(outDir, "Trip (11) (12).json")).toBe(12);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("changes nothing on a second run over an unchanged account", async () => {
|
||||||
|
const outDir = join(root, "backup");
|
||||||
|
const lib = libraryOf([
|
||||||
|
{
|
||||||
|
collection: collection(10, "Trip"),
|
||||||
|
files: [
|
||||||
|
file(1, 10, "IMG_0001.JPG"),
|
||||||
|
file(2, 10, "IMG_0001.JPG"),
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
collection: collection(11, "Trip"),
|
||||||
|
files: [file(3, 11, "other.jpg")],
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
await runBackup(lib, { downloadDirectory: outDir });
|
||||||
|
const before = tree(outDir);
|
||||||
|
const second = await runBackup(lib, { downloadDirectory: outDir });
|
||||||
|
|
||||||
|
expect(second.downloaded).toBe(0);
|
||||||
|
expect(second.failed).toBe(0);
|
||||||
|
expect(tree(outDir)).toEqual(before);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("leaves the albums an onlyAlbumNames run skips as they were", async () => {
|
||||||
|
const outDir = join(root, "backup");
|
||||||
|
// "trip" is skipped by the scoped run but its name clashes with the
|
||||||
|
// in-scope "Trip", so "Trip" must keep its ID suffix.
|
||||||
|
const lib = libraryOf([
|
||||||
|
{
|
||||||
|
collection: collection(10, "Trip"),
|
||||||
|
files: [file(1, 10, "a.jpg")],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
collection: collection(11, "trip"),
|
||||||
|
files: [file(2, 11, "b.jpg")],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
collection: collection(12, "Work"),
|
||||||
|
files: [file(3, 12, "c.jpg")],
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
const json = (name: string): string =>
|
||||||
|
readFileSync(join(outDir, "collections", name), "utf-8");
|
||||||
|
|
||||||
|
await runBackup(lib, { downloadDirectory: outDir });
|
||||||
|
const before = tree(outDir);
|
||||||
|
const skippedJSON = [json("trip (11).json"), json("Work.json")];
|
||||||
|
const scoped = await runBackup(lib, {
|
||||||
|
downloadDirectory: outDir,
|
||||||
|
onlyAlbumNames: ["Trip"],
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(scoped.failed).toBe(0);
|
||||||
|
expect(before).toEqual([
|
||||||
|
"Trip (10)/",
|
||||||
|
"Trip (10)/a.jpg -> ../../originals/1.jpg",
|
||||||
|
"Trip (10).json",
|
||||||
|
"Work/",
|
||||||
|
"Work/c.jpg -> ../../originals/3.jpg",
|
||||||
|
"Work.json",
|
||||||
|
"trip (11)/",
|
||||||
|
"trip (11)/b.jpg -> ../../originals/2.jpg",
|
||||||
|
"trip (11).json",
|
||||||
|
]);
|
||||||
|
expect(tree(outDir)).toEqual(before);
|
||||||
|
expect([json("trip (11).json"), json("Work.json")]).toEqual(
|
||||||
|
skippedJSON,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("removes links and album folders that are gone, and nothing the user added", async () => {
|
||||||
|
const outDir = join(root, "backup");
|
||||||
|
const albums: Album[] = [
|
||||||
|
{
|
||||||
|
collection: collection(10, "Trip"),
|
||||||
|
files: [
|
||||||
|
file(1, 10, "IMG_0001.JPG"),
|
||||||
|
file(2, 10, "IMG_0001.JPG"),
|
||||||
|
file(3, 10, "other.jpg"),
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
collection: collection(12, "Work"),
|
||||||
|
files: [file(5, 12, "a.jpg")],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
collection: collection(13, "Old"),
|
||||||
|
files: [file(5, 13, "a.jpg")],
|
||||||
|
},
|
||||||
|
];
|
||||||
|
const lib = libraryOf(albums);
|
||||||
|
await runBackup(lib, { downloadDirectory: outDir });
|
||||||
|
|
||||||
|
// What the user put in the tree: a note and a symlink of their own in
|
||||||
|
// an album, a note in an album about to be renamed, and a folder quak
|
||||||
|
// did not create.
|
||||||
|
const collectionsDir = join(outDir, "collections");
|
||||||
|
writeFileSync(join(collectionsDir, "Trip", "notes.txt"), "mine");
|
||||||
|
symlinkSync("../elsewhere", join(collectionsDir, "Trip", "mine"));
|
||||||
|
writeFileSync(join(collectionsDir, "Work", "keep.txt"), "mine");
|
||||||
|
mkdirSync(join(collectionsDir, "Mine"));
|
||||||
|
writeFileSync(join(collectionsDir, "Mine", "keep.txt"), "mine");
|
||||||
|
|
||||||
|
// File 2 leaves Trip, Work is renamed Office, Old is deleted.
|
||||||
|
albums[0]!.files.splice(1, 1);
|
||||||
|
albums[1]!.collection = collection(12, "Office");
|
||||||
|
albums.splice(2, 1);
|
||||||
|
const result = await runBackup(lib, { downloadDirectory: outDir });
|
||||||
|
|
||||||
|
expect(result.failed).toBe(0);
|
||||||
|
expect(tree(outDir)).toEqual([
|
||||||
|
"Mine/",
|
||||||
|
"Mine/keep.txt",
|
||||||
|
"Office/",
|
||||||
|
"Office/a.jpg -> ../../originals/5.jpg",
|
||||||
|
"Office.json",
|
||||||
|
"Trip/",
|
||||||
|
"Trip/IMG_0001.JPG -> ../../originals/1.JPG",
|
||||||
|
"Trip/mine -> ../elsewhere",
|
||||||
|
"Trip/notes.txt",
|
||||||
|
"Trip/other.jpg -> ../../originals/3.jpg",
|
||||||
|
"Trip.json",
|
||||||
|
"Work/",
|
||||||
|
"Work/keep.txt",
|
||||||
|
"Work.json",
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
// One album backed up, then a folder the user made beside it holding a
|
||||||
|
// symlink into originals/, with `json` (if given) as its sibling JSON.
|
||||||
|
const backupWithUserFolder = async (
|
||||||
|
json: string | undefined,
|
||||||
|
): Promise<{ outDir: string; failed: number }> => {
|
||||||
|
const outDir = join(root, "backup");
|
||||||
|
const lib = libraryOf([
|
||||||
|
{
|
||||||
|
collection: collection(10, "Trip"),
|
||||||
|
files: [file(1, 10, "a.jpg")],
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
await runBackup(lib, { downloadDirectory: outDir });
|
||||||
|
const collectionsDir = join(outDir, "collections");
|
||||||
|
mkdirSync(join(collectionsDir, "Mine"));
|
||||||
|
symlinkSync(
|
||||||
|
"../../originals/1.jpg",
|
||||||
|
join(collectionsDir, "Mine", "a.jpg"),
|
||||||
|
);
|
||||||
|
if (json !== undefined) {
|
||||||
|
writeFileSync(join(collectionsDir, "Mine.json"), json);
|
||||||
|
}
|
||||||
|
const result = await runBackup(lib, { downloadDirectory: outDir });
|
||||||
|
return { outDir, failed: result.failed };
|
||||||
|
};
|
||||||
|
|
||||||
|
it("leaves a user folder with no JSON beside it as it was", async () => {
|
||||||
|
const { outDir, failed } = await backupWithUserFolder(undefined);
|
||||||
|
|
||||||
|
expect(failed).toBe(0);
|
||||||
|
expect(tree(outDir)).toEqual([
|
||||||
|
"Mine/",
|
||||||
|
"Mine/a.jpg -> ../../originals/1.jpg",
|
||||||
|
"Trip/",
|
||||||
|
"Trip/a.jpg -> ../../originals/1.jpg",
|
||||||
|
"Trip.json",
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("leaves a user folder whose JSON has no album ID as it was", async () => {
|
||||||
|
const json = '{"name":"Mine"}';
|
||||||
|
const { outDir, failed } = await backupWithUserFolder(json);
|
||||||
|
|
||||||
|
expect(failed).toBe(0);
|
||||||
|
expect(tree(outDir)).toEqual([
|
||||||
|
"Mine/",
|
||||||
|
"Mine/a.jpg -> ../../originals/1.jpg",
|
||||||
|
"Mine.json",
|
||||||
|
"Trip/",
|
||||||
|
"Trip/a.jpg -> ../../originals/1.jpg",
|
||||||
|
"Trip.json",
|
||||||
|
]);
|
||||||
|
expect(
|
||||||
|
readFileSync(join(outDir, "collections", "Mine.json"), "utf-8"),
|
||||||
|
).toBe(json);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|||||||
+359
-24
@@ -13,6 +13,7 @@
|
|||||||
import {
|
import {
|
||||||
existsSync,
|
existsSync,
|
||||||
mkdtempSync,
|
mkdtempSync,
|
||||||
|
readdirSync,
|
||||||
readFileSync,
|
readFileSync,
|
||||||
rmSync,
|
rmSync,
|
||||||
statSync,
|
statSync,
|
||||||
@@ -20,11 +21,21 @@ import {
|
|||||||
} from "node:fs";
|
} from "node:fs";
|
||||||
import { join } from "node:path";
|
import { join } from "node:path";
|
||||||
import { tmpdir } from "node:os";
|
import { tmpdir } from "node:os";
|
||||||
import { describe, it, expect, beforeAll, beforeEach, afterEach } from "vitest";
|
import { PassThrough } from "node:stream";
|
||||||
|
import {
|
||||||
|
describe,
|
||||||
|
it,
|
||||||
|
expect,
|
||||||
|
vi,
|
||||||
|
beforeAll,
|
||||||
|
beforeEach,
|
||||||
|
afterEach,
|
||||||
|
} from "vitest";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
type CliContext,
|
type CliContext,
|
||||||
saveSession,
|
saveSession,
|
||||||
|
loginCommand,
|
||||||
whoamiCommand,
|
whoamiCommand,
|
||||||
logoutCommand,
|
logoutCommand,
|
||||||
collectionsCommand,
|
collectionsCommand,
|
||||||
@@ -32,13 +43,17 @@ import {
|
|||||||
getCommand,
|
getCommand,
|
||||||
getThumbCommand,
|
getThumbCommand,
|
||||||
backupCommand,
|
backupCommand,
|
||||||
|
backupMetadataCommand,
|
||||||
listMissingThumbnailsCommand,
|
listMissingThumbnailsCommand,
|
||||||
|
fixMissingThumbnailsCommand,
|
||||||
} from "../../src/cli-commands.js";
|
} from "../../src/cli-commands.js";
|
||||||
|
import { run } from "../../src/cli-run.js";
|
||||||
import { loadSession } from "../../src/cli-session.js";
|
import { loadSession } from "../../src/cli-session.js";
|
||||||
import type { Client, ClientSnapshot } from "../../src/client.js";
|
import type { Client, ClientSnapshot, LoginOptions } from "../../src/client.js";
|
||||||
import type { ContentSource } from "../../src/library/content.js";
|
import type { ContentSource } from "../../src/library/content.js";
|
||||||
import type { Collection, EnteFile } from "../../src/model/types.js";
|
import type { Collection, EnteFile } from "../../src/model/types.js";
|
||||||
import { init } from "../../src/crypto/index.js";
|
import { init, toBase64 } from "../../src/crypto/index.js";
|
||||||
|
import { defaultCacheDirectory } from "../../src/library/index.js";
|
||||||
|
|
||||||
const USER_ID = 42;
|
const USER_ID = 42;
|
||||||
|
|
||||||
@@ -81,8 +96,26 @@ const FILES: Record<number, EnteFile[]> = {
|
|||||||
|
|
||||||
// An original is 7 bytes and a thumbnail 3. `failID` makes that file's
|
// An original is 7 bytes and a thumbnail 3. `failID` makes that file's
|
||||||
// original fail; `emptyThumbID` makes the server report that file's
|
// original fail; `emptyThumbID` makes the server report that file's
|
||||||
// thumbnail as empty.
|
// thumbnail as empty. `withNewFile` adds new.jpg (102) to Vacation, advancing
|
||||||
const fakeClient = (opts: { failID?: number; emptyThumbID?: number } = {}) => {
|
// the collection's updationTime as the server does, and `refreshError` makes
|
||||||
|
// listing collections fail with that message.
|
||||||
|
const fakeClient = (
|
||||||
|
opts: {
|
||||||
|
failID?: number;
|
||||||
|
emptyThumbID?: number;
|
||||||
|
withNewFile?: boolean;
|
||||||
|
refreshError?: string;
|
||||||
|
} = {},
|
||||||
|
) => {
|
||||||
|
const collections = opts.withNewFile
|
||||||
|
? [{ ...COLLECTIONS[0], updationTime: 2 }, COLLECTIONS[1]]
|
||||||
|
: COLLECTIONS;
|
||||||
|
const files = opts.withNewFile
|
||||||
|
? {
|
||||||
|
...FILES,
|
||||||
|
1: [...FILES[1], { ...file(102, 1, "new.jpg"), updationTime: 2 }],
|
||||||
|
}
|
||||||
|
: FILES;
|
||||||
const source: ContentSource = {
|
const source: ContentSource = {
|
||||||
original: async ({ file: f, destination }) => {
|
original: async ({ file: f, destination }) => {
|
||||||
if (f.id === opts.failID) throw new Error("HTTP 500 from server");
|
if (f.id === opts.failID) throw new Error("HTTP 500 from server");
|
||||||
@@ -96,18 +129,19 @@ const fakeClient = (opts: { failID?: number; emptyThumbID?: number } = {}) => {
|
|||||||
};
|
};
|
||||||
const fake = {
|
const fake = {
|
||||||
whoami: () => ({ email: "cli@example.com", userID: USER_ID }),
|
whoami: () => ({ email: "cli@example.com", userID: USER_ID }),
|
||||||
collectionsSince: async () => ({
|
collectionsSince: async () => {
|
||||||
collections: COLLECTIONS,
|
if (opts.refreshError) throw new Error(opts.refreshError);
|
||||||
deleted: [],
|
return { collections, deleted: [], cursor: 1 };
|
||||||
cursor: 1,
|
},
|
||||||
}),
|
|
||||||
filesSince: async (args: { collectionID: number }) => ({
|
filesSince: async (args: { collectionID: number }) => ({
|
||||||
files: FILES[args.collectionID] ?? [],
|
files: files[args.collectionID] ?? [],
|
||||||
deleted: [],
|
deleted: [],
|
||||||
cursor: 1,
|
cursor: 1,
|
||||||
}),
|
}),
|
||||||
contentSource: () => source,
|
contentSource: () => source,
|
||||||
getApiClient: () => ({
|
getApiClient: () => ({
|
||||||
|
// The ML data request of `backup-metadata`: no file has any.
|
||||||
|
postJSON: async () => ({ data: [] }),
|
||||||
getThumbnailStream: async (fileID: number) =>
|
getThumbnailStream: async (fileID: number) =>
|
||||||
new ReadableStream<Uint8Array>({
|
new ReadableStream<Uint8Array>({
|
||||||
start(controller) {
|
start(controller) {
|
||||||
@@ -141,6 +175,15 @@ const context = (client: Client | null = fakeClient()): CliContext => ({
|
|||||||
sessionDir: join(root, "session"),
|
sessionDir: join(root, "session"),
|
||||||
cacheDir: join(root, "cache"),
|
cacheDir: join(root, "cache"),
|
||||||
loadSession: () => client,
|
loadSession: () => client,
|
||||||
|
login: async () => {
|
||||||
|
throw new Error("login not expected");
|
||||||
|
},
|
||||||
|
prompt: async () => {
|
||||||
|
throw new Error("prompt not expected");
|
||||||
|
},
|
||||||
|
promptSecret: async () => {
|
||||||
|
throw new Error("prompt not expected");
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
beforeAll(async () => {
|
beforeAll(async () => {
|
||||||
@@ -176,19 +219,6 @@ describe("session file", () => {
|
|||||||
expect(JSON.parse(readFileSync(path, "utf-8"))).toEqual(snapshot);
|
expect(JSON.parse(readFileSync(path, "utf-8"))).toEqual(snapshot);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("is removed by logout", async () => {
|
|
||||||
const ctx = context();
|
|
||||||
saveSession(ctx.sessionDir, snapshot);
|
|
||||||
expect(await logoutCommand(ctx)).toBe(0);
|
|
||||||
expect(existsSync(join(ctx.sessionDir, "session.json"))).toBe(false);
|
|
||||||
expect(stderr.text).toBe("Session deleted.\n");
|
|
||||||
});
|
|
||||||
|
|
||||||
it("logout without a session says so and exits 0", async () => {
|
|
||||||
expect(await logoutCommand(context())).toBe(0);
|
|
||||||
expect(stderr.text).toBe("No session found.\n");
|
|
||||||
});
|
|
||||||
|
|
||||||
it("a missing session exits 1 with 'Not logged in'", async () => {
|
it("a missing session exits 1 with 'Not logged in'", async () => {
|
||||||
const ctx = { ...context(), loadSession };
|
const ctx = { ...context(), loadSession };
|
||||||
expect(await whoamiCommand(ctx)).toBe(1);
|
expect(await whoamiCommand(ctx)).toBe(1);
|
||||||
@@ -211,6 +241,184 @@ describe("session file", () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// The login function is a fake that hands back a client whose snapshot is
|
||||||
|
// `snapshot`; each prompt is recorded and answered with "123456".
|
||||||
|
describe("login", () => {
|
||||||
|
const snapshot: ClientSnapshot = {
|
||||||
|
email: "cli@example.com",
|
||||||
|
userID: USER_ID,
|
||||||
|
token: "token",
|
||||||
|
masterKey: "a",
|
||||||
|
secretKey: "b",
|
||||||
|
publicKey: "c",
|
||||||
|
};
|
||||||
|
|
||||||
|
const loggedIn = {
|
||||||
|
whoami: () => ({ email: "cli@example.com", userID: USER_ID }),
|
||||||
|
toJSON: () => snapshot,
|
||||||
|
} as unknown as Client;
|
||||||
|
|
||||||
|
let prompts: string[];
|
||||||
|
|
||||||
|
const loginContext = (
|
||||||
|
login: (opts: LoginOptions) => Promise<Client>,
|
||||||
|
): CliContext => ({
|
||||||
|
...context(),
|
||||||
|
login,
|
||||||
|
prompt: async (message) => {
|
||||||
|
prompts.push(message);
|
||||||
|
return "123456";
|
||||||
|
},
|
||||||
|
promptSecret: async (message) => {
|
||||||
|
prompts.push(message);
|
||||||
|
return "123456";
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
prompts = [];
|
||||||
|
vi.stubEnv("QUAK_EMAIL", "cli@example.com");
|
||||||
|
vi.stubEnv("QUAK_PASSWORD", "hunter2");
|
||||||
|
});
|
||||||
|
|
||||||
|
afterEach(() => {
|
||||||
|
vi.unstubAllEnvs();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("takes the email and password from the environment without a prompt", async () => {
|
||||||
|
const calls: LoginOptions[] = [];
|
||||||
|
const ctx = loginContext(async (opts) => {
|
||||||
|
calls.push(opts);
|
||||||
|
return loggedIn;
|
||||||
|
});
|
||||||
|
expect(await loginCommand(ctx)).toBe(0);
|
||||||
|
|
||||||
|
expect(prompts).toEqual([]);
|
||||||
|
expect(calls).toHaveLength(1);
|
||||||
|
expect(calls[0]!.email).toBe("cli@example.com");
|
||||||
|
expect(calls[0]!.password).toBe("hunter2");
|
||||||
|
const path = join(ctx.sessionDir, "session.json");
|
||||||
|
expect(stderr.text).toBe(
|
||||||
|
"Authenticating...\n" +
|
||||||
|
`Logged in as cli@example.com (user ${USER_ID})\n` +
|
||||||
|
`Session saved to ${path}\n`,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("saves the session with mode 0600 in a directory with mode 0700", async () => {
|
||||||
|
const ctx = loginContext(async () => loggedIn);
|
||||||
|
expect(await loginCommand(ctx)).toBe(0);
|
||||||
|
|
||||||
|
expect(statSync(ctx.sessionDir).mode & 0o777).toBe(0o700);
|
||||||
|
const path = join(ctx.sessionDir, "session.json");
|
||||||
|
expect(statSync(path).mode & 0o777).toBe(0o600);
|
||||||
|
expect(JSON.parse(readFileSync(path, "utf-8"))).toEqual(snapshot);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("asks for the TOTP code when the account needs one", async () => {
|
||||||
|
let code: string | undefined;
|
||||||
|
const ctx = loginContext(async (opts) => {
|
||||||
|
code = await opts.totp!();
|
||||||
|
return loggedIn;
|
||||||
|
});
|
||||||
|
expect(await loginCommand(ctx)).toBe(0);
|
||||||
|
|
||||||
|
expect(prompts).toEqual(["TOTP code: "]);
|
||||||
|
expect(code).toBe("123456");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("a failed login exits 1, says why and writes no session", async () => {
|
||||||
|
const ctx = loginContext(async () => {
|
||||||
|
throw new Error("HTTP 401 from server");
|
||||||
|
});
|
||||||
|
expect(await loginCommand(ctx)).toBe(1);
|
||||||
|
|
||||||
|
expect(stderr.text).toBe(
|
||||||
|
"Authenticating...\nLogin failed: HTTP 401 from server\n",
|
||||||
|
);
|
||||||
|
expect(existsSync(join(ctx.sessionDir, "session.json"))).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// These use a real client read from the session file, over a fake API that
|
||||||
|
// records each request and answers with `status`.
|
||||||
|
describe("logout", () => {
|
||||||
|
const snapshot: ClientSnapshot = {
|
||||||
|
email: "cli@example.com",
|
||||||
|
userID: USER_ID,
|
||||||
|
token: "saved-token",
|
||||||
|
masterKey: toBase64(new Uint8Array(32)),
|
||||||
|
secretKey: toBase64(new Uint8Array(32)),
|
||||||
|
publicKey: toBase64(new Uint8Array(32)),
|
||||||
|
};
|
||||||
|
|
||||||
|
const requests: Request[] = [];
|
||||||
|
|
||||||
|
const logoutContext = (status: number): CliContext => ({
|
||||||
|
...context(),
|
||||||
|
loadSession: (path) =>
|
||||||
|
loadSession(path, {
|
||||||
|
fetch: async (url, init) => {
|
||||||
|
requests.push(new Request(url, init));
|
||||||
|
return new Response(JSON.stringify({}), {
|
||||||
|
status,
|
||||||
|
headers: { "content-type": "application/json" },
|
||||||
|
});
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
requests.length = 0;
|
||||||
|
});
|
||||||
|
|
||||||
|
it("ends the session on the server, then deletes the file", async () => {
|
||||||
|
const ctx = logoutContext(200);
|
||||||
|
saveSession(ctx.sessionDir, snapshot);
|
||||||
|
expect(await logoutCommand(ctx)).toBe(0);
|
||||||
|
|
||||||
|
expect(requests).toHaveLength(1);
|
||||||
|
expect(requests[0]!.method).toBe("POST");
|
||||||
|
expect(new URL(requests[0]!.url).pathname).toBe("/users/logout");
|
||||||
|
expect(requests[0]!.headers.get("X-Auth-Token")).toBe("saved-token");
|
||||||
|
expect(existsSync(join(ctx.sessionDir, "session.json"))).toBe(false);
|
||||||
|
expect(stderr.text).toBe(
|
||||||
|
"Session ended on the server.\n" +
|
||||||
|
"Session deleted.\n" +
|
||||||
|
`Cache directory ${ctx.cacheDir} still holds decrypted data; delete it to remove that data.\n`,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("still deletes the file when the server call fails, and says so", async () => {
|
||||||
|
const ctx = logoutContext(500);
|
||||||
|
saveSession(ctx.sessionDir, snapshot);
|
||||||
|
expect(await logoutCommand(ctx)).toBe(1);
|
||||||
|
|
||||||
|
expect(requests).toHaveLength(1);
|
||||||
|
expect(existsSync(join(ctx.sessionDir, "session.json"))).toBe(false);
|
||||||
|
expect(stderr.text).toBe(
|
||||||
|
"Could not end the session on the server: HTTP 500\n" +
|
||||||
|
"Session deleted.\n" +
|
||||||
|
`Cache directory ${ctx.cacheDir} still holds decrypted data; delete it to remove that data.\n`,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("names the account's default cache directory without --cache-dir", async () => {
|
||||||
|
const ctx = { ...logoutContext(200), cacheDir: undefined };
|
||||||
|
saveSession(ctx.sessionDir, snapshot);
|
||||||
|
expect(await logoutCommand(ctx)).toBe(0);
|
||||||
|
expect(stderr.text).toContain(
|
||||||
|
`Cache directory ${defaultCacheDirectory(USER_ID)} still holds decrypted data`,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("without a session says so, calls nothing and exits 0", async () => {
|
||||||
|
expect(await logoutCommand(logoutContext(200))).toBe(0);
|
||||||
|
expect(requests).toHaveLength(0);
|
||||||
|
expect(stderr.text).toBe("No session found.\n");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
describe("whoami", () => {
|
describe("whoami", () => {
|
||||||
it("prints the account as one line of JSON", async () => {
|
it("prints the account as one line of JSON", async () => {
|
||||||
expect(await whoamiCommand(context())).toBe(0);
|
expect(await whoamiCommand(context())).toBe(0);
|
||||||
@@ -337,6 +545,16 @@ describe("backup", () => {
|
|||||||
expect(stdout.text).toBe("");
|
expect(stdout.text).toBe("");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// The backup opens its library with the precache off: it fetches the
|
||||||
|
// originals it needs into the backup, and must not also fetch every
|
||||||
|
// thumbnail in the account, or keep originals, in the per-user cache.
|
||||||
|
it("leaves nothing in the cache's originals and thumbnails", async () => {
|
||||||
|
const dir = join(root, "backup");
|
||||||
|
expect(await backupCommand(context(), dir, {})).toBe(0);
|
||||||
|
expect(readdirSync(join(root, "cache", "thumbnails"))).toEqual([]);
|
||||||
|
expect(readdirSync(join(root, "cache", "originals"))).toEqual([]);
|
||||||
|
});
|
||||||
|
|
||||||
it("exits 1 and lists the file when one download fails", async () => {
|
it("exits 1 and lists the file when one download fails", async () => {
|
||||||
const ctx = context(fakeClient({ failID: 101 }));
|
const ctx = context(fakeClient({ failID: 101 }));
|
||||||
expect(await backupCommand(ctx, join(root, "backup"), {})).toBe(1);
|
expect(await backupCommand(ctx, join(root, "backup"), {})).toBe(1);
|
||||||
@@ -363,6 +581,34 @@ describe("backup", () => {
|
|||||||
expect(result.errors[0].fileID).toBe(101);
|
expect(result.errors[0].fileID).toBe(101);
|
||||||
expect(stderr.text).toBe("Starting backup...\n");
|
expect(stderr.text).toBe("Starting backup...\n");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("exits 1 with the error on one line when the refresh fails", async () => {
|
||||||
|
const client = {
|
||||||
|
...fakeClient(),
|
||||||
|
collectionsSince: async () => {
|
||||||
|
throw new Error("HTTP 401 from server");
|
||||||
|
},
|
||||||
|
} as unknown as Client;
|
||||||
|
const dir = join(root, "backup");
|
||||||
|
// Through `run`, as `bin/quak.ts` does, which prints a thrown error.
|
||||||
|
const runStderr = new PassThrough();
|
||||||
|
let runText = "";
|
||||||
|
runStderr.on("data", (chunk: Buffer) => {
|
||||||
|
runText += chunk.toString();
|
||||||
|
});
|
||||||
|
const code = await new Promise<number>((resolve) => {
|
||||||
|
void run(
|
||||||
|
backupCommand(context(client), dir, {}),
|
||||||
|
new PassThrough(),
|
||||||
|
runStderr,
|
||||||
|
resolve,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
expect(code).toBe(1);
|
||||||
|
expect(runText).toBe("quak: HTTP 401 from server\n");
|
||||||
|
expect(stderr.text).toBe("Starting backup...\nRefreshing library...\n");
|
||||||
|
expect(existsSync(join(dir, "originals"))).toBe(false);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("helper list-missing-thumbnails", () => {
|
describe("helper list-missing-thumbnails", () => {
|
||||||
@@ -395,3 +641,92 @@ describe("helper list-missing-thumbnails", () => {
|
|||||||
expect(stderr.text).toBe("");
|
expect(stderr.text).toBe("");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe("backup-metadata --exif", () => {
|
||||||
|
// Runs the command and returns what it printed to stderr.
|
||||||
|
const backupMetadata = async (opts: { exif?: boolean; all?: boolean }) => {
|
||||||
|
expect(
|
||||||
|
await backupMetadataCommand(context(), join(root, "dump"), opts),
|
||||||
|
).toBe(0);
|
||||||
|
return stderr.text;
|
||||||
|
};
|
||||||
|
|
||||||
|
it("--exif extracts EXIF", async () => {
|
||||||
|
expect(await backupMetadata({ exif: true })).toContain(
|
||||||
|
"[beach.jpg] Extracting EXIF...\n",
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("--all extracts EXIF", async () => {
|
||||||
|
expect(await backupMetadata({ all: true })).toContain(
|
||||||
|
"[beach.jpg] Extracting EXIF...\n",
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("without either flag extracts no EXIF", async () => {
|
||||||
|
expect(await backupMetadata({})).not.toContain("Extracting EXIF");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// Each test first runs `collections` so the cache holds the account as it was,
|
||||||
|
// then changes the server under it.
|
||||||
|
describe("backup-metadata and the thumbnail helpers refresh first", () => {
|
||||||
|
beforeEach(async () => {
|
||||||
|
expect(await collectionsCommand(context(), {})).toBe(0);
|
||||||
|
stdout.text = "";
|
||||||
|
stderr.text = "";
|
||||||
|
});
|
||||||
|
|
||||||
|
it("backup-metadata writes a file added since the cache was written", async () => {
|
||||||
|
const ctx = context(fakeClient({ withNewFile: true }));
|
||||||
|
const dir = join(root, "dump");
|
||||||
|
expect(await backupMetadataCommand(ctx, dir, {})).toBe(0);
|
||||||
|
expect(
|
||||||
|
existsSync(join(dir, "collections", "1-Vacation", "102.json")),
|
||||||
|
).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("list-missing-thumbnails checks a file added since the cache was written", async () => {
|
||||||
|
const ctx = context(
|
||||||
|
fakeClient({ withNewFile: true, emptyThumbID: 102 }),
|
||||||
|
);
|
||||||
|
expect(await listMissingThumbnailsCommand(ctx, {})).toBe(0);
|
||||||
|
expect(stdout.text).toBe(
|
||||||
|
"102\tnew.jpg\tVacation\tempty thumbnail (0 bytes)\n",
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("fix-missing-thumbnails finds a file added since the cache was written", async () => {
|
||||||
|
const ctx = context(fakeClient({ withNewFile: true }));
|
||||||
|
expect(
|
||||||
|
await fixMissingThumbnailsCommand(ctx, {
|
||||||
|
file: ["102"],
|
||||||
|
json: true,
|
||||||
|
}),
|
||||||
|
).toBe(0);
|
||||||
|
// Found, then skipped because the server records no thumbnail size
|
||||||
|
// for it; a file missing from the cache would fail as not found.
|
||||||
|
expect(JSON.parse(stdout.text)).toMatchObject([
|
||||||
|
{ fileID: 102, title: "new.jpg", status: "skipped" },
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
// `run` in `cli-run.ts` prints a thrown error as one line and exits 1.
|
||||||
|
it("all three throw when the refresh fails", async () => {
|
||||||
|
const ctx = context(
|
||||||
|
fakeClient({ refreshError: "HTTP 503 from server" }),
|
||||||
|
);
|
||||||
|
const dir = join(root, "dump");
|
||||||
|
await expect(backupMetadataCommand(ctx, dir, {})).rejects.toThrow(
|
||||||
|
"HTTP 503 from server",
|
||||||
|
);
|
||||||
|
expect(existsSync(dir)).toBe(false);
|
||||||
|
await expect(listMissingThumbnailsCommand(ctx, {})).rejects.toThrow(
|
||||||
|
"HTTP 503 from server",
|
||||||
|
);
|
||||||
|
await expect(
|
||||||
|
fixMissingThumbnailsCommand(ctx, { file: ["100"] }),
|
||||||
|
).rejects.toThrow("HTTP 503 from server");
|
||||||
|
expect(stdout.text).toBe("");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ import { join } from "node:path";
|
|||||||
import { tmpdir } from "node:os";
|
import { tmpdir } from "node:os";
|
||||||
import sodium from "libsodium-wrappers-sumo";
|
import sodium from "libsodium-wrappers-sumo";
|
||||||
import { SRP, SrpServer } from "fast-srp-hap";
|
import { SRP, SrpServer } from "fast-srp-hap";
|
||||||
import { beforeAll, afterAll, describe, expect, it } from "vitest";
|
import { beforeAll, afterAll, describe, expect, it, vi } from "vitest";
|
||||||
import {
|
import {
|
||||||
init,
|
init,
|
||||||
toBase64,
|
toBase64,
|
||||||
@@ -53,8 +53,16 @@ import {
|
|||||||
runMetadataBackup,
|
runMetadataBackup,
|
||||||
type MetadataBackupOptions,
|
type MetadataBackupOptions,
|
||||||
} from "../../src/metadata-backup.js";
|
} from "../../src/metadata-backup.js";
|
||||||
|
import { backupMetadataCommand } from "../../src/cli-commands.js";
|
||||||
import type { KeyAttributes } from "../../src/auth/types.js";
|
import type { KeyAttributes } from "../../src/auth/types.js";
|
||||||
|
|
||||||
|
// One file per ML data request, so the two files of the mock account are
|
||||||
|
// fetched in two requests and one of them can fail on its own.
|
||||||
|
vi.mock("../../src/mldata-fetch.js", async (importOriginal) => ({
|
||||||
|
...(await importOriginal<typeof import("../../src/mldata-fetch.js")>()),
|
||||||
|
MLDATA_BATCH_SIZE: 1,
|
||||||
|
}));
|
||||||
|
|
||||||
const TEST_EMAIL = "metabackup@example.com";
|
const TEST_EMAIL = "metabackup@example.com";
|
||||||
const TEST_PASSWORD = "metapass";
|
const TEST_PASSWORD = "metapass";
|
||||||
const TEST_OPS = 2;
|
const TEST_OPS = 2;
|
||||||
@@ -347,7 +355,8 @@ const buildMetaMock = async (): Promise<MetaMockState> => {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
const buildMetaFetch = (m: MetaMockState) => {
|
// `failMLDataFor`: answer 500 to every ML data request that asks for this file.
|
||||||
|
const buildMetaFetch = (m: MetaMockState, failMLDataFor?: number) => {
|
||||||
let srpServer: SrpServer;
|
let srpServer: SrpServer;
|
||||||
return (async (
|
return (async (
|
||||||
input: RequestInfo | URL,
|
input: RequestInfo | URL,
|
||||||
@@ -403,6 +412,8 @@ const buildMetaFetch = (m: MetaMockState) => {
|
|||||||
}
|
}
|
||||||
if (path === "/files/data/fetch") {
|
if (path === "/files/data/fetch") {
|
||||||
const body = JSON.parse(init?.body as string);
|
const body = JSON.parse(init?.body as string);
|
||||||
|
if ((body.fileIDs as number[]).includes(failMLDataFor!))
|
||||||
|
return new Response("server error", { status: 500 });
|
||||||
const data = (body.fileIDs as number[])
|
const data = (body.fileIDs as number[])
|
||||||
.filter((id: number) => m.encryptedMLData[id])
|
.filter((id: number) => m.encryptedMLData[id])
|
||||||
.map((id: number) => ({
|
.map((id: number) => ({
|
||||||
@@ -636,3 +647,63 @@ describe("quak backup-metadata", () => {
|
|||||||
expect(failedMeta.imageMetadataError).toEqual(expect.any(String));
|
expect(failedMeta.imageMetadataError).toEqual(expect.any(String));
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe("quak backup-metadata when an ML data request fails", () => {
|
||||||
|
// Run the CLI command against the mock and return its exit code, stderr
|
||||||
|
// and output directory.
|
||||||
|
const runCommand = async (failMLDataFor?: number) => {
|
||||||
|
const client = await Client.login({
|
||||||
|
email: TEST_EMAIL,
|
||||||
|
password: TEST_PASSWORD,
|
||||||
|
apiOptions: {
|
||||||
|
fetch: buildMetaFetch(mock, failMLDataFor),
|
||||||
|
retry: { sleep: async () => {} },
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const outDir = mkdtempSync(join(testDir, "ml-fail-"));
|
||||||
|
let stderr = "";
|
||||||
|
const code = await backupMetadataCommand(
|
||||||
|
{
|
||||||
|
stdout: { write: () => true },
|
||||||
|
stderr: { write: (text: string) => (stderr += text) },
|
||||||
|
sessionDir: testDir,
|
||||||
|
cacheDir: mkdtempSync(join(testDir, "cache-")),
|
||||||
|
loadSession: () => client,
|
||||||
|
},
|
||||||
|
outDir,
|
||||||
|
{},
|
||||||
|
);
|
||||||
|
return { code, stderr, outDir };
|
||||||
|
};
|
||||||
|
|
||||||
|
it("writes every file, marks the failed batch's files, and exits 1", async () => {
|
||||||
|
const { code, stderr, outDir } = await runCommand(200);
|
||||||
|
|
||||||
|
expect(code).toBe(1);
|
||||||
|
expect(stderr).toContain("ML data request for 1 file(s) failed");
|
||||||
|
|
||||||
|
const ok = JSON.parse(
|
||||||
|
readFileSync(
|
||||||
|
join(outDir, "collections", "10-Vacation", "100.json"),
|
||||||
|
"utf-8",
|
||||||
|
),
|
||||||
|
);
|
||||||
|
expect(ok.mlData.clip.embedding).toEqual([0.5, 0.6, 0.7]);
|
||||||
|
expect(ok.mlDataError).toBeUndefined();
|
||||||
|
|
||||||
|
const failed = JSON.parse(
|
||||||
|
readFileSync(
|
||||||
|
join(outDir, "collections", "20-__Work", "200.json"),
|
||||||
|
"utf-8",
|
||||||
|
),
|
||||||
|
);
|
||||||
|
expect(failed.metadata.title).toBe("diagram.png");
|
||||||
|
expect(failed.mlData).toBeUndefined();
|
||||||
|
expect(failed.mlDataError).toContain("500");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("exits 0 when every ML data request succeeds", async () => {
|
||||||
|
const { code } = await runCommand();
|
||||||
|
expect(code).toBe(0);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|||||||
@@ -0,0 +1,58 @@
|
|||||||
|
/**
|
||||||
|
* Tests for `run` in `src/cli-run.ts`, which every CLI command goes through.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { PassThrough } from "node:stream";
|
||||||
|
import { describe, it, expect } from "vitest";
|
||||||
|
|
||||||
|
import { run } from "../../src/cli-run.js";
|
||||||
|
|
||||||
|
// A stream whose written text is kept in `text`; writes finish at once, so
|
||||||
|
// nothing is left waiting to drain.
|
||||||
|
const collector = (): { stream: PassThrough; text: () => string } => {
|
||||||
|
const stream = new PassThrough();
|
||||||
|
const chunks: string[] = [];
|
||||||
|
stream.on("data", (chunk: Buffer) => chunks.push(chunk.toString()));
|
||||||
|
return { stream, text: () => chunks.join("") };
|
||||||
|
};
|
||||||
|
|
||||||
|
const runToExit = async (
|
||||||
|
command: Promise<number>,
|
||||||
|
): Promise<{ code: number; stdout: string; stderr: string }> => {
|
||||||
|
const stdout = collector();
|
||||||
|
const stderr = collector();
|
||||||
|
const code = await new Promise<number>((resolve) => {
|
||||||
|
void run(command, stdout.stream, stderr.stream, resolve);
|
||||||
|
});
|
||||||
|
return { code, stdout: stdout.text(), stderr: stderr.text() };
|
||||||
|
};
|
||||||
|
|
||||||
|
describe("run", () => {
|
||||||
|
it("exits with the code the command returns", async () => {
|
||||||
|
const result = await runToExit(Promise.resolve(3));
|
||||||
|
expect(result).toEqual({ code: 3, stdout: "", stderr: "" });
|
||||||
|
});
|
||||||
|
|
||||||
|
it("prints a thrown error as one line without a stack trace and exits 1", async () => {
|
||||||
|
const failing = async (): Promise<number> => {
|
||||||
|
throw new Error(
|
||||||
|
"ENOTDIR: not a directory, mkdir '/dev/null/x/originals'",
|
||||||
|
);
|
||||||
|
};
|
||||||
|
const result = await runToExit(failing());
|
||||||
|
expect(result.code).toBe(1);
|
||||||
|
expect(result.stdout).toBe("");
|
||||||
|
expect(result.stderr).toBe(
|
||||||
|
"quak: ENOTDIR: not a directory, mkdir '/dev/null/x/originals'\n",
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("prints a thrown value that is not an Error", async () => {
|
||||||
|
const result = await runToExit(Promise.reject("offline"));
|
||||||
|
expect(result).toEqual({
|
||||||
|
code: 1,
|
||||||
|
stdout: "",
|
||||||
|
stderr: "quak: offline\n",
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
import { beforeAll, describe, expect, it } from "vitest";
|
||||||
|
import {
|
||||||
|
chunkHashFinal,
|
||||||
|
chunkHashInit,
|
||||||
|
chunkHashUpdate,
|
||||||
|
init,
|
||||||
|
} from "../../src/crypto/index.js";
|
||||||
|
|
||||||
|
beforeAll(async () => {
|
||||||
|
await init();
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("content hash", () => {
|
||||||
|
// RFC 7693 Appendix A: BLAKE2b-512 of "abc".
|
||||||
|
const abc = Buffer.from(
|
||||||
|
"ba80a53f981c4d0d6a2797b69f12f6e94c212f14685ac4b74b12bb6fdbffa2d1" +
|
||||||
|
"7d87c5392aab792dc252d5de4533cc9518d38aa8dbf1925ab92386edd4009923",
|
||||||
|
"hex",
|
||||||
|
).toString("base64");
|
||||||
|
|
||||||
|
it("is unkeyed BLAKE2b-512 in standard base64", () => {
|
||||||
|
const state = chunkHashInit();
|
||||||
|
chunkHashUpdate(state, new TextEncoder().encode("abc"));
|
||||||
|
expect(chunkHashFinal(state)).toBe(abc);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("gives the same hash when the input arrives in chunks", () => {
|
||||||
|
const state = chunkHashInit();
|
||||||
|
chunkHashUpdate(state, new TextEncoder().encode("a"));
|
||||||
|
chunkHashUpdate(state, new TextEncoder().encode("bc"));
|
||||||
|
expect(chunkHashFinal(state)).toBe(abc);
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -29,10 +29,10 @@ describe("crypto.deriveKEK (Argon2id)", () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Cheap parameters used so the test suite stays under the 30-second
|
* Cheap parameters used so the test suite stays under the 90-second
|
||||||
* budget. The real production parameters Ente uses are larger
|
* `timeout` in the `test` phase of the `Dockerfile`. The real production
|
||||||
* (memLimit up to 1 GiB, opsLimit 3-16). The algorithm is the same
|
* parameters Ente uses are larger (memLimit up to 1 GiB, opsLimit 3-16).
|
||||||
* regardless of parameters.
|
* The algorithm is the same regardless of parameters.
|
||||||
*/
|
*/
|
||||||
const TEST_OPS = 2;
|
const TEST_OPS = 2;
|
||||||
const TEST_MEM = 64 * 1024 * 1024; // 64 MiB
|
const TEST_MEM = 64 * 1024 * 1024; // 64 MiB
|
||||||
|
|||||||
+203
-27
@@ -61,6 +61,7 @@ import { dirname, join } from "node:path";
|
|||||||
import { tmpdir } from "node:os";
|
import { tmpdir } from "node:os";
|
||||||
import { createHash } from "node:crypto";
|
import { createHash } from "node:crypto";
|
||||||
import sodium from "libsodium-wrappers-sumo";
|
import sodium from "libsodium-wrappers-sumo";
|
||||||
|
import { zipSync } from "fflate";
|
||||||
import {
|
import {
|
||||||
beforeAll,
|
beforeAll,
|
||||||
beforeEach,
|
beforeEach,
|
||||||
@@ -188,7 +189,31 @@ vi.mock("node:fs/promises", async (importOriginal) => {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* `chunkHashUpdate` is wrapped to record the length of every piece hashed, so
|
||||||
|
* a test can show that a live photo entry reaches the hash in pieces far
|
||||||
|
* smaller than the entry, rather than decompressed whole first.
|
||||||
|
*/
|
||||||
|
const hashHook = vi.hoisted(() => ({
|
||||||
|
lengths: [] as number[],
|
||||||
|
}));
|
||||||
|
|
||||||
|
vi.mock("../../src/crypto/index.js", async (importOriginal) => {
|
||||||
|
const actual =
|
||||||
|
await importOriginal<typeof import("../../src/crypto/index.js")>();
|
||||||
|
return {
|
||||||
|
...actual,
|
||||||
|
chunkHashUpdate: (
|
||||||
|
...args: Parameters<typeof actual.chunkHashUpdate>
|
||||||
|
): void => {
|
||||||
|
hashHook.lengths.push(args[1].length);
|
||||||
|
actual.chunkHashUpdate(...args);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
|
hashHook.lengths.length = 0;
|
||||||
renameHook.calls.length = 0;
|
renameHook.calls.length = 0;
|
||||||
renameHook.failWith = null;
|
renameHook.failWith = null;
|
||||||
durabilityHook.events.length = 0;
|
durabilityHook.events.length = 0;
|
||||||
@@ -223,7 +248,8 @@ afterAll(() => {
|
|||||||
* `sodium.randombytes_buf` goes through the wasm wrapper a byte at a time and
|
* `sodium.randombytes_buf` goes through the wasm wrapper a byte at a time and
|
||||||
* costs roughly 20 seconds for the 4 MiB chunk below — about two hundred
|
* costs roughly 20 seconds for the 4 MiB chunk below — about two hundred
|
||||||
* times what it costs to encrypt the same buffer, and on its own enough to
|
* times what it costs to encrypt the same buffer, and on its own enough to
|
||||||
* push `make test` past the 30-second cap in `script/test`. This loop fills
|
* push `make test` past the 90-second `timeout` in the `test` phase of the
|
||||||
|
* `Dockerfile`. This loop fills
|
||||||
* 4 MiB in a few milliseconds.
|
* 4 MiB in a few milliseconds.
|
||||||
*/
|
*/
|
||||||
const patternBytes = (length: number, seed: number): Uint8Array => {
|
const patternBytes = (length: number, seed: number): Uint8Array => {
|
||||||
@@ -1009,32 +1035,28 @@ describe.each(entryPoints)(
|
|||||||
expect(readdirSync(dir)).toEqual([]);
|
expect(readdirSync(dir)).toEqual([]);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Root ignores directory permissions, so this cannot fail as root
|
// Root ignores directory permissions, so this fails when run as root.
|
||||||
// (the Docker test image runs as root).
|
// The `test` phase of the `Dockerfile` runs as the `node` user.
|
||||||
it.skipIf(process.getuid?.() === 0)(
|
it("fails without creating anything when the destination directory is not writable", async () => {
|
||||||
"fails without creating anything when the destination directory is not writable",
|
const key = sodium.crypto_secretstream_xchacha20poly1305_keygen();
|
||||||
async () => {
|
const { header, ciphertext } = encryptFileBody(
|
||||||
const key =
|
patternBytes(64, 34),
|
||||||
sodium.crypto_secretstream_xchacha20poly1305_keygen();
|
key,
|
||||||
const { header, ciphertext } = encryptFileBody(
|
);
|
||||||
patternBytes(64, 34),
|
const { api, file } = fixtureFor(key, header, ciphertext);
|
||||||
key,
|
const dir = freshDir();
|
||||||
);
|
const outPath = join(dir, "never.bin");
|
||||||
const { api, file } = fixtureFor(key, header, ciphertext);
|
chmodSync(dir, 0o500);
|
||||||
const dir = freshDir();
|
try {
|
||||||
const outPath = join(dir, "never.bin");
|
await expect(
|
||||||
chmodSync(dir, 0o500);
|
download(api, file, outPath),
|
||||||
try {
|
).rejects.toMatchObject({ code: "EACCES" });
|
||||||
await expect(
|
} finally {
|
||||||
download(api, file, outPath),
|
chmodSync(dir, 0o700);
|
||||||
).rejects.toMatchObject({ code: "EACCES" });
|
}
|
||||||
} finally {
|
|
||||||
chmodSync(dir, 0o700);
|
|
||||||
}
|
|
||||||
|
|
||||||
expect(readdirSync(dir)).toEqual([]);
|
expect(readdirSync(dir)).toEqual([]);
|
||||||
},
|
});
|
||||||
);
|
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -1538,7 +1560,13 @@ describe("writeAtomic", () => {
|
|||||||
// directory so that new entry is on disk too. Do the directory fsync
|
// directory so that new entry is on disk too. Do the directory fsync
|
||||||
// before the rename, or skip it, and a crash can lose the rename.
|
// before the rename, or skip it, and a crash can lose the rename.
|
||||||
expect(durabilityHook.events).toHaveLength(3);
|
expect(durabilityHook.events).toHaveLength(3);
|
||||||
expect(durabilityHook.events[0]).toMatch(/^sync:w:.*\.tmp$/);
|
// The temp name carries this process's ID, so a library opening the
|
||||||
|
// same cache can tell a write in progress from a leftover.
|
||||||
|
const tempSync = durabilityHook.events[0]!;
|
||||||
|
expect(tempSync.startsWith(`sync:w:${dir}/`)).toBe(true);
|
||||||
|
expect(tempSync.slice(`sync:w:${dir}/`.length)).toMatch(
|
||||||
|
new RegExp(`^\\.quak-${process.pid}-[0-9a-f]{32}\\.tmp$`),
|
||||||
|
);
|
||||||
expect(durabilityHook.events[1]).toBe(`rename:${dest}`);
|
expect(durabilityHook.events[1]).toBe(`rename:${dest}`);
|
||||||
expect(durabilityHook.events[2]).toBe(`sync:r:${dir}`);
|
expect(durabilityHook.events[2]).toBe(`sync:r:${dir}`);
|
||||||
});
|
});
|
||||||
@@ -1613,3 +1641,151 @@ describe.each(entryPoints)("$name progress", ({ name, download }) => {
|
|||||||
expectSameBytes(readFileSync(outPath), plaintext);
|
expectSameBytes(readFileSync(outPath), plaintext);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe("downloadFile content hash", () => {
|
||||||
|
// Node's own BLAKE2b-512 is the reference, so these tests do not depend
|
||||||
|
// on the code under test to compute what they expect.
|
||||||
|
const blake2b = (bytes: Uint8Array): string =>
|
||||||
|
createHash("blake2b512").update(bytes).digest("base64");
|
||||||
|
|
||||||
|
// Serve `plaintext` encrypted as file 999 with the given metadata. Four
|
||||||
|
// responses are scripted so a retried mismatch would show in `requests`.
|
||||||
|
const setup = (plaintext: Uint8Array, metadata: Partial<FileMetadata>) => {
|
||||||
|
const key = sodium.crypto_secretstream_xchacha20poly1305_keygen();
|
||||||
|
const { header, ciphertext } = encryptFileBody(plaintext, key);
|
||||||
|
const file = buildMockEnteFile(key, header, header);
|
||||||
|
file.metadata = { ...file.metadata, ...metadata };
|
||||||
|
const body = { kind: "body", bytes: ciphertext } as const;
|
||||||
|
const { fetch, requests } = scriptedCdnFetch(body, body, body, body);
|
||||||
|
const api = new ApiClient({ fetch, retry: { ...noWait, attempts: 4 } });
|
||||||
|
const dir = mkdtempSync(join(testDir, "hash-"));
|
||||||
|
const outPath = join(dir, "f.bin");
|
||||||
|
return {
|
||||||
|
run: () => downloadFile(api, file, outPath),
|
||||||
|
dir,
|
||||||
|
outPath,
|
||||||
|
requests,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
const livePhotoZip = zipSync({
|
||||||
|
"image.heic": patternBytes(500, 81),
|
||||||
|
"video.mov": patternBytes(900, 82),
|
||||||
|
});
|
||||||
|
const livePhotoHash = `${blake2b(patternBytes(500, 81))}:${blake2b(patternBytes(900, 82))}`;
|
||||||
|
|
||||||
|
it("stores a file whose hash matches", async () => {
|
||||||
|
const plaintext = patternBytes(700, 80);
|
||||||
|
const t = setup(plaintext, { hash: blake2b(plaintext) });
|
||||||
|
|
||||||
|
await t.run();
|
||||||
|
|
||||||
|
expectSameBytes(readFileSync(t.outPath), plaintext);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("rejects a mismatch, stores nothing, names the file and does not retry", async () => {
|
||||||
|
const t = setup(patternBytes(700, 80), {
|
||||||
|
hash: blake2b(patternBytes(700, 79)),
|
||||||
|
});
|
||||||
|
|
||||||
|
await expect(t.run()).rejects.toThrow(
|
||||||
|
/file 999: content hash .* does not match/,
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(readdirSync(t.dir)).toEqual([]);
|
||||||
|
expect(t.requests()).toBe(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("stores a file with no recorded hash unchecked", async () => {
|
||||||
|
const plaintext = patternBytes(700, 80);
|
||||||
|
const t = setup(plaintext, { hash: undefined });
|
||||||
|
|
||||||
|
await t.run();
|
||||||
|
|
||||||
|
expectSameBytes(readFileSync(t.outPath), plaintext);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("stores a live photo whose image and video hashes match", async () => {
|
||||||
|
const t = setup(livePhotoZip, {
|
||||||
|
fileType: "livePhoto",
|
||||||
|
hash: livePhotoHash,
|
||||||
|
});
|
||||||
|
|
||||||
|
await t.run();
|
||||||
|
|
||||||
|
expectSameBytes(readFileSync(t.outPath), livePhotoZip);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("hashes a large live photo entry as it decompresses, never whole", async () => {
|
||||||
|
// 64 MiB of zeros deflates to a few kilobytes, the shape of a ZIP
|
||||||
|
// that would exhaust memory if expanded whole.
|
||||||
|
const image = new Uint8Array(64 * 1024 * 1024);
|
||||||
|
const video = patternBytes(900, 83);
|
||||||
|
const zip = zipSync({ "image.heic": image, "video.mov": video });
|
||||||
|
const t = setup(zip, {
|
||||||
|
fileType: "livePhoto",
|
||||||
|
hash: `${blake2b(image)}:${blake2b(video)}`,
|
||||||
|
});
|
||||||
|
|
||||||
|
await t.run();
|
||||||
|
|
||||||
|
expectSameBytes(readFileSync(t.outPath), zip);
|
||||||
|
const hashed = hashHook.lengths.reduce((a, b) => a + b, 0);
|
||||||
|
expect(hashed).toBe(image.length + video.length);
|
||||||
|
expect(Math.max(...hashHook.lengths)).toBeLessThanOrEqual(
|
||||||
|
2 * STREAM_CHUNK_SIZE,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("rejects a live photo whose hash does not match", async () => {
|
||||||
|
// The whole ZIP's hash is not the recorded one: each part is hashed.
|
||||||
|
const t = setup(livePhotoZip, {
|
||||||
|
fileType: "livePhoto",
|
||||||
|
hash: blake2b(livePhotoZip),
|
||||||
|
});
|
||||||
|
|
||||||
|
await expect(t.run()).rejects.toThrow(
|
||||||
|
/file 999: content hash .* does not match/,
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(readdirSync(t.dir)).toEqual([]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("rejects a live photo that is not a readable ZIP and does not retry", async () => {
|
||||||
|
// Bytes 8-9 of a ZIP entry's local header name its compression
|
||||||
|
// method; 99 is one no reader knows, so the entry cannot be read.
|
||||||
|
const zip = livePhotoZip.slice();
|
||||||
|
zip[8] = 99;
|
||||||
|
zip[9] = 0;
|
||||||
|
const t = setup(zip, { fileType: "livePhoto", hash: livePhotoHash });
|
||||||
|
|
||||||
|
await expect(t.run()).rejects.toThrow(
|
||||||
|
/file 999: live photo is not a readable ZIP/,
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(readdirSync(t.dir)).toEqual([]);
|
||||||
|
expect(t.requests()).toBe(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("rejects a live photo ZIP with no image entry", async () => {
|
||||||
|
const zip = zipSync({ "video.mov": patternBytes(900, 82) });
|
||||||
|
const t = setup(zip, { fileType: "livePhoto", hash: livePhotoHash });
|
||||||
|
|
||||||
|
await expect(t.run()).rejects.toThrow(
|
||||||
|
/file 999: live photo ZIP does not hold both an image and a video/,
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(readdirSync(t.dir)).toEqual([]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("rejects a live photo ZIP with no video entry", async () => {
|
||||||
|
const zip = zipSync({ "image.heic": patternBytes(500, 81) });
|
||||||
|
const t = setup(zip, { fileType: "livePhoto", hash: livePhotoHash });
|
||||||
|
|
||||||
|
await expect(t.run()).rejects.toThrow(
|
||||||
|
/file 999: live photo ZIP does not hold both an image and a video/,
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(readdirSync(t.dir)).toEqual([]);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ import {
|
|||||||
mkdirSync,
|
mkdirSync,
|
||||||
statSync,
|
statSync,
|
||||||
} from "node:fs";
|
} from "node:fs";
|
||||||
|
import { spawnSync } from "node:child_process";
|
||||||
import { tmpdir } from "node:os";
|
import { tmpdir } from "node:os";
|
||||||
import { join } from "node:path";
|
import { join } from "node:path";
|
||||||
|
|
||||||
@@ -161,15 +162,28 @@ describe("ContentCache.open", () => {
|
|||||||
expect(statSync(thumbnails).mode & 0o777).toBe(0o700);
|
expect(statSync(thumbnails).mode & 0o777).toBe(0o700);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("reaps orphan temp files but keeps complete content", async () => {
|
it("removes temp files of an exited process, keeping those of a running one and complete content", async () => {
|
||||||
const originals = join(cacheDir, "originals");
|
const originals = join(cacheDir, "originals");
|
||||||
const thumbnails = join(cacheDir, "thumbnails");
|
const thumbnails = join(cacheDir, "thumbnails");
|
||||||
mkdirSync(originals, { recursive: true });
|
mkdirSync(originals, { recursive: true });
|
||||||
mkdirSync(thumbnails, { recursive: true });
|
mkdirSync(thumbnails, { recursive: true });
|
||||||
const orphan = join(originals, ".quak-abc123.tmp");
|
// A child that has already exited: its process ID is not running.
|
||||||
|
const exitedPID = spawnSync(process.execPath, ["-e", ""]).pid;
|
||||||
|
const orphan = join(originals, `.quak-${exitedPID}-abc123.tmp`);
|
||||||
|
const orphanThumb = join(thumbnails, `.quak-${exitedPID}-abc456.tmp`);
|
||||||
|
// This test's own process stands in for another process still
|
||||||
|
// downloading into the same cache.
|
||||||
|
const inProgress = join(originals, `.quak-${process.pid}-def123.tmp`);
|
||||||
|
const inProgressThumb = join(
|
||||||
|
thumbnails,
|
||||||
|
`.quak-${process.pid}-def456.tmp`,
|
||||||
|
);
|
||||||
const complete = join(originals, "1.jpg");
|
const complete = join(originals, "1.jpg");
|
||||||
const thumb = join(thumbnails, "2.jpg");
|
const thumb = join(thumbnails, "2.jpg");
|
||||||
writeFileSync(orphan, "half-written");
|
writeFileSync(orphan, "half-written");
|
||||||
|
writeFileSync(orphanThumb, "half-written");
|
||||||
|
writeFileSync(inProgress, "half-written");
|
||||||
|
writeFileSync(inProgressThumb, "half-written");
|
||||||
writeFileSync(complete, "whole");
|
writeFileSync(complete, "whole");
|
||||||
writeFileSync(thumb, "whole-thumb");
|
writeFileSync(thumb, "whole-thumb");
|
||||||
|
|
||||||
@@ -177,8 +191,12 @@ describe("ContentCache.open", () => {
|
|||||||
await cache.open();
|
await cache.open();
|
||||||
|
|
||||||
expect(existsSync(orphan)).toBe(false);
|
expect(existsSync(orphan)).toBe(false);
|
||||||
|
expect(existsSync(orphanThumb)).toBe(false);
|
||||||
|
expect(existsSync(inProgress)).toBe(true);
|
||||||
|
expect(existsSync(inProgressThumb)).toBe(true);
|
||||||
expect(existsSync(complete)).toBe(true);
|
expect(existsSync(complete)).toBe(true);
|
||||||
expect(existsSync(thumb)).toBe(true);
|
expect(existsSync(thumb)).toBe(true);
|
||||||
|
expect(cache.pathsFor(1)).toEqual({ originalPath: complete });
|
||||||
});
|
});
|
||||||
|
|
||||||
it("records already-cached files so their paths appear in pathsFor", async () => {
|
it("records already-cached files so their paths appear in pathsFor", async () => {
|
||||||
|
|||||||
@@ -13,6 +13,8 @@
|
|||||||
* 2. `Library` wiring: after each refresh the library fetches ML data through
|
* 2. `Library` wiring: after each refresh the library fetches ML data through
|
||||||
* the metadata pool for every known file not yet cached, is incremental on
|
* the metadata pool for every known file not yet cached, is incremental on
|
||||||
* later refreshes, and refetches a file whose `updationTime` advanced.
|
* later refreshes, and refetches a file whose `updationTime` advanced.
|
||||||
|
* Opening a cache directory written by another account starts empty,
|
||||||
|
* its ML data included (issue #104).
|
||||||
*
|
*
|
||||||
* Embedding values are chosen to be exactly representable as float32 so the
|
* Embedding values are chosen to be exactly representable as float32 so the
|
||||||
* round-trip through `clip.f32` compares equal.
|
* round-trip through `clip.f32` compares equal.
|
||||||
@@ -498,4 +500,63 @@ describe("Library ML-data fetch on refresh", () => {
|
|||||||
await lib.close();
|
await lib.close();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("starts empty when the cache directory holds another account's cache", async () => {
|
||||||
|
// Account A fills the cache directory: metadata and ML data.
|
||||||
|
const clientA = new MLMockClient();
|
||||||
|
clientA.collectionsQueue.push({
|
||||||
|
collections: [collection(1, 100)],
|
||||||
|
deleted: [],
|
||||||
|
cursor: 100,
|
||||||
|
});
|
||||||
|
clientA.filesFor(1, {
|
||||||
|
files: [file(1001, 1, 90)],
|
||||||
|
deleted: [],
|
||||||
|
cursor: 90,
|
||||||
|
});
|
||||||
|
clientA.mlByFile.set(1001, payload([0.5, 0.25, 0.75]));
|
||||||
|
const libA = await Library.open({
|
||||||
|
client: clientA,
|
||||||
|
cacheDirectory,
|
||||||
|
refreshIntervalSeconds: 3600,
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
await vi.waitFor(
|
||||||
|
() => expect(libA.status().lastMLFetchAt).toBeGreaterThan(0),
|
||||||
|
{ timeout: 2000, interval: 5 },
|
||||||
|
);
|
||||||
|
} finally {
|
||||||
|
await libA.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Account B opens the same directory.
|
||||||
|
const clientB = new MLMockClient();
|
||||||
|
clientB.userID = USER_ID + 1;
|
||||||
|
const sinceTimes: number[] = [];
|
||||||
|
const realCollectionsSince = clientB.collectionsSince.bind(clientB);
|
||||||
|
clientB.collectionsSince = async (args) => {
|
||||||
|
sinceTimes.push(args.sinceTime);
|
||||||
|
return realCollectionsSince(args);
|
||||||
|
};
|
||||||
|
const libB = await Library.open({
|
||||||
|
client: clientB,
|
||||||
|
cacheDirectory,
|
||||||
|
refreshIntervalSeconds: 3600,
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
expect(sinceTimes[0]).toBe(0);
|
||||||
|
expect(libB.status().userID).toBe(USER_ID + 1);
|
||||||
|
expect(libB.listCollections()).toEqual([]);
|
||||||
|
expect(libB.getFile(1, 1001)).toBeUndefined();
|
||||||
|
expect(await libB.mldata.forFile({ fileID: 1001 })).toBeUndefined();
|
||||||
|
expect(
|
||||||
|
libB.mldata.searchByEmbedding({ embedding: [0.5, 0.25, 0.75] }),
|
||||||
|
).toEqual([]);
|
||||||
|
expect(
|
||||||
|
existsSync(join(cacheDirectory, "mldata", "1001.json")),
|
||||||
|
).toBe(false);
|
||||||
|
} finally {
|
||||||
|
await libB.close();
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -351,6 +351,46 @@ describe("model.decryptFile", () => {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("reads the recorded content hash, joining an older live photo's two parts", () => {
|
||||||
|
const masterKey = sodium.crypto_secretbox_keygen();
|
||||||
|
const { collectionKey } = buildRawCollection(masterKey);
|
||||||
|
const hashOf = (metadata: Record<string, unknown>) =>
|
||||||
|
decryptFile(
|
||||||
|
buildRawFile(collectionKey, {
|
||||||
|
metadata: { title: "x", ...metadata },
|
||||||
|
}),
|
||||||
|
collectionKey,
|
||||||
|
).metadata.hash;
|
||||||
|
|
||||||
|
expect(hashOf({ fileType: 0, hash: "H" })).toBe("H");
|
||||||
|
expect(
|
||||||
|
hashOf({ fileType: 2, hash: "H", imageHash: "I", videoHash: "V" }),
|
||||||
|
).toBe("H");
|
||||||
|
expect(hashOf({ fileType: 2, imageHash: "I", videoHash: "V" })).toBe(
|
||||||
|
"I:V",
|
||||||
|
);
|
||||||
|
expect(hashOf({ fileType: 2, imageHash: "I" })).toBeUndefined();
|
||||||
|
expect(
|
||||||
|
hashOf({ fileType: 0, imageHash: "I", videoHash: "V" }),
|
||||||
|
).toBeUndefined();
|
||||||
|
expect(hashOf({ fileType: 0 })).toBeUndefined();
|
||||||
|
expect(hashOf({ fileType: 0, hash: 42 })).toBeUndefined();
|
||||||
|
expect(
|
||||||
|
hashOf({ fileType: 2, imageHash: "I", videoHash: 7 }),
|
||||||
|
).toBeUndefined();
|
||||||
|
// An empty string counts as absent, not as a hash to match.
|
||||||
|
expect(hashOf({ fileType: 0, hash: "" })).toBeUndefined();
|
||||||
|
expect(
|
||||||
|
hashOf({ fileType: 2, hash: "", imageHash: "I", videoHash: "V" }),
|
||||||
|
).toBe("I:V");
|
||||||
|
expect(
|
||||||
|
hashOf({ fileType: 2, imageHash: "", videoHash: "V" }),
|
||||||
|
).toBeUndefined();
|
||||||
|
expect(
|
||||||
|
hashOf({ fileType: 2, imageHash: "I", videoHash: "" }),
|
||||||
|
).toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
it("maps fileType numbers to FileType strings", () => {
|
it("maps fileType numbers to FileType strings", () => {
|
||||||
// Ente uses: 0=image, 1=video, 2=livePhoto
|
// Ente uses: 0=image, 1=video, 2=livePhoto
|
||||||
const masterKey = sodium.crypto_secretbox_keygen();
|
const masterKey = sodium.crypto_secretbox_keygen();
|
||||||
|
|||||||
@@ -215,6 +215,9 @@ const buildThumbMock = async (opts?: {
|
|||||||
thumbnail: {
|
thumbnail: {
|
||||||
decryptionHeader: toBase64(sodium.randombytes_buf(24)),
|
decryptionHeader: toBase64(sodium.randombytes_buf(24)),
|
||||||
},
|
},
|
||||||
|
// The encrypted size of the thumbnail the server records; large
|
||||||
|
// enough here that the default encoding fits.
|
||||||
|
info: { thumbSize: 1_000_000 },
|
||||||
updationTime: TEST_TIME,
|
updationTime: TEST_TIME,
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@@ -446,6 +449,32 @@ const openLib = (client: Client): Promise<Library> =>
|
|||||||
precacheOriginals: false,
|
precacheOriginals: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/** The mock's raw record for one file, for a test to change before login. */
|
||||||
|
const rawFile = (m: ThumbMockState, fileID: number): Record<string, unknown> =>
|
||||||
|
m.filesByCollection[1]!.find((f) => f.id === fileID)!;
|
||||||
|
|
||||||
|
/** Replace the original the mock serves for one file. */
|
||||||
|
const replaceOriginal = (
|
||||||
|
m: ThumbMockState,
|
||||||
|
fileID: number,
|
||||||
|
body: Uint8Array,
|
||||||
|
): void => {
|
||||||
|
const push = sodium.crypto_secretstream_xchacha20poly1305_init_push(
|
||||||
|
m.fileKeys[fileID]!,
|
||||||
|
);
|
||||||
|
m.fileCiphertexts[fileID] =
|
||||||
|
sodium.crypto_secretstream_xchacha20poly1305_push(
|
||||||
|
push.state,
|
||||||
|
body,
|
||||||
|
null,
|
||||||
|
sodium.crypto_secretstream_xchacha20poly1305_TAG_FINAL,
|
||||||
|
);
|
||||||
|
rawFile(m, fileID).file = { decryptionHeader: toBase64(push.header) };
|
||||||
|
};
|
||||||
|
|
||||||
|
const isOriginalDownload = (url: string): boolean =>
|
||||||
|
url.includes("files.ente.io") || url.includes("/files/download/");
|
||||||
|
|
||||||
const login = (fetch: typeof globalThis.fetch, retry?: RetryOptions) =>
|
const login = (fetch: typeof globalThis.fetch, retry?: RetryOptions) =>
|
||||||
Client.login({
|
Client.login({
|
||||||
email: TEST_EMAIL,
|
email: TEST_EMAIL,
|
||||||
@@ -581,6 +610,33 @@ describe("listMissingThumbnails", () => {
|
|||||||
// Should still be 2, not 4 (each file checked only once)
|
// Should still be 2, not 4 (each file checked only once)
|
||||||
expect(missing.length).toBe(2);
|
expect(missing.length).toBe(2);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("skips a file another account owns without fetching its thumbnail", async () => {
|
||||||
|
const otherMock = await buildThumbMock();
|
||||||
|
rawFile(otherMock, 102).ownerID = 7;
|
||||||
|
const logs: string[] = [];
|
||||||
|
const counted = countingFetch(
|
||||||
|
buildThumbFetch(otherMock),
|
||||||
|
(url) => url.includes("thumbnails.ente.io") && url.includes("102"),
|
||||||
|
);
|
||||||
|
const client = await login(counted.fetch);
|
||||||
|
const lib = await openLib(client);
|
||||||
|
|
||||||
|
const missing = await listMissingThumbnails(lib, client, (msg) =>
|
||||||
|
logs.push(msg),
|
||||||
|
);
|
||||||
|
lib.close();
|
||||||
|
|
||||||
|
expect(missing.map((m) => m.fileID)).toEqual([101]);
|
||||||
|
expect(counted.matched()).toBe(0);
|
||||||
|
expect(
|
||||||
|
logs.some(
|
||||||
|
(l) =>
|
||||||
|
l.includes("Skipping file-102.jpg") &&
|
||||||
|
l.includes("another account"),
|
||||||
|
),
|
||||||
|
).toBe(true);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("fixMissingThumbnails", () => {
|
describe("fixMissingThumbnails", () => {
|
||||||
@@ -688,6 +744,93 @@ describe("fixMissingThumbnails", () => {
|
|||||||
expect(fixMock.uploadedThumbnails.length).toBe(1);
|
expect(fixMock.uploadedThumbnails.length).toBe(1);
|
||||||
expect(fixMock.uploadedThumbnails[0]!.fileID).toBe(101);
|
expect(fixMock.uploadedThumbnails[0]!.fileID).toBe(101);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("skips a file another account owns without downloading it", async () => {
|
||||||
|
// The server accepts a thumbnail only from the file's owner.
|
||||||
|
const fixMock = await buildThumbMock();
|
||||||
|
rawFile(fixMock, 101).ownerID = 7;
|
||||||
|
const counted = countingFetch(
|
||||||
|
buildThumbFetch(fixMock),
|
||||||
|
isOriginalDownload,
|
||||||
|
);
|
||||||
|
const client = await login(counted.fetch);
|
||||||
|
const lib = await openLib(client);
|
||||||
|
|
||||||
|
const results = await fixMissingThumbnails(lib, client, [101]);
|
||||||
|
lib.close();
|
||||||
|
|
||||||
|
expect(results[0]!.status).toBe("skipped");
|
||||||
|
expect(results[0]!.reason).toContain("another account");
|
||||||
|
expect(counted.matched()).toBe(0);
|
||||||
|
expect(fixMock.uploadedThumbnails.length).toBe(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("skips a file whose recorded thumbnail size is 0 without downloading it", async () => {
|
||||||
|
// The server refuses a thumbnail larger than the one it records, and
|
||||||
|
// no thumbnail is 0 bytes.
|
||||||
|
const fixMock = await buildThumbMock();
|
||||||
|
rawFile(fixMock, 101).info = { thumbSize: 0 };
|
||||||
|
const counted = countingFetch(
|
||||||
|
buildThumbFetch(fixMock),
|
||||||
|
isOriginalDownload,
|
||||||
|
);
|
||||||
|
const client = await login(counted.fetch);
|
||||||
|
const lib = await openLib(client);
|
||||||
|
|
||||||
|
const results = await fixMissingThumbnails(lib, client, [101]);
|
||||||
|
lib.close();
|
||||||
|
|
||||||
|
expect(results[0]!.status).toBe("skipped");
|
||||||
|
expect(results[0]!.reason).toContain("recorded thumbnail size is 0");
|
||||||
|
expect(counted.matched()).toBe(0);
|
||||||
|
expect(fixMock.uploadedThumbnails.length).toBe(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("re-encodes smaller until the thumbnail fits the recorded size", async () => {
|
||||||
|
// A noisy 400x300 JPEG, which the default encoding (quality 50, not
|
||||||
|
// resized because it is under 720 px) cannot compress below the size
|
||||||
|
// recorded here: one byte less than that encoding's ciphertext.
|
||||||
|
const fixMock = await buildThumbMock();
|
||||||
|
const w = 400;
|
||||||
|
const h = 300;
|
||||||
|
const noisy = new Uint8Array(
|
||||||
|
jpegJs.encode(
|
||||||
|
{
|
||||||
|
data: sodium.randombytes_buf(w * h * 4),
|
||||||
|
width: w,
|
||||||
|
height: h,
|
||||||
|
},
|
||||||
|
90,
|
||||||
|
).data,
|
||||||
|
);
|
||||||
|
replaceOriginal(fixMock, 101, noisy);
|
||||||
|
const decoded = jpegJs.decode(noisy, {
|
||||||
|
useTArray: true,
|
||||||
|
formatAsRGBA: true,
|
||||||
|
});
|
||||||
|
const defaultSize =
|
||||||
|
jpegJs.encode(decoded, 50).data.length +
|
||||||
|
sodium.crypto_secretstream_xchacha20poly1305_ABYTES;
|
||||||
|
const recordedSize = defaultSize - 1;
|
||||||
|
rawFile(fixMock, 101).info = { thumbSize: recordedSize };
|
||||||
|
|
||||||
|
const client = await login(buildThumbFetch(fixMock));
|
||||||
|
const lib = await openLib(client);
|
||||||
|
|
||||||
|
const results = await fixMissingThumbnails(lib, client, [101]);
|
||||||
|
lib.close();
|
||||||
|
|
||||||
|
expect(results[0]!.status).toBe("fixed");
|
||||||
|
const upload = fixMock.uploadedThumbnails[0]!;
|
||||||
|
expect(upload.ciphertext.length).toBeLessThanOrEqual(recordedSize);
|
||||||
|
const decrypted = decryptBlob(
|
||||||
|
upload.ciphertext,
|
||||||
|
fromBase64(upload.decryptionHeader),
|
||||||
|
fixMock.fileKeys[101]!,
|
||||||
|
);
|
||||||
|
expect(decrypted[0]).toBe(0xff);
|
||||||
|
expect(decrypted[1]).toBe(0xd8);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("Client.getApiClient", () => {
|
describe("Client.getApiClient", () => {
|
||||||
|
|||||||
@@ -1069,6 +1069,11 @@ fastq@^1.6.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
reusify "^1.0.4"
|
reusify "^1.0.4"
|
||||||
|
|
||||||
|
fflate@0.8.3:
|
||||||
|
version "0.8.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/fflate/-/fflate-0.8.3.tgz#bc27d8eb30343d4d512abb03480202ce65d825fc"
|
||||||
|
integrity sha512-tbZNuJrLwGUp3zshBtdy4W+ORxZuIh8a5ilyIEQDC5rY1f3U20JMry0Ll3WBzU58EZKsEuJFXhb5gwv8CsPvgA==
|
||||||
|
|
||||||
file-entry-cache@^8.0.0:
|
file-entry-cache@^8.0.0:
|
||||||
version "8.0.0"
|
version "8.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz#7787bddcf1131bffb92636c69457bbc0edd6d81f"
|
resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz#7787bddcf1131bffb92636c69457bbc0edd6d81f"
|
||||||
|
|||||||
Reference in New Issue
Block a user