-
-
Notifications
You must be signed in to change notification settings - Fork 639
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add language detector middleware and helpers #3787
base: main
Are you sure you want to change the base?
Conversation
if this got accepted am willing to add docs in the official website to let people know how to use it |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3787 +/- ##
==========================================
- Coverage 91.71% 91.60% -0.12%
==========================================
Files 160 162 +2
Lines 10181 10367 +186
Branches 2896 2985 +89
==========================================
+ Hits 9338 9497 +159
- Misses 842 869 +27
Partials 1 1 ☔ View full report in Codecov by Sentry. |
i forgot to mention the full use of the middleware options are: app.use(
'*',
languageDetector({
// Detection strategies and their order
order: ['path', 'querystring', 'cookie', 'header'],
// Supported languages and fallback
supportedLanguages: ['en', 'ar'],
fallbackLanguage: 'en',
// Query parameter settings
lookupQuerystring: 'lang', // ?lang=en
// Path settings
lookupFromPathIndex: 0, // /en/about -> takes 'en'
// Cookie settings
lookupCookie: 'user-language',
caches: false, // Set to false to disable caching
// Header settings
lookupFromHeaderKey: 'accept-language',
// Language code handling
ignoreCase: true,
convertDetectedLanguage: (lang: string) => {
// Optional: Convert language codes
// e.g., 'en-US' -> 'en'
return lang?.split('-')[0]?.toLowerCase() ?? '';
},
// Debugging
debug: process.env.NODE_ENV !== 'production',
}),
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I love it! This entirely solves the lang detection for me. Would also be cool to have a way to disable cookie/query detection altogether, or could this be done with order
param?
|
||
const DEFAULT_OPTIONS: DetectorOptions = { | ||
order: ['querystring', 'cookie', 'header'], | ||
lookupQuerystring: 'lang', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lookupQuerystring: 'lang', | |
lookupQueryString: 'lang', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I love it! This entirely solves the lang detection for me. Would also be cool to have a way to disable cookie/query detection altogether, or could this be done with
order
param?
yep just provide the order: ['header'] and it will only detect the header
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you apply the suggestion by @askorupskyy?
Thanks @lord007tn I'll review this later. Hey @sor4chi What do you think of this feature? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the wonderful PR, I liked it. I have one suggestion, what do you think?
Also, I feel a bit of discomfort with the naming hono/language
. Personally, I would prefer something like hono/language-detector
, but I’ll leave it to @yusukebe.
* @param header Accept-Language header string | ||
* @returns Array of parsed languages with quality scores | ||
*/ | ||
export function parseAcceptLanguage(header: string): Array<{ lang: string; q: number }> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel that this function overlaps in functionality with parseAccept. As an experiment, when I tried the following:
export function parseAcceptLanguage(header: string): Array<{ lang: string; q: number }> {
return parseAccept(header)
.map(({ type, q }) => ({ lang: type, q }))
.sort((a, b) => b.q - a.q)
}
I was able to pass the tests (though I may have overlooked edge cases). In this case, how about implementing a common parser in the utils and having both helper/accept
and middleware/language
reference it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I also think the below @sor4chi 's idea is good.
how about implementing a common parser in the utils and having both
helper/accept
andmiddleware/language
reference it?
@lord007tn What do you think of this?
Hi @lord007tn Sorry for my super late response! Let's prepare to ship this middleware in the next minor version, I also have concerns regarding the name and whether it should be import { languageDetector } from 'hono/language' |
Can you apply the following diff to unify the coding style (using diff --git a/src/middleware/language/language.ts b/src/middleware/language/language.ts
index c298d3e9..e21f5a07 100644
--- a/src/middleware/language/language.ts
+++ b/src/middleware/language/language.ts
@@ -70,7 +70,7 @@ const DEFAULT_OPTIONS: DetectorOptions = {
* @param header Accept-Language header string
* @returns Array of parsed languages with quality scores
*/
-export function parseAcceptLanguage(header: string): Array<{ lang: string; q: number }> {
+export const parseAcceptLanguage = (header: string): Array<{ lang: string; q: number }> => {
try {
return header
.split(',')
@@ -97,10 +97,10 @@ export function parseAcceptLanguage(header: string): Array<{ lang: string; q: nu
* @param options Detector options
* @returns Normalized language code or undefined
*/
-export function normalizeLanguage(
+export const normalizeLanguage = (
lang: string | null | undefined,
options: DetectorOptions
-): string | undefined {
+): string | undefined => {
if (!lang) {
return undefined
}
@@ -126,7 +126,7 @@ export function normalizeLanguage(
/**
* Detects language from query parameter
*/
-export function detectFromQuery(c: Context, options: DetectorOptions): string | undefined {
+export const detectFromQuery = (c: Context, options: DetectorOptions): string | undefined => {
try {
const query = c.req.query(options.lookupQuerystring)
return normalizeLanguage(query, options)
@@ -138,7 +138,7 @@ export function detectFromQuery(c: Context, options: DetectorOptions): string |
/**
* Detects language from cookie
*/
-export function detectFromCookie(c: Context, options: DetectorOptions): string | undefined {
+export const detectFromCookie = (c: Context, options: DetectorOptions): string | undefined => {
try {
const cookie = getCookie(c, options.lookupCookie)
return normalizeLanguage(cookie, options)
@@ -238,7 +238,7 @@ function cacheLanguage(c: Context, language: string, options: DetectorOptions):
/**
* Detect language from request
*/
-function detectLanguage(c: Context, options: DetectorOptions): string {
+const detectLanguage = (c: Context, options: DetectorOptions): string => {
let detectedLang: string | undefined
for (const detectorName of options.order) {
@@ -277,7 +277,7 @@ function detectLanguage(c: Context, options: DetectorOptions): string {
* @param userOptions Configuration options for the language detector
* @returns Hono middleware function
*/
-export function languageDetector(userOptions: Partial<DetectorOptions> = {}): MiddlewareHandler {
+export const languageDetector = (userOptions: Partial<DetectorOptions>): MiddlewareHandler => {
const options: DetectorOptions = {
...DEFAULT_OPTIONS,
...userOptions,
@@ -289,7 +289,7 @@ export function languageDetector(userOptions: Partial<DetectorOptions> = {}): Mi
validateOptions(options)
- return async function languageDetectorMiddleware(c, next) {
+ return async function languageDetector(c, next) {
try {
const lang = detectLanguage(c, options)
c.set('language', lang) |
Closes #3785
Description
Add language detector middleware to support future i18n functionality in Hono applications.
Features
c.get('language')
Usage