Refactor language URL routing to use explicit @lang special route tokens instead of positional segment detection
Nessuno ha ancora preso questa issue.
Valutazione
- Difficoltà
- 5/5
- Tempo stimato
- Più di una settimana
- Idoneità per principianti
- 45/100
Direzione di ricerca
Inizia leggendo src/Router/PatternCompiler.php, src/Router/MatchedRoute.php, src/Http/Traits/Request/Route.php e src/Lang/Factories/LangFactory.php, quindi esamina i test di routing esistenti. Traccia il funzionamento attuale dei token di route e della risoluzione della lingua. Il lavoro è completato quando le route @lang corrispondono alle lingue supportate, mantengono la lingua come contesto della route invece che come parametro ordinario e sono disponibili test corrispondenti, oltre a template o esempi aggiornati quando necessario.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Descrizione
Summary
Refactor Quantum language URL routing so routes can explicitly declare language segments using the special route token:
@lang
instead of relying on positional URL segment detection through config such as lang.url_segment.
Why
Current language URL handling is implicit and positional.
Today, language detection relies on config-driven segment index logic, for example:
lang.url_segment
and the framework then tries to detect the language by reading a configured request segment position, with additional prefix-aware adjustment logic.
That works, but it has several weaknesses:
- route structure does not explicitly show where language lives
- language handling depends on URL segment position math
- routes are harder to reason about when combined with prefixes or other special segments
- the model does not align with the new special route token direction
With special route token support in place, language routing should become explicit in the route pattern itself.
Goal
Allow routes to explicitly declare the language segment using:
@lang
so the router can treat language as a framework-owned route context rather than a positional URL convention.
Proposed Direction
Routes that are language-aware should explicitly include:
@lang
Examples:
$route->get('@lang/posts', 'PostController', 'posts');
$route->get('@lang/post/[uuid=:any]', 'PostController', 'post');
This should allow URLs such as:
/en/posts/es/posts
or, when module prefix is present:
/web/en/posts/api/en/posts
depending on module prefix configuration.
Config Direction
Language config should continue to define language behavior such as:
- whether language is enabled
- supported languages
- default language
But routed language placement should no longer depend on positional config like:
lang.url_segment
The route itself should explicitly declare where language lives.
Important behavior
The resolved language should be:
- matched through the
@langtoken - validated against configured supported languages
- made available to framework internals as language route context
- kept distinct from ordinary controller action parameters by default
Migration Direction
This feature should replace routed language URL detection based on positional segment config for routes that adopt @lang.
Backward compatibility strategy can be decided during implementation, but the intended direction is for explicit routed language segments to become the preferred and cleaner model.
Acceptance Criteria
- routes can explicitly declare language position using
@lang - matched
@langvalues are validated against configured supported languages - language route context is resolved through
@langrather than positional URL segment detection for token-based routes - routed language values do not become ordinary positional controller action parameters by default
- tests cover
@langroute matching and language resolution behavior - templates and examples can be updated to use
@langwhere appropriate
Notes
Relevant code:
src/Lang/Factories/LangFactory.phpsrc/Router/PatternCompiler.phpsrc/Router/MatchedRoute.phpsrc/Http/Traits/Request/Route.php- module route templates currently using language-prefixed route patterns
This ticket depends on:
- Lingua principale
- PHP
- Stelle
- 36
- Fork
- 22
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Guida per i contributori
Apri la guida per i contributori
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 quantum-php/framework
-
routing testing
Difficoltà 2/5 1-3 ore Idoneità per principianti 76/100
quantum-php/framework#547 ·
-
view
Difficoltà 1/5 Meno di un'ora Idoneità per principianti 75/100
quantum-php/framework#542 ·
-
enhancement http
Difficoltà 5/5 Più di una settimana Idoneità per principianti 35/100
quantum-php/framework#565 · 1 commento ·
-
components view
Difficoltà 5/5 Più di una settimana Idoneità per principianti 42/100
quantum-php/framework#551 ·
-
Add explicit @version special route token support for API major versioning within a single module Apertarouting
Difficoltà 5/5 Più di una settimana Idoneità per principianti 45/100
quantum-php/framework#550 ·
Tutte le issue di quantum-php/framework
Issue simili
-
Bug
Difficoltà 2/5 1-3 ore Idoneità per principianti 70/100
Automattic/safe-publish#594 ·
-
needs-triage Platform(Default)
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
-
HttpClient
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
symfony/symfony-docs#23092 ·
-
sync-en
Difficoltà 1/5 Meno di un'ora Idoneità per principianti 90/100
-
sync-en
Difficoltà 1/5 Meno di un'ora Idoneità per principianti 95/100