`rel="next"` from the legacy `/query` aliases points at `/api/query`, silently moving clients off the path they requested
Nessuno ha ancora preso questa issue.
Valutazione
- Difficoltà
- 4/5
- Tempo stimato
- 3-5 giorni
- Idoneità per principianti
- 50/100
- Tipo di issue
- Bug
- Chiarezza
- Abbastanza chiara
- Stato di attività
- Attiva
- Stack tecnologico
- javascript
Direzione di ricerca
Start with routes/compatability.js, controllers/utils.js, and routes/tests/query.test.js, then inspect how req.originalUrl differs from req.baseUrl + req.path for the three aliases. Confirm the chosen link behavior with a POST test, update public/API.html, and ensure the decision is explicit and covered by the test.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Descrizione
Summary
/v1/api/getByProperties, /v1/api/query.action, and /v1/api/getByProperties.action are URL rewrites onto /v1/api/query (routes/compatability.js:8-10). Now that #312 gives /query a rel="next" Link, a response to any of those aliases carries a next link naming /v1/api/query rather than the path the client actually requested. A client that walks its pages leaves the legacy path after page 1 and is never told.
Verified on production 2026-09-24, read-only:
POST /v1/api/getByProperties?limit=1 {"type":"Annotation"}
POST /v1/api/query.action?limit=1 {"type":"Annotation"}
POST /v1/api/getByProperties.action?limit=1 {"type":"Annotation"}
-> 200, all three:
Link: <https://store.rerum.io/v1/api/query?limit=1&skip=1>; rel="next"
Why this matters
setNextPageLink() builds the path from req.baseUrl + req.path (controllers/utils.js:155). express-urlrewrite replaces req.url before the router matches, so by the time the /query controller runs those two describe the rewritten route. req.originalUrl is untouched and still holds what the client sent, so the alias is recoverable either way.
Pointing at the canonical path is a defensible thing for rel="next" to do. The problem is that it is currently a side effect of how the rewrite works rather than a decision we made, and it happens silently:
- Nothing in the response says the path changed. There is no
Content-Location, so a client cannot know page 2 lives elsewhere without diffing URLs it did not construct. - The aliases exist because old clients still call them. Those are the clients least likely to survive being handed a path their stack was never set up for — fixed base paths, proxy rules, allowlists.
- Page 1 and page 2 of one walk arrive from two different endpoints, so anything that caches, logs, or rate limits per path sees one walk as two.
Scope is narrow: only paged endpoints are affected, which is /query through its three aliases. The /batch_create -> /bulkCreate rewrite does not page.
Neither the behavior nor the aliases are covered anywhere. routes/__tests__/query.test.js never exercises a rewritten path — __tests__/core_provider_contract.test.js:14 only asserts that compatability.js is mounted — and public/API.html does not mention getByProperties at all.
Proposed change
Decide which of these we mean, then make it explicit in code and in public/API.html.
-
Keep the canonical link and announce it. Serve
Content-Location: /v1/api/queryon responses that arrived through a rewrite, so the move from alias to canonical path is stated rather than inferred. One header, and the current behavior stops being accidental. -
Keep the client on the path it asked for. Build the link from the pathname of
req.originalUrlinstead ofreq.baseUrl + req.path. For every non-rewritten route the two are identical, so nothing else changes. This keeps a legacy walk entirely on the legacy path, at the cost of advertising a deprecated URL in a header we control.
Recommend option 1. The canonical path is the better destination, and the only real complaint is that we currently arrive there without saying so.
Either way, add a case to routes/__tests__/query.test.js that POSTs to /v1/api/getByProperties and asserts the rel="next" path, so the choice cannot drift, and give the aliases a line in public/API.html noting that they are rewrites onto /query and what their next links point at.
- Lingua principale
- JavaScript
- Stelle
- 3
- Fork
- 6
- Merge medio
- 4g 9h
- PR unite (30g)
- 5
Preparare l'ambiente
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Altre issue di CenterForDigitalHumanities/rerum_server_nodejs
-
bug documentation
Difficoltà 2/5 1-3 ore Idoneità per principianti 88/100
-
backend dependencies easy
Difficoltà 2/5 1-3 ore Idoneità per principianti 84/100
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 82/100
CenterForDigitalHumanities/rerum_server_nodejs#290 · 1 commento ·
-
Difficoltà 3/5 1-2 giorni Idoneità per principianti 74/100
-
Code Cleanup EpicAperta
Difficoltà 4/5 3-5 giorni Idoneità per principianti 35/100
Tutte le issue di CenterForDigitalHumanities/rerum_server_nodejs
Issue simili
-
curriculum documentation quality
Difficoltà 2/5 1-3 ore Idoneità per principianti 78/100
githubnext/gh-aw-workshop#3897 ·
I maintainer di solito rispondono entro 2 giorni
-
agent/quality hive/hosted-available-lke648397-260827-5n31 quality testing
Difficoltà 2/5 1-3 ore Idoneità per principianti 91/100
I maintainer di solito rispondono entro 1 giorno
-
Add: RSV Honduras FeedApertacheck:failed feeds:add
Difficoltà 2/5 1-3 ore Idoneità per principianti 70/100
iptv-org/database#36179 · 1 commento ·
I maintainer di solito rispondono entro 1 giorno
-
bug
Difficoltà 2/5 1-3 ore Idoneità per principianti 88/100
I maintainer di solito rispondono entro 1 giorno
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 84/100
I maintainer di solito rispondono entro 1 giorno