Skip to content

fix(auth): map ObjectQL ValidationError to 4xx on better-auth paths (#3398)#3399

Merged
baozhoutao merged 2 commits into
mainfrom
claude/priceless-jemison-d75c16
Jul 22, 2026
Merged

fix(auth): map ObjectQL ValidationError to 4xx on better-auth paths (#3398)#3399
baozhoutao merged 2 commits into
mainfrom
claude/priceless-jemison-d75c16

Conversation

@baozhoutao

Copy link
Copy Markdown
Contributor

What

On the better-auth endpoints, a field-level validation failure raised by the ObjectQL record-validator surfaced to the HTTP client as a raw 500 with an empty body, instead of a clean 4xx carrying the validation message.

Repro: sign in, then POST /api/v1/auth/update-user with {"image":"notaurl"}500 empty body (should be ~400 with "image must be a valid URL").

Fixes #3398.

Why

The better-auth update-user endpoint writes through the objectql-adapter into the ObjectQL engine. When the engine's record-validator (packages/objectql/src/validation/record-validator.ts) throws a ValidationError, better-auth does not map it — better-auth only turns its own APIErrors into structured responses, and any other error thrown from an adapter method propagates to better-call's router as an unhandled fault → 500 {}.

The REST data layer already handles this via mapDataError / sendError (packages/rest/src/rest-server.ts), translating an ObjectQL ValidationError into 400 { code: 'VALIDATION_FAILED', fields }. The better-auth path had no equivalent.

How

packages/plugins/plugin-auth/src/objectql-adapter.ts:

  • isObjectQLValidationError — duck-typed by code === 'VALIDATION_FAILED' / name === 'ValidationError', so plugin-auth keeps no hard dependency on @objectstack/objectql and cross-realm instanceof can't bite.
  • rethrowAsBetterAuthError — on a hit, lazily imports better-auth/api's APIError and re-throws APIError('BAD_REQUEST', { message, code: 'VALIDATION_FAILED', fields }) (→ HTTP 400 with the human message + per-field detail); every other error is re-thrown verbatim.
  • withValidationErrorMapping — wraps each function-valued adapter method in a try/catch; non-function props pass through. Applied to the production createObjectQLAdapterFactory adapter.

Net effect: update-user (and any other better-auth write) now returns 400 { code: 'VALIDATION_FAILED', message, fields } instead of a 500 empty body.

Test

packages/plugins/plugin-auth/src/objectql-adapter.test.ts — a new suite (4 cases), including an end-to-end case through the production createObjectQLAdapterFactory: a real engine that rejects an invalid image on update → asserts the caught error is better-auth's real APIError, statusCode === 400, body carries VALIDATION_FAILED. Also covers: non-validation errors re-thrown verbatim, and success / non-function props passing through untouched.

vitest run src/objectql-adapter.test.ts37 passed. Changed files are clean under tsc --noEmit (the one pre-existing secondary-storage.ts error is unrelated).

Notes

Noticed while fixing the avatar-upload 500 (data: URIs rejected by the url validator — fixed separately on claude/user-avatar-upload-error-d4c8e5). This PR is the generic mapping gap, independent of that specific validator case.

🤖 Generated with Claude Code

@vercel

vercel Bot commented Jul 22, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
spec Ready Ready Preview, Comment Jul 22, 2026 1:17am

Request Review

@github-actions github-actions Bot added size/m documentation Improvements or additions to documentation tests tooling labels Jul 22, 2026
@github-actions

Copy link
Copy Markdown
Contributor

📓 Docs Drift Check

This PR changes 1 package(s): @objectstack/plugin-auth.

9 hand-written doc(s) reference the affected code and may need an implementation-accuracy re-verification:

  • content/docs/deployment/production-readiness.mdx (via @objectstack/plugin-auth)
  • content/docs/getting-started/cli.mdx (via @objectstack/plugin-auth)
  • content/docs/kernel/services-checklist.mdx (via @objectstack/plugin-auth)
  • content/docs/permissions/authentication.mdx (via @objectstack/plugin-auth)
  • content/docs/permissions/sso.mdx (via @objectstack/plugin-auth)
  • content/docs/plugins/index.mdx (via @objectstack/plugin-auth)
  • content/docs/plugins/packages.mdx (via @objectstack/plugin-auth)
  • content/docs/releases/implementation-status.mdx (via @objectstack/plugin-auth)
  • content/docs/releases/v9.mdx (via @objectstack/plugin-auth)

Advisory only. To re-verify, run the docs-accuracy-audit workflow scoped to these files:
node scripts/docs-audit/affected-docs.mjs origin/main → pass the list as args.docs.

@baozhoutao
baozhoutao merged commit d0fea33 into main Jul 22, 2026
16 checks passed
@baozhoutao
baozhoutao deleted the claude/priceless-jemison-d75c16 branch July 22, 2026 01:40
baozhoutao and others added 2 commits July 21, 2026 21:09
…3398)

better-auth only maps its own APIErrors to structured HTTP responses; a
ValidationError thrown from the objectql-adapter (e.g. an invalid `image`
on update-user) propagated to better-call's router as an unhandled fault
and surfaced as a raw 500 with an empty body.

Add the auth-path analogue of the REST layer's mapDataError: detect the
ObjectQL validation envelope at the adapter boundary (duck-typed by
code/name, so no hard dependency on @objectstack/objectql and no
cross-realm instanceof) and re-throw it as APIError('BAD_REQUEST', …) so
update-user & friends answer with a 400 carrying the human message plus
per-field detail. Applied via withValidationErrorMapping over the
production adapter factory.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
os-zhuang pushed a commit that referenced this pull request Jul 22, 2026
The record-validator's url-type check required an absolute `scheme://`
URL, so it rejected the root-relative value the platform's own storage
service returns for an uploaded file. The console avatar uploader PUTs the
image to storage and then writes `sys_user.image` (a Field.url) =
`/api/v1/storage/files/<id>`; that failed `invalid_url` and, on the
better-auth `update-user` path, broke the avatar-upload profile save.

`URL_RE` now also accepts root-/protocol-relative refs (`/path`,
`//host/path`) and the `data:` / `blob:` inline forms, in addition to
`scheme://…`. A bare scheme-less string (e.g. "notaurl") is still rejected.

Verified end-to-end in the running Console: avatar upload → display →
replace → remove all succeed. Complements #3399 (which maps the validation
error to a clean 4xx); this makes the legitimate relative URL pass.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

documentation Improvements or additions to documentation size/m tests tooling

Projects

None yet

Development

Successfully merging this pull request may close these issues.

better-auth update-user validation failure returns raw 500 empty body (should be a 4xx)

1 participant